Home
last modified time | relevance | path

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

/NW4C-1.3.3/include/nw/snd/
Dsnd_SoundArchiveLoader.h133 SoundMemoryAllocatable* pAllocator,
166 SoundMemoryAllocatable* pAllocator,
208 SoundMemoryAllocatable* pAllocator );
214 SoundMemoryAllocatable* pAllocator );
235 SoundMemoryAllocatable* pAllocator,
240 SoundMemoryAllocatable* pAllocator,
246 SoundMemoryAllocatable* pAllocator,
251 SoundMemoryAllocatable* pAllocator,
256 SoundMemoryAllocatable* pAllocator,
261 SoundMemoryAllocatable* pAllocator,
[all …]
/NW4C-1.3.3/sources/libraries/snd/
Dsnd_SoundArchiveLoader.cpp113 SoundMemoryAllocatable* pAllocator, in LoadData() argument
128 if ( pAllocator == NULL ) in LoadData()
139 return LoadSequenceSound( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
141 return LoadWaveSound( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
147 return LoadBank( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
149 return LoadWaveArchive( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
151 return LoadGroup( itemId, pAllocator, loadBlockSize ); in LoadData()
153 return LoadSoundGroup( itemId, pAllocator, loadFlag, loadBlockSize ); in LoadData()
162 SoundMemoryAllocatable* pAllocator, in LoadData() argument
169 return LoadData( id, pAllocator, loadFlag, loadBlockSize ); in LoadData()
[all …]
/NW4C-1.3.3/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.3.3/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.3.3/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.cpp77 MeshRenderer::Create(nw::os::IAllocator* pAllocator) in Create() argument
79 NW_NULL_ASSERT(pAllocator); in Create()
83 void* buf = pAllocator->Alloc(size); in Create()
85 return new(buf) MeshRenderer(pAllocator); in Create()
/NW4C-1.3.3/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.3.3/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_PerspectiveProjectionUpdater.h131 os::IAllocator* pAllocator,
Dgfx_FrustumProjectionUpdater.h129 os::IAllocator* pAllocator,
Dgfx_OrthoProjectionUpdater.h130 os::IAllocator* pAllocator,
Dgfx_MeshRenderer.h62 static MeshRenderer* Create(nw::os::IAllocator* pAllocator);
Dgfx_LookAtTargetViewUpdater.h133 os::IAllocator* pAllocator,
Dgfx_AimTargetViewUpdater.h133 os::IAllocator* pAllocator,
Dgfx_RotateViewUpdater.h133 os::IAllocator* pAllocator,
Dgfx_RenderContext.h530 nw::os::IAllocator* pAllocator,
/NW4C-1.3.3/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.3.3/tools/DebuggerLauncher/
DCLOADRUNCTR.H205 int SetAllocator(void* (*pAllocator)(size_t)) in SetAllocator()
207 return (m_pSetAllocator) ? (*m_pSetAllocator)(pAllocator) : -1; in SetAllocator()