Home
last modified time | relevance | path

Searched refs:pxLink (Results 1 – 14 of 14) sorted by relevance

/Kernel-v10.6.2/portable/MemMang/
Dheap_2.c266 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 …]
Dheap_4.c310 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 …]
Dheap_5.c319 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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/
Dsecure_heap.c399 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()