Lines Matching refs:pL
90 uint16* pL = ( uint16* )ptrA->memPtrE; in bbs_DynMemManager_allocatedSize() local
91 while( pL != NULL ) in bbs_DynMemManager_allocatedSize()
93 sizeL += ( ( uint32* )pL )[ 2 ]; in bbs_DynMemManager_allocatedSize()
94 pL = *( uint16** )pL; in bbs_DynMemManager_allocatedSize()
130 uint16* pL = NULL; in bbs_DynMemManager_alloc() local
143 pL = ptrA->memPtrE; in bbs_DynMemManager_alloc()
150 pL = *ppL; in bbs_DynMemManager_alloc()
153 if( pL == NULL ) in bbs_DynMemManager_alloc()
159 ( ( uint32* )pL )[ 0 ] = 0; in bbs_DynMemManager_alloc()
160 ( ( uint32* )pL )[ 1 ] = 0; in bbs_DynMemManager_alloc()
161 ( ( uint32* )pL )[ 2 ] = sizeA + bbs_MEM_OFFSET; in bbs_DynMemManager_alloc()
163 return pL + bbs_MEM_OFFSET; in bbs_DynMemManager_alloc()
188 uint16* pL = ( uint16* )ptrA->memPtrE; in bbs_DynMemManager_free() local
190 while( pL != NULL ) in bbs_DynMemManager_free()
192 if( pL + bbs_MEM_OFFSET == memPtrA ) break; in bbs_DynMemManager_free()
193 p0L = pL; in bbs_DynMemManager_free()
194 pL = *( uint16** )pL; in bbs_DynMemManager_free()
197 if( pL != NULL ) in bbs_DynMemManager_free()
207 *( uint16** )p0L = *( uint16** )pL; in bbs_DynMemManager_free()
211 ptrA->memPtrE = *( uint16** )pL; in bbs_DynMemManager_free()
214 ptrA->freeFPtrE( pL ); in bbs_DynMemManager_free()
233 uint16* pL = ( uint16* )ptrA->memPtrE; in bbs_DynMemManager_nextBlock() local
239 while( pL != NULL ) in bbs_DynMemManager_nextBlock()
241 if( pL + bbs_MEM_OFFSET == curBlockPtrA ) break; in bbs_DynMemManager_nextBlock()
242 pL = *( uint16** )pL; in bbs_DynMemManager_nextBlock()
245 if( pL == NULL ) in bbs_DynMemManager_nextBlock()
253 pL = *( uint16** )pL; in bbs_DynMemManager_nextBlock()
257 while( pL != NULL ) in bbs_DynMemManager_nextBlock()
259 if( ( ( uint32* )pL )[ 2 ] >= minSizeA + bbs_MEM_OFFSET ) break; in bbs_DynMemManager_nextBlock()
260 pL = *( uint16** )pL; in bbs_DynMemManager_nextBlock()
263 if( pL == NULL ) in bbs_DynMemManager_nextBlock()
280 *actualSizePtrA = ( ( uint32* )pL )[ 2 ] - bbs_MEM_OFFSET; in bbs_DynMemManager_nextBlock()
281 return pL + bbs_MEM_OFFSET; in bbs_DynMemManager_nextBlock()