Home
last modified time | relevance | path

Searched refs:pAllocator (Results 1 – 21 of 21) sorted by relevance

/NW4C-2.0.3/include/nw/snd/
Dsnd_SoundArchiveLoader.h136 SoundMemoryAllocatable* pAllocator,
169 SoundMemoryAllocatable* pAllocator,
228 SoundMemoryAllocatable* pAllocator );
234 SoundMemoryAllocatable* pAllocator );
255 SoundMemoryAllocatable* pAllocator,
260 SoundMemoryAllocatable* pAllocator,
266 SoundMemoryAllocatable* pAllocator,
271 SoundMemoryAllocatable* pAllocator,
276 SoundMemoryAllocatable* pAllocator,
281 SoundMemoryAllocatable* pAllocator,
[all …]
/NW4C-2.0.3/sources/libraries/snd/
Dsnd_SoundArchiveLoader.cpp141 SoundMemoryAllocatable* pAllocator, in LoadData() argument
156 if ( pAllocator == NULL ) in LoadData()
178 result = LoadSequenceSound( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
181 result = LoadWaveSound( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
190 result = LoadBank( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
193 result = LoadWaveArchive( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
196 result = LoadGroup( itemId, pAllocator, loadBlockSize ); in LoadData()
199 result = LoadSoundGroup( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
218 SoundMemoryAllocatable* pAllocator, in LoadData() argument
225 return LoadData( id, pAllocator, loadFlag, loadBlockSize ); in LoadData()
[all …]
/NW4C-2.0.3/include/nw/ut/
Dut_SharedPtr.h46 static SharedPtrCount* Create( nw::os::IAllocator* pAllocator = NULL )
48 if ( pAllocator )
50 void* buf = pAllocator->Alloc( sizeof(SharedPtrCount) );
51 return new(buf) SharedPtrCount( pAllocator );
145 /* ctor */ SharedPtrCount( nw::os::IAllocator* pAllocator ) in SharedPtrCount() argument
148 m_pAllocator( pAllocator ) in SharedPtrCount()
201 …/* ctor */ explicit SharedPtr(TObj* pObj, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<TL…
204 m_pAllocator( pAllocator ) in m_pObj()
214 m_pCnt = SharedPtrCount<TLockObject>::Create( pAllocator ); in m_pObj()
337 …SharedPtr& Reset(TObj* pObj = NULL, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<…
[all …]
/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_Init.cpp30 nw::os::IAllocator* pAllocator, in Initialize() argument
33 Layout::SetAllocator(pAllocator); in Initialize()
Dlyt_Layout.cpp113 Layout::SetAllocator(nw::os::IAllocator* pAllocator) in SetAllocator() argument
115 s_pAllocator = pAllocator; in SetAllocator()
119 Layout::SetDeviceMemoryAllocator(nw::os::IAllocator* pAllocator) in SetDeviceMemoryAllocator() argument
121 s_pDeviceMemoryAllocator = pAllocator; in SetDeviceMemoryAllocator()
/NW4C-2.0.3/sources/libraries/gfx/
Dgfx_OffScreenBuffer.cpp33 OffScreenBuffer::OffScreenBuffer(os::IAllocator* pAllocator, const Description& description, ResPix… in OffScreenBuffer() argument
34 : IRenderTarget(pAllocator), in OffScreenBuffer()
Dgfx_OnScreenBuffer.cpp33 OnScreenBuffer::OnScreenBuffer(os::IAllocator* pAllocator, const Description& description) in OnScreenBuffer() argument
34 : IRenderTarget(pAllocator), in OnScreenBuffer()
Dgfx_MeshRenderer.cpp79 MeshRenderer::Create(nw::os::IAllocator* pAllocator) in Create() argument
81 NW_NULL_ASSERT(pAllocator); in Create()
85 void* buf = pAllocator->Alloc(size); in Create()
87 return new(buf) MeshRenderer(pAllocator); in Create()
/NW4C-2.0.3/include/nw/lyt/
Dlyt_Init.h52 nw::os::IAllocator* pAllocator,
Dlyt_Layout.h128 static void SetAllocator(nw::os::IAllocator* pAllocator);
144 static void SetDeviceMemoryAllocator(nw::os::IAllocator* pAllocator);
/NW4C-2.0.3/include/nw/gfx/
Dgfx_OnScreenBuffer.h57 OnScreenBuffer(os::IAllocator* pAllocator, const Description& description);
Dgfx_OffScreenBuffer.h61 …OffScreenBuffer(os::IAllocator* pAllocator, const Description& description, ResPixelBasedTexture r…
Dgfx_FrustumProjectionUpdater.h131 os::IAllocator* pAllocator,
Dgfx_MeshRenderer.h64 static MeshRenderer* Create(nw::os::IAllocator* pAllocator);
Dgfx_PerspectiveProjectionUpdater.h133 os::IAllocator* pAllocator,
Dgfx_OrthoProjectionUpdater.h132 os::IAllocator* pAllocator,
Dgfx_LookAtTargetViewUpdater.h135 os::IAllocator* pAllocator,
Dgfx_AimTargetViewUpdater.h135 os::IAllocator* pAllocator,
Dgfx_RotateViewUpdater.h135 os::IAllocator* pAllocator,
Dgfx_RenderContext.h532 nw::os::IAllocator* pAllocator,
/NW4C-2.0.3/demos/Nw4cDemo/sources/
DSmCamera.cpp102 nw::os::IAllocator* pAllocator = m_Allocator; in SmCamera() local
105 = nw::gfx::LookAtTargetViewUpdater::Create(pAllocator); in SmCamera()
114 = nw::gfx::PerspectiveProjectionUpdater::Create(pAllocator); in SmCamera()
129 .Create(pAllocator); in SmCamera()