Home
last modified time | relevance | path

Searched refs:memorySize (Results 1 – 5 of 5) sorted by relevance

/NW4C-2.0.3/include/nw/os/
Dos_Memory.h223 const size_t memorySize = sizeof(TObject); in AllocateAndFill() local
224 u8* memory = static_cast<u8*>(allocator->Alloc(memorySize)); in AllocateAndFill()
227 std::fill_n(NW_CHECKED_ARRAY_ITERATOR(memory, memorySize), memorySize, value); in AllocateAndFill()
/NW4C-2.0.3/sources/libraries/dev/
Ddev_Screenshot.cpp119 int memorySize in Create() argument
129 screenshots.push_back(Screenshot::Create(allocator, memorySize)); in Create()
/NW4C-2.0.3/demos/gfx/FastCreateDemo/sources/
DFastCreateDemo.cpp311 size_t memorySize = s_SizeOfLattice * LATTICE_COUNT; in BuildLattices() local
312 void* memory = s_DeviceAllocator.Alloc(memorySize); in BuildLattices()
313 s_FrameHeapAllocator.Initialize(reinterpret_cast<uptr>(memory), memorySize); in BuildLattices()
/NW4C-2.0.3/include/nw/dev/
Ddev_Screenshot.h185 int memorySize
/NW4C-2.0.3/sources/libraries/gfx/
Dgfx_ParticleSet.cpp408 int memorySize = sizeof(ParticleSet); in Create() local
409 memorySize = ut::RoundUp(memorySize, 4); in Create()
410 memorySize += sizeof(Initializer) * initializerCapacity; in Create()
411 memorySize = ut::RoundUp(memorySize, 4); in Create()
412 memorySize += sizeof(Updater) * updaterCapacity; in Create()
414 u8* memory = reinterpret_cast<u8*>(mainAllocator->Alloc(memorySize)); in Create()