Lines Matching refs:pxLink
351 BlockLink_t * pxLink; in vPortFree() local
360 pxLink = ( void * ) puc; in vPortFree()
362 heapVALIDATE_BLOCK_POINTER( pxLink ); in vPortFree()
363 configASSERT( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ); in vPortFree()
364 configASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree()
366 if( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ) in vPortFree()
368 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree()
372 heapFREE_BLOCK( pxLink ); in vPortFree()
377 if( heapSUBTRACT_WILL_UNDERFLOW( pxLink->xBlockSize, xHeapStructSize ) == 0 ) in vPortFree()
379 … ( void ) memset( puc + xHeapStructSize, 0, pxLink->xBlockSize - xHeapStructSize ); in vPortFree()
387 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree()
388 traceFREE( pv, pxLink->xBlockSize ); in vPortFree()
389 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()