Searched refs:allocSize (Results 1 – 5 of 5) sorted by relevance
47 size_t allocSize; member76 preamble->allocSize = size; in debugAlloc()99 if (preamble->allocSize > kMaxAllocSize) { in debugFree()100 FATAL_ERROR("Invalid allocation size %zu", preamble->allocSize); in debugFree()105 uint8_t *trailer = static_cast<uint8_t *>(pointer) + preamble->allocSize; in debugFree()
73 size_t allocSize = in OI_CODEC_SBC_Alloc() local76 OI_ASSERT(codecDataBytes >= allocSize); in OI_CODEC_SBC_Alloc()77 codecData += allocSize; in OI_CODEC_SBC_Alloc()78 codecDataBytes -= allocSize; in OI_CODEC_SBC_Alloc()
76 uint32_t allocSize = 1024 * 1024 * 256; in exhaustHeap() local79 void *ptr = chreHeapAlloc(allocSize); in exhaustHeap()81 allocSize /= 2; in exhaustHeap()82 if (allocSize < 4) { in exhaustHeap()85 ptr = chreHeapAlloc(allocSize); in exhaustHeap()
23 ChunkAllocatorBase::ChunkAllocatorBase(size_t allocSize, size_t slotCount, in ChunkAllocatorBase() argument25 : mAllocSize(allocSize), in ChunkAllocatorBase()
31 ChunkAllocatorBase(size_t allocSize, size_t slotCount, uint8_t *rawMemory);