| /NW4C-2.0.3/sources/libraries/snd/ |
| D | snd_Sound3DManager.cpp | 197 const void* arg, in detail_UpdateAmbientParam() argument 202 const Sound3DParam* actorParam = static_cast<const Sound3DParam*>( arg ); in detail_UpdateAmbientParam() 226 const void* arg, in detail_GetAmbientPriority() argument 230 const Sound3DParam* actorParam = static_cast<const Sound3DParam*>( arg ); in detail_GetAmbientPriority() 271 void Sound3DManager::detail_FreeAmbientArg( void* arg, const internal::BasicSound* sound ) in detail_FreeAmbientArg() argument 275 Sound3DParam* actorParam = static_cast<Sound3DParam*>( arg ); in detail_FreeAmbientArg()
|
| D | snd_TaskThread.cpp | 117 void TaskThread::ThreadFunc( uptr arg ) in ThreadFunc() argument 119 TaskThread* taskThread = reinterpret_cast< TaskThread* >( arg ); in ThreadFunc()
|
| D | snd_BasicSound.cpp | 73 m_AmbientInfo.arg = NULL; in Initialize() 203 m_AmbientInfo.argAllocatorCallback->detail_FreeAmbientArg( m_AmbientInfo.arg, this ); in Finalize() 204 m_AmbientInfo.arg = NULL; in Finalize() 443 m_AmbientInfo.arg, in Update() 469 m_AmbientInfo.arg, in Update() 1082 std::memcpy( ambientArg, ambientArgInfo.arg, ambientArgInfo.argSize ); in SetAmbientInfo() 1086 m_AmbientInfo.arg = ambientArg; in SetAmbientInfo() 1104 ambientInfo.arg, in GetAmbientPriority()
|
| D | snd_WaveSoundPlayer.cpp | 284 WaveSoundCallbackArg arg = in ReadWaveSoundDataInfo() local 296 arg ); in ReadWaveSoundDataInfo() 381 WaveSoundCallbackArg arg = in StartChannel() local 393 arg ); in StartChannel()
|
| D | snd_SoundHeap.cpp | 193 void SoundHeap::DisposeCallbackFunc( void* mem, unsigned long size, void* arg ) in DisposeCallbackFunc() argument 195 NW_UNUSED_VARIABLE(arg); in DisposeCallbackFunc()
|
| D | snd_Sound3DActor.cpp | 243 void Sound3DActor::detail_UpdateAmbientArg( void* arg, const internal::BasicSound* sound ) in detail_UpdateAmbientArg() argument 247 Sound3DParam* param = static_cast< Sound3DParam* >( arg ); in detail_UpdateAmbientArg()
|
| D | snd_SoundThread.cpp | 371 void SoundThread::SoundThreadFunc( uptr arg ) in SoundThreadFunc() argument 373 SoundThread* th = reinterpret_cast< SoundThread* >( arg ); in SoundThreadFunc() 389 void SoundThread::UserThreadCallback( uptr arg ) in UserThreadCallback() argument 391 SoundThread* th = reinterpret_cast< SoundThread* >( arg ); in UserThreadCallback()
|
| D | snd_MidiStreamParser.cpp | 39 void MidiStreamParser::SetCallback( MidiCallback callback, void* arg ) in SetCallback() argument 42 m_pCallbackArg = arg; in SetCallback()
|
| D | snd_MmlParser.cpp | 148 s32 arg = ReadArg( in Parse() local 156 trackParam.wait = arg; in Parse() 232 u8 arg = static_cast<u8>( ReadArg( in Parse() local 255 commandArg1 = *reinterpret_cast<s8*>( &arg ); in Parse() 258 commandArg1 = arg; in Parse()
|
| D | snd_SoundArchivePlayer.cpp | 1673 const internal::driver::WaveSoundPlayer::WaveSoundCallbackArg& arg ) const in GetWaveSoundData() 1681 internal::WaveSoundFileReader reader( arg.wsdFile ); in GetWaveSoundData() 1682 if ( ! reader.ReadWaveSoundInfo( info, arg.wsdIndex ) ) in GetWaveSoundData() 1686 if ( ! reader.ReadNoteInfo( noteInfo, arg.wsdIndex, arg.noteIndex ) ) in GetWaveSoundData() 1701 if ( arg.dataMgr != NULL ) in GetWaveSoundData() 1704 noteInfo->waveArchiveId, noteInfo->waveIndex, sndArc, arg.dataMgr ); in GetWaveSoundData()
|
| /NW4C-2.0.3/include/nw/io/ |
| D | io_IOStream.h | 38 typedef void (*IOStreamCallback)(s32 result, IOStream* stream, void* arg); 153 void* arg ); 197 void* arg );
|
| D | io_FileStream.h | 51 virtual bool CancelAsync( IOStreamCallback callback, void* arg );
|
| /NW4C-2.0.3/include/nw/snd/ |
| D | snd_AnimSound.h | 149 void* arg ); 395 void SetEventCallback( EventCallback callback, void* arg ) in SetEventCallback() argument 397 m_Impl.SetEventCallback( callback, arg ); in SetEventCallback()
|
| D | snd_AnimSoundImpl.h | 60 void* arg ); 77 void SetEventCalback( EventCallback callback, void* arg ) in SetEventCalback() argument 80 m_EventCallbackArg = arg; in SetEventCalback()
|
| D | snd_Sound3DManager.h | 449 const void* arg, 454 const void* arg, 459 void* arg,
|
| D | snd_SoundThread.h | 126 void RegisterSoundFrameUserCallback( SoundFrameUserCallback callback, uptr arg ) in RegisterSoundFrameUserCallback() argument 129 m_UserCallbackArg = arg; in RegisterSoundFrameUserCallback() 187 static void SoundThreadFunc( uptr arg ); 188 static void UserThreadCallback( uptr arg );
|
| D | snd_BasicSound.h | 250 void* arg; member 464 const void* arg, 469 const void* arg, 479 void* arg, 490 void* arg,
|
| D | snd_MidiStreamParser.h | 32 typedef void (*MidiCallback)( u8 status, u8 data1, u8 data2, void* arg ); 35 void SetCallback( MidiCallback callback, void* arg );
|
| D | snd_TaskThread.h | 60 static void ThreadFunc( uptr arg );
|
| D | snd_SoundSystem.h | 347 static void SetSoundFrameUserCallback( SoundFrameUserCallback callback, uptr arg ) in SetSoundFrameUserCallback() argument 350 callback, arg ); in SetSoundFrameUserCallback()
|
| D | snd_SoundHeap.h | 307 static void DisposeCallbackFunc( void* mem, unsigned long size, void* arg );
|
| D | snd_Sound3DActor.h | 280 virtual void detail_UpdateAmbientArg( void* arg, const internal::BasicSound* sound );
|
| D | snd_SequenceSoundPlayer.h | 100 void* arg 193 void SetSequenceUserprocCallback( SequenceUserprocCallback callback, void* arg );
|
| D | snd_WaveSoundPlayer.h | 114 const WaveSoundCallbackArg& arg
|
| /NW4C-2.0.3/include/nw/font/ |
| D | font_TextWriterBase.h | 494 std::va_list arg in VSNPrintf() argument 501 return vsnprintf(buffer, count, format, arg); in VSNPrintf() 508 std::va_list arg in VSNPrintf() argument 515 return vswprintf(buffer, count, format, arg); in VSNPrintf()
|