Home
last modified time | relevance | path

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

/Kernel-v10.6.2/portable/MemMang/
Dheap_2.c106 static const uint16_t heapSTRUCT_SIZE = ( ( sizeof( BlockLink_t ) + ( portBYTE_ALIGNMENT - 1 ) ) & … variable
107 #define heapMINIMUM_BLOCK_SIZE ( ( size_t ) ( heapSTRUCT_SIZE * 2 ) )
177 …xAdditionalRequiredSize = heapSTRUCT_SIZE + portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMEN… in pvPortMalloc()
213 … pvReturn = ( void * ) ( ( ( uint8_t * ) pxPreviousBlock->pxNextFreeBlock ) + heapSTRUCT_SIZE ); in pvPortMalloc()
272 puc -= heapSTRUCT_SIZE; in vPortFree()
290 … ( void ) memset( puc + heapSTRUCT_SIZE, 0, pxLink->xBlockSize - heapSTRUCT_SIZE ); in vPortFree()