| /NW4C-2.0.3/include/nw/io/ |
| D | io_IOStream.h | 129 virtual s32 Read( void* buf, u32 length ); 150 void* buf, 172 virtual s32 Write( const void* buf, u32 length ); 194 const void* buf,
|
| D | io_HioFileStream.h | 50 virtual s32 Read( void* buf, u32 length ); 51 virtual s32 Write( const void* buf, u32 length );
|
| D | io_RomFileStream.h | 50 virtual s32 Read( void* buf, u32 length );
|
| /NW4C-2.0.3/include/nw/gfx/ |
| D | gfx_AnimEvaluator.h | 114 void* buf = allocator->Alloc(sizeof(AnimEvaluator)); in Create() local 116 if (buf == NULL) in Create() 121 AnimEvaluator* animEvaluator = new(buf) AnimEvaluator(allocator); in Create() 257 virtual void SetCacheBuffer(void* buf, int size) in SetCacheBuffer() argument 259 m_CacheBuf = buf; in SetCacheBuffer() 260 if (buf != NULL) in SetCacheBuffer()
|
| D | gfx_TransformAnimAdder.h | 89 void* buf = allocator->Alloc(sizeof(TransformAnimAdder)); in Create() local 91 if (buf == NULL) in Create() 96 TransformAnimAdder* adder = new(buf) TransformAnimAdder(allocator); in Create()
|
| D | gfx_TransformAnimOverrider.h | 90 void* buf = allocator->Alloc(sizeof(TransformAnimOverrider)); in Create() local 92 if (buf == NULL) in Create() 97 TransformAnimOverrider* overrider = new(buf) TransformAnimOverrider(allocator); in Create()
|
| D | gfx_AnimOverrider.h | 91 void* buf = allocator->Alloc(sizeof(AnimOverrider)); in Create() local 93 if (buf == NULL) in Create() 98 AnimOverrider* animOverrider = new(buf) AnimOverrider(allocator); in Create()
|
| D | gfx_TransformAnimInterpolator.h | 105 void* buf = allocator->Alloc(sizeof(TransformAnimInterpolator)); in Create() local 107 if (buf == NULL) in Create() 112 TransformAnimInterpolator* interpolator = new(buf) TransformAnimInterpolator(allocator); in Create()
|
| D | gfx_TransformAnimEvaluator.h | 116 void* buf = allocator->Alloc(sizeof(TransformAnimEvaluator)); in Create() local 118 if (buf == NULL) in Create() 123 TransformAnimEvaluator* evaluator = new(buf) TransformAnimEvaluator(allocator); in Create() 291 virtual void SetCacheBuffer(void* buf, int size) in SetCacheBuffer() argument 293 if (buf != NULL) in SetCacheBuffer() 297 m_CacheTransforms = ut::MoveArray<CalculatedTransform>(buf, maxCalculatedTransforms); in SetCacheBuffer()
|
| D | gfx_AnimAdder.h | 89 void* buf = allocator->Alloc(sizeof(AnimAdder)); in Create() local 91 if (buf == NULL) in Create() 96 AnimAdder* animAdder = new(buf) AnimAdder(allocator); in Create()
|
| D | gfx_AnimInterpolator.h | 109 void* buf = allocator->Alloc(sizeof(AnimInterpolator)); in Create() local 111 if (buf == NULL) in Create() 116 AnimInterpolator* animInterpolator = new(buf) AnimInterpolator(allocator); in Create()
|
| D | gfx_AnimGroup.h | 111 void* buf = allocator->Alloc(sizeof(AnimGroup)); in Create() local 113 if (buf == NULL) in Create() 118 AnimGroup* animGroup = new(buf) AnimGroup(m_ResAnimGroup, m_SceneNode, allocator); in Create()
|
| D | gfx_AnimBinding.h | 116 void* buf = allocator->Alloc(sizeof(AnimBinding)); in Create() local 118 if (buf == NULL) in Create() 123 AnimBinding* animBinding = new(buf) AnimBinding(allocator, m_MaxAnimObjectsPerGroup); in Create()
|
| D | gfx_GfxObject.h | 58 static void* operator new( size_t, void* buf ) NW_NO_THROW { return buf; } in new() argument
|
| D | gfx_BaseAnimEvaluator.h | 302 virtual void SetCacheBuffer(void* buf, int size) in SetCacheBuffer() argument 304 (void)buf; in SetCacheBuffer()
|
| /NW4C-2.0.3/sources/libraries/io/ |
| D | io_HioFileStream.cpp | 162 s32 HioFileStream::Read( void* buf, u32 length ) in Read() argument 171 s32 readBytes = m_pOpenedFile->Read( buf, length ); in Read() 179 s32 HioFileStream::Write( const void* buf, u32 length ) in Write() argument 188 s32 writeBytes = m_pOpenedFile->Write( buf, length ); in Write()
|
| D | io_RomFileStream.cpp | 155 s32 RomFileStream::Read( void* buf, u32 length ) in Read() argument 165 s32 readBytes = nn::fs::ReadFile( &m_File, buf, length ); in Read() 175 s32 readBytes = m_pOpenedFileReader->Read( buf, length ); in Read()
|
| /NW4C-2.0.3/sources/libraries/snd/ |
| D | snd_SoundArchivePlayer.cpp | 327 void* buf = buffer; in SetupMram() local 328 if ( ! SetupSoundPlayer( arc, &buf, endp ) ) in SetupMram() 336 if ( ! SetupSequenceSound( arc, soundArchivePlayerInfo.sequenceSoundMax, &buf, endp ) ) in SetupMram() 341 if ( ! SetupWaveSound( arc, soundArchivePlayerInfo.waveSoundMax, &buf, endp ) ) in SetupMram() 346 if ( ! SetupStreamSound( arc, soundArchivePlayerInfo.streamSoundMax, &buf, endp ) ) in SetupMram() 351 if ( ! SetupSequenceTrack( arc, soundArchivePlayerInfo.sequenceTrackMax, &buf, endp ) ) in SetupMram() 358 static_cast<char*>(buf) - static_cast<char*>(buffer) == in SetupMram() 390 void* buf = *buffer; in CreatePlayerHeap() local 393 internal::PlayerHeap* playerHeap = new ( buf ) internal::PlayerHeap(); in CreatePlayerHeap() 402 buf = *buffer; in CreatePlayerHeap() [all …]
|
| D | snd_SoundDataManager.cpp | 63 void* buf = buffer; in Initialize() local 65 if ( ! CreateFileAddressTable( arc, &buf, endp ) ) in Initialize() 70 NW_ASSERT( static_cast<char*>(buf) - static_cast<char*>(buffer) == GetRequiredMemSize( arc ) ); in Initialize()
|
| D | snd_MemorySoundArchive.cpp | 205 s32 MemorySoundArchive::MemoryFileStream::Read( void* buf, u32 length ) in Read() argument 208 std::memcpy( buf, ut::AddOffsetToPtr( m_pBuffer, m_Position ), readLen ); in Read()
|
| D | snd_HioSoundArchive.cpp | 406 s32 HioSoundArchive::HioFileStream::Read( void* buf, u32 length ) in Read() argument 408 NW_ALIGN32_ASSERT( buf ); in Read() 415 return io::HioFileStream::Read( buf, length ); in Read()
|
| /NW4C-2.0.3/include/nw/snd/ |
| D | snd_MemorySoundArchive.h | 133 virtual s32 Read( void* buf, u32 length );
|
| D | snd_HioSoundArchive.h | 227 virtual s32 Read( void* buf, u32 length );
|
| D | snd_RomSoundArchive.h | 246 virtual s32 Read( void* buf, u32 length );
|
| /NW4C-2.0.3/include/nw/ut/ |
| D | ut_SharedPtr.h | 50 void* buf = pAllocator->Alloc( sizeof(SharedPtrCount) ); variable 51 return new(buf) SharedPtrCount( pAllocator );
|