HomeSort by relevance Sort by last modified time
    Searched defs:allocPtr (Results 1 - 3 of 3) sorted by null

  /hardware/invensense/60xx/mlsdk/platform/linux/
mlos_linux.c 60 void *allocPtr = malloc(numBytes);
61 return allocPtr;
  /external/srec/portable/src/
pmemory_ext.c 179 void *allocPtr = GUARD_ALLOC_PTR(memPtr);
180 unsigned int *requestedSizePtr = GUARD_PTR_FIELD(allocPtr, GUARD_OFF_REQ_SIZE);
181 unsigned int *guardStartPtr = GUARD_PTR_FIELD(allocPtr, GUARD_OFF_START);
182 unsigned int *guardEndPtr = GUARD_PTR_FIELD(allocPtr, GUARD_OFF_END(GUARD_ALLOC_SIZE(*requestedSizePtr)));
315 void *allocPtr = GUARD_ALLOC_PTR(objectPtr);
316 unsigned int *requestedSizePtr = GUARD_PTR_FIELD(allocPtr, GUARD_OFF_REQ_SIZE);
317 unsigned int *guardStartPtr = GUARD_PTR_FIELD(allocPtr, GUARD_OFF_START);
318 unsigned int *guardEndPtr = GUARD_PTR_FIELD(allocPtr, GUARD_OFF_END(GUARD_ALLOC_SIZE(*requestedSizePtr)));
322 REMOVE_FROM_ALLOC_LIST(allocPtr);
323 objectPtr = allocPtr;
    [all...]
  /dalvik/vm/alloc/
Copying.cpp 209 u1 *allocPtr;
487 heapSource->allocPtr = allocateBlocks(heapSource, 1);
488 heapSource->allocLimit = heapSource->allocPtr + BLOCK_SIZE;
591 assert(heapSource->allocPtr != NULL);
595 available = heapSource->allocLimit - heapSource->allocPtr;
599 addr = heapSource->allocPtr;
600 heapSource->allocPtr += aligned;
611 heapSource->allocPtr = addr + aligned;
774 heapSource->allocPtr = NULL;
    [all...]

Completed in 1782 milliseconds