Lines Matching refs:pxLink
292 BlockLink_t * pxLink; in vPortFree() local
302 pxLink = ( void * ) puc; in vPortFree()
304 configASSERT( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ); in vPortFree()
305 configASSERT( pxLink->pxNextFreeBlock == NULL ); in vPortFree()
307 if( heapBLOCK_IS_ALLOCATED( pxLink ) != 0 ) in vPortFree()
309 if( pxLink->pxNextFreeBlock == NULL ) in vPortFree()
313 heapFREE_BLOCK( pxLink ); in vPortFree()
316 … ( void ) memset( puc + xHeapStructSize, 0, pxLink->xBlockSize - xHeapStructSize ); in vPortFree()
323 prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); in vPortFree()
324 xFreeBytesRemaining += pxLink->xBlockSize; in vPortFree()
325 traceFREE( pv, pxLink->xBlockSize ); in vPortFree()