Lines Matching refs:MB
184 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err); in preallocateSlab() local
185 if (!MB.base()) in preallocateSlab()
188 PreallocSlab = MB; in preallocateSlab()
199 sys::MemoryBlock MB((void *)OldSlabOffset, Size); in allocateFromSlab() local
201 FunctionMemory.push_back(MB); in allocateFromSlab()
203 DataMemory.push_back(MB); in allocateFromSlab()
228 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err); in allocateCodeSection() local
229 if (!MB.base()) in allocateCodeSection()
231 FunctionMemory.push_back(MB); in allocateCodeSection()
232 return (uint8_t*)MB.base(); in allocateCodeSection()
248 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err); in allocateDataSection() local
249 if (!MB.base()) in allocateDataSection()
251 DataMemory.push_back(MB); in allocateDataSection()
252 return (uint8_t*)MB.base(); in allocateDataSection()