Home
last modified time | relevance | path

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

/NW4C-1.2.23/include/nw/snd/
Dsnd_SoundDataManager.h216 SoundMemoryAllocatable* pAllocator,
252 SoundMemoryAllocatable* pAllocator,
314 SoundMemoryAllocatable* pAllocator = NULL,
336 SoundMemoryAllocatable* pAllocator,
342 SoundMemoryAllocatable* pAllocator,
349 SoundMemoryAllocatable* pAllocator,
355 SoundMemoryAllocatable* pAllocator,
361 SoundMemoryAllocatable* pAllocator,
367 SoundMemoryAllocatable* pAllocator,
372 SoundMemoryAllocatable* pAllocator,
[all …]
/NW4C-1.2.23/sources/libraries/snd/
Dsnd_SoundDataManager.cpp172 SoundMemoryAllocatable* pAllocator, in LoadData() argument
181 if ( pAllocator == NULL ) return false; in LoadData()
189 return LoadSequenceSound( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
191 return LoadWaveSound( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
197 return LoadBank( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
199 return LoadWaveArchive( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
201 return LoadGroup( itemId, pAllocator, loadBlockSize ); in LoadData()
203 return LoadSoundGroup( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
212 SoundMemoryAllocatable* pAllocator, in LoadData() argument
219 return LoadData( id, pAllocator, loadFlag, loadBlockSize ); in LoadData()
[all …]
/NW4C-1.2.23/include/nw/ut/
Dut_SharedPtr.h44 static SharedPtrCount* Create( nw::os::IAllocator* pAllocator = NULL )
46 if ( pAllocator )
48 void* buf = pAllocator->Alloc( sizeof(SharedPtrCount) );
49 return new(buf) SharedPtrCount( pAllocator );
143 /* ctor */ SharedPtrCount( nw::os::IAllocator* pAllocator ) in SharedPtrCount() argument
146 m_pAllocator( pAllocator ) in SharedPtrCount()
199 …/* ctor */ explicit SharedPtr(TObj* pObj, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<TL…
202 m_pAllocator( pAllocator ) in m_pObj()
212 m_pCnt = SharedPtrCount<TLockObject>::Create( pAllocator ); in m_pObj()
335 …SharedPtr& Reset(TObj* pObj = NULL, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<…
[all …]
/NW4C-1.2.23/sources/libraries/lyt/
Dlyt_Init.cpp28 nw::os::IAllocator* pAllocator, in Initialize() argument
31 Layout::SetAllocator(pAllocator); in Initialize()
Dlyt_Layout.cpp111 Layout::SetAllocator(nw::os::IAllocator* pAllocator) in SetAllocator() argument
113 s_pAllocator = pAllocator; in SetAllocator()
117 Layout::SetDeviceMemoryAllocator(nw::os::IAllocator* pAllocator) in SetDeviceMemoryAllocator() argument
119 s_pDeviceMemoryAllocator = pAllocator; in SetDeviceMemoryAllocator()
/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_OffScreenBuffer.cpp31 OffScreenBuffer::OffScreenBuffer(os::IAllocator* pAllocator, const Description& description, ResPix… in OffScreenBuffer() argument
32 : IRenderTarget(pAllocator), in OffScreenBuffer()
Dgfx_OnScreenBuffer.cpp31 OnScreenBuffer::OnScreenBuffer(os::IAllocator* pAllocator, const Description& description) in OnScreenBuffer() argument
32 : IRenderTarget(pAllocator), in OnScreenBuffer()
Dgfx_MeshRenderer.cpp84 MeshRenderer::Create(nw::os::IAllocator* pAllocator) in Create() argument
86 NW_NULL_ASSERT(pAllocator); in Create()
90 void* buf = pAllocator->Alloc(size); in Create()
92 return new(buf) MeshRenderer(pAllocator); in Create()
/NW4C-1.2.23/include/nw/lyt/
Dlyt_Init.h50 nw::os::IAllocator* pAllocator,
Dlyt_Layout.h126 static void SetAllocator(nw::os::IAllocator* pAllocator);
142 static void SetDeviceMemoryAllocator(nw::os::IAllocator* pAllocator);
/NW4C-1.2.23/include/nw/gfx/
Dgfx_OffScreenBuffer.h59 …OffScreenBuffer(os::IAllocator* pAllocator, const Description& description, ResPixelBasedTexture r…
Dgfx_OnScreenBuffer.h55 OnScreenBuffer(os::IAllocator* pAllocator, const Description& description);
Dgfx_FrustumProjectionUpdater.h109 os::IAllocator* pAllocator,
Dgfx_OrthoProjectionUpdater.h109 os::IAllocator* pAllocator,
Dgfx_PerspectiveProjectionUpdater.h110 os::IAllocator* pAllocator,
Dgfx_LookAtTargetViewUpdater.h113 os::IAllocator* pAllocator,
Dgfx_AimTargetViewUpdater.h113 os::IAllocator* pAllocator,
Dgfx_RotateViewUpdater.h112 os::IAllocator* pAllocator,
Dgfx_MeshRenderer.h62 static MeshRenderer* Create(nw::os::IAllocator* pAllocator);
Dgfx_RenderContext.h489 nw::os::IAllocator* pAllocator,
/NW4C-1.2.23/demos/Nw4cDemo/sources/
DSmCamera.cpp100 nw::os::IAllocator* pAllocator = m_Allocator; in SmCamera() local
103 = nw::gfx::LookAtTargetViewUpdater::Create(pAllocator); in SmCamera()
112 = nw::gfx::PerspectiveProjectionUpdater::Create(pAllocator); in SmCamera()
127 .Create(pAllocator); in SmCamera()
/NW4C-1.2.23/tools/DebuggerLauncher/
DCLOADRUNCTR.H205 int SetAllocator(void* (*pAllocator)(size_t)) in SetAllocator()
207 return (m_pSetAllocator) ? (*m_pSetAllocator)(pAllocator) : -1; in SetAllocator()