Lines Matching refs:pxLink
290 BlockLink_t * pxLink; in vPortFree() local
300 pxLink = ( void * ) puc; in vPortFree()
302 configASSERT( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ); in vPortFree()
303 configASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree()
305 if( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ) in vPortFree()
307 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree()
311 heapFREE_BLOCK( pxLink ); in vPortFree()
314 … ( void ) memset( puc + xHeapStructSize, 0, pxLink->xBlockSize - xHeapStructSize ); in vPortFree()
321 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
322 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree()
323 traceFREE( pv, pxLink->xBlockSize ); in vPortFree()