Lines Matching refs:allocator
31 RotateViewUpdater::Create(os::IAllocator* allocator) in Create() argument
33 NW_NULL_ASSERT(allocator); in Create()
35 void* updaterMemory = allocator->Alloc(sizeof(RotateViewUpdater)); in Create()
39 = AllocateAndFill<ResRotateViewUpdaterData>(allocator, 0); in Create()
51 return new(updaterMemory) RotateViewUpdater(allocator, true, resUpdater); in Create()
56 RotateViewUpdater::Create(os::IAllocator* allocator, ResRotateViewUpdater resUpdater) in Create() argument
58 NW_NULL_ASSERT(allocator); in Create()
60 void* updaterMemory = allocator->Alloc(sizeof(RotateViewUpdater)); in Create()
63 return new(updaterMemory) RotateViewUpdater(allocator, false, resUpdater); in Create()
68 os::IAllocator* allocator, in RotateViewUpdater() argument
72 : CameraViewUpdater(allocator, isDynamic), in RotateViewUpdater()