Home
last modified time | relevance | path

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

/Kernel-v10.6.2/portable/MemMang/
HDheap_5.c145 static BlockLink_t * pxEnd = NULL; variable
166 configASSERT( pxEnd ); in pvPortMalloc()
230 if( pxBlock != pxEnd ) in pvPortMalloc()
432 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
440 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
474 configASSERT( pxEnd == NULL ); in vPortDefineHeapRegions()
508 configASSERT( pxEnd != NULL ); in vPortDefineHeapRegions()
511 configASSERT( xAddress > ( size_t ) pxEnd ); in vPortDefineHeapRegions()
516 pxPreviousFreeBlock = pxEnd; in vPortDefineHeapRegions()
523 pxEnd = ( BlockLink_t * ) xAddress; in vPortDefineHeapRegions()
[all …]
HDheap_4.c127 PRIVILEGED_DATA static BlockLink_t * pxEnd = NULL; variable
150 if( pxEnd == NULL ) in pvPortMalloc()
219 if( pxBlock != pxEnd ) in pvPortMalloc()
426 pxEnd = ( BlockLink_t * ) uxAddress; in prvHeapInit()
427 pxEnd->xBlockSize = 0; in prvHeapInit()
428 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
434 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
474 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
482 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
518 while( pxBlock != pxEnd ) in vPortGetHeapStats()
/Kernel-v10.6.2/portable/GCC/ARM_CM85/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/GCC/ARM_CM23/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/IAR/ARM_CM55/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/IAR/ARM_CM85/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/GCC/ARM_CM55/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/GCC/ARM_CM33/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/IAR/ARM_CM35P/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/IAR/ARM_CM23/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/ARMv8M/secure/heap/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/GCC/ARM_CM35P/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()
/Kernel-v10.6.2/portable/IAR/ARM_CM33/secure/
HDsecure_heap.c117 static BlockLink_t * pxEnd = NULL; variable
165 pxEnd = ( void * ) uxAddress; in prvHeapInit()
166 pxEnd->xBlockSize = 0; in prvHeapInit()
167 pxEnd->pxNextFreeBlock = NULL; in prvHeapInit()
173 pxFirstFreeBlock->pxNextFreeBlock = pxEnd; in prvHeapInit()
216 if( pxIterator->pxNextFreeBlock != pxEnd ) in prvInsertBlockIntoFreeList()
224 pxBlockToInsert->pxNextFreeBlock = pxEnd; in prvInsertBlockIntoFreeList()
256 if( pxEnd == NULL ) in pvPortMalloc()
310 if( pxBlock != pxEnd ) in pvPortMalloc()