Lines Matching refs:pxLink
379 BlockLink_t * pxLink; in vPortFree() local
388 pxLink = ( void * ) puc; in vPortFree()
390 heapVALIDATE_BLOCK_POINTER( pxLink ); in vPortFree()
391 configASSERT( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ); in vPortFree()
392 configASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree()
394 if( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ) in vPortFree()
396 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree()
400 heapFREE_BLOCK( pxLink ); in vPortFree()
405 if( heapSUBTRACT_WILL_UNDERFLOW( pxLink->xBlockSize, xHeapStructSize ) == 0 ) in vPortFree()
407 … ( void ) memset( puc + xHeapStructSize, 0, pxLink->xBlockSize - xHeapStructSize ); in vPortFree()
415 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree()
416 traceFREE( pv, pxLink->xBlockSize ); in vPortFree()
417 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()