Lines Matching refs:u8
51 virtual void* Alloc(size_t size, u8 alignment) = 0;
70 void* AllocAndClear(size_t size, u8 data, u8 alignment = DEFAULT_ALIGNMENT)
72 u8* memory = static_cast<u8*>(this->Alloc(size, alignment));
83 TObject* Alloc(size_t size, u8 alignment = DEFAULT_ALIGNMENT)
90 TObject* AllocAndClear(size_t size, u8 data, u8 alignment = DEFAULT_ALIGNMENT)
92 u8* memory = static_cast<u8*>(this->Alloc(sizeof(TObject) * size, alignment));
104 TObject* AllocAndConstruct(size_t size, u8 alignment = DEFAULT_ALIGNMENT)
121 TObject* AllocAndFill(size_t size, const TObject& object, u8 alignment = DEFAULT_ALIGNMENT)
180 AllocateAndFill(os::IAllocator* allocator, u8 value) in AllocateAndFill()
184 u8* memory = static_cast<u8*>(allocator->Alloc(memorySize)); in AllocateAndFill()
205 AllocateAndFillN(os::IAllocator* allocator, size_t size, u8 value) in AllocateAndFillN()
209 u8* memory = static_cast<u8*>(allocator->Alloc(size)); in AllocateAndFillN()