Home
last modified time | relevance | path

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

/system/chre/apps/chqts/src/shared/
Ddumb_allocator.cc27 mRawMemory(rawMemory), in DumbAllocatorBase()
33 memset(mRawMemory, 0xCD, mSlotCount * mAllocSize); in DumbAllocatorBase()
53 return mRawMemory + (slot * mAllocSize); in alloc()
72 if (ptr < mRawMemory) { in getSlot()
76 *slot = static_cast<size_t>(ptr - mRawMemory) / mAllocSize; in getSlot()
82 return ((mRawMemory + (*slot * mAllocSize)) == ptr); in getSlot()
Ddumb_allocator.h46 uint8_t * const mRawMemory; variable