Searched refs:memorySize (Results 1 – 4 of 4) sorted by relevance
183 const size_t memorySize = sizeof(TObject); in AllocateAndFill() local184 u8* memory = static_cast<u8*>(allocator->Alloc(memorySize)); in AllocateAndFill()187 std::fill_n(NW_CHECKED_ARRAY_ITERATOR(memory, memorySize), memorySize, value); in AllocateAndFill()
117 int memorySize in Create() argument127 screenshots.push_back(Screenshot::Create(allocator, memorySize)); in Create()
183 int memorySize
406 int memorySize = sizeof(ParticleSet); in Create() local407 memorySize = ut::RoundUp(memorySize, 4); in Create()408 memorySize += sizeof(Initializer) * initializerCapacity; in Create()409 memorySize = ut::RoundUp(memorySize, 4); in Create()410 memorySize += sizeof(Updater) * updaterCapacity; in Create()412 u8* memory = reinterpret_cast<u8*>(mainAllocator->Alloc(memorySize)); in Create()