Lines Matching refs:allocator
29 RotateViewUpdater::Create(os::IAllocator* allocator) in Create() argument
31 NW_NULL_ASSERT(allocator); in Create()
33 void* updaterMemory = allocator->Alloc(sizeof(RotateViewUpdater)); in Create()
37 = AllocateAndFill<ResRotateViewUpdaterData>(allocator, 0); in Create()
49 return new(updaterMemory) RotateViewUpdater(allocator, true, resUpdater); in Create()
54 RotateViewUpdater::Create(os::IAllocator* allocator, ResRotateViewUpdater resUpdater) in Create() argument
56 NW_NULL_ASSERT(allocator); in Create()
58 void* updaterMemory = allocator->Alloc(sizeof(RotateViewUpdater)); in Create()
61 return new(updaterMemory) RotateViewUpdater(allocator, false, resUpdater); in Create()
66 os::IAllocator* allocator, in RotateViewUpdater() argument
70 : CameraViewUpdater(allocator, isDynamic), in RotateViewUpdater()