/Kernel-v10.6.2/portable/MemMang/ |
D | heap_2.c | 266 BlockLink_t * pxLink; in vPortFree() local 276 pxLink = ( void * ) puc; in vPortFree() 278 configASSERT( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ); in vPortFree() 279 configASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 281 if( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ) in vPortFree() 283 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 287 heapFREE_BLOCK( pxLink ); in vPortFree() 290 … ( void ) memset( puc + heapSTRUCT_SIZE, 0, pxLink->xBlockSize - heapSTRUCT_SIZE ); in vPortFree() 297 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree() 298 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() [all …]
|
D | heap_4.c | 310 BlockLink_t * pxLink; in vPortFree() local 319 pxLink = ( void * ) puc; in vPortFree() 321 configASSERT( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ); in vPortFree() 322 configASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 324 if( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ) in vPortFree() 326 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 330 heapFREE_BLOCK( pxLink ); in vPortFree() 333 … ( void ) memset( puc + xHeapStructSize, 0, pxLink->xBlockSize - xHeapStructSize ); in vPortFree() 340 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 341 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() [all …]
|
D | heap_5.c | 319 BlockLink_t * pxLink; in vPortFree() local 328 pxLink = ( void * ) puc; in vPortFree() 330 configASSERT( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ); in vPortFree() 331 configASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 333 if( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ) in vPortFree() 335 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 339 heapFREE_BLOCK( pxLink ); in vPortFree() 342 … ( void ) memset( puc + xHeapStructSize, 0, pxLink->xBlockSize - xHeapStructSize ); in vPortFree() 349 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 350 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() [all …]
|
/Kernel-v10.6.2/portable/GCC/ARM_CM85/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/GCC/ARM_CM55/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/IAR/ARM_CM55/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/GCC/ARM_CM35P/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/IAR/ARM_CM23/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/IAR/ARM_CM35P/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/IAR/ARM_CM33/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/GCC/ARM_CM33/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/IAR/ARM_CM85/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/GCC/ARM_CM23/secure/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|
/Kernel-v10.6.2/portable/ARMv8M/secure/heap/ |
D | secure_heap.c | 399 BlockLink_t * pxLink; in vPortFree() local 408 pxLink = ( void * ) puc; in vPortFree() 411 secureportASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); in vPortFree() 412 secureportASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree() 414 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) in vPortFree() 416 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree() 420 pxLink->xBlockSize &= ~xBlockAllocatedBit; in vPortFree() 425 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree() 426 traceFREE( pv, pxLink->xBlockSize ); in vPortFree() 427 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
|