| /NW4C-1.3.3/sources/libraries/snd/ |
| D | snd_Sound3DManager.cpp | 195 const void* arg, in detail_UpdateAmbientParam() argument 200 const Sound3DParam* actorParam = static_cast<const Sound3DParam*>( arg ); in detail_UpdateAmbientParam() 224 const void* arg, in detail_GetAmbientPriority() argument 228 const Sound3DParam* actorParam = static_cast<const Sound3DParam*>( arg ); in detail_GetAmbientPriority() 269 void Sound3DManager::detail_FreeAmbientArg( void* arg, const internal::BasicSound* sound ) in detail_FreeAmbientArg() argument 273 Sound3DParam* actorParam = static_cast<Sound3DParam*>( arg ); in detail_FreeAmbientArg()
|
| D | snd_TaskThread.cpp | 115 void TaskThread::ThreadFunc( uptr arg ) in ThreadFunc() argument 117 TaskThread* taskThread = reinterpret_cast< TaskThread* >( arg ); in ThreadFunc()
|
| D | snd_BasicSound.cpp | 71 m_AmbientInfo.arg = NULL; in Initialize() 202 m_AmbientInfo.argAllocatorCallback->detail_FreeAmbientArg( m_AmbientInfo.arg, this ); in Finalize() 203 m_AmbientInfo.arg = NULL; in Finalize() 436 m_AmbientInfo.arg, in Update() 462 m_AmbientInfo.arg, in Update() 1073 std::memcpy( ambientArg, ambientArgInfo.arg, ambientArgInfo.argSize ); in SetAmbientInfo() 1077 m_AmbientInfo.arg = ambientArg; in SetAmbientInfo() 1095 ambientInfo.arg, in GetAmbientPriority()
|
| D | snd_WaveSoundPlayer.cpp | 282 WaveSoundCallbackArg arg = in ReadWaveSoundDataInfo() local 294 arg ); in ReadWaveSoundDataInfo() 379 WaveSoundCallbackArg arg = in StartChannel() local 391 arg ); in StartChannel()
|
| D | snd_SoundHeap.cpp | 191 void SoundHeap::DisposeCallbackFunc( void* mem, unsigned long size, void* arg ) in DisposeCallbackFunc() argument 193 NW_UNUSED_VARIABLE(arg); in DisposeCallbackFunc()
|
| D | snd_Sound3DActor.cpp | 241 void Sound3DActor::detail_UpdateAmbientArg( void* arg, const internal::BasicSound* sound ) in detail_UpdateAmbientArg() argument 245 Sound3DParam* param = static_cast< Sound3DParam* >( arg ); in detail_UpdateAmbientArg()
|
| D | snd_SoundThread.cpp | 369 void SoundThread::SoundThreadFunc( uptr arg ) in SoundThreadFunc() argument 371 SoundThread* th = reinterpret_cast< SoundThread* >( arg ); in SoundThreadFunc() 387 void SoundThread::UserThreadCallback( uptr arg ) in UserThreadCallback() argument 389 SoundThread* th = reinterpret_cast< SoundThread* >( arg ); in UserThreadCallback()
|
| D | snd_MidiStreamParser.cpp | 37 void MidiStreamParser::SetCallback( MidiCallback callback, void* arg ) in SetCallback() argument 40 m_pCallbackArg = arg; in SetCallback()
|
| D | snd_MmlParser.cpp | 146 s32 arg = ReadArg( in Parse() local 154 trackParam.wait = arg; in Parse() 230 u8 arg = static_cast<u8>( ReadArg( in Parse() local 253 commandArg1 = *reinterpret_cast<s8*>( &arg ); in Parse() 256 commandArg1 = arg; in Parse()
|
| D | snd_SoundArchivePlayer.cpp | 1671 const internal::driver::WaveSoundPlayer::WaveSoundCallbackArg& arg ) const in GetWaveSoundData() 1679 internal::WaveSoundFileReader reader( arg.wsdFile ); in GetWaveSoundData() 1680 if ( ! reader.ReadWaveSoundInfo( info, arg.wsdIndex ) ) in GetWaveSoundData() 1684 if ( ! reader.ReadNoteInfo( noteInfo, arg.wsdIndex, arg.noteIndex ) ) in GetWaveSoundData() 1699 if ( arg.dataMgr != NULL ) in GetWaveSoundData() 1702 noteInfo->waveArchiveId, noteInfo->waveIndex, sndArc, arg.dataMgr ); in GetWaveSoundData()
|
| D | snd_Channel.cpp | 583 void* arg in VoiceCallbackFunc() argument 586 NW_NULL_ASSERT( arg ); in VoiceCallbackFunc() 607 Channel* channel = static_cast<Channel*>( arg ); in VoiceCallbackFunc()
|
| /NW4C-1.3.3/include/nw/io/ |
| D | io_IOStream.h | 36 typedef void (*IOStreamCallback)(s32 result, IOStream* stream, void* arg); 151 void* arg ); 195 void* arg );
|
| D | io_FileStream.h | 49 virtual bool CancelAsync( IOStreamCallback callback, void* arg );
|
| /NW4C-1.3.3/include/nw/snd/ |
| D | snd_Sound3DManager.h | 447 const void* arg, 452 const void* arg, 457 void* arg,
|
| D | snd_SoundThread.h | 124 void RegisterSoundFrameUserCallback( SoundFrameUserCallback callback, uptr arg ) in RegisterSoundFrameUserCallback() argument 127 m_UserCallbackArg = arg; in RegisterSoundFrameUserCallback() 185 static void SoundThreadFunc( uptr arg ); 186 static void UserThreadCallback( uptr arg );
|
| D | snd_MidiStreamParser.h | 30 typedef void (*MidiCallback)( u8 status, u8 data1, u8 data2, void* arg ); 33 void SetCallback( MidiCallback callback, void* arg );
|
| D | snd_BasicSound.h | 248 void* arg; member 462 const void* arg, 467 const void* arg, 477 void* arg, 488 void* arg,
|
| D | snd_TaskThread.h | 56 static void ThreadFunc( uptr arg );
|
| D | snd_SoundSystem.h | 329 static void SetSoundFrameUserCallback( SoundFrameUserCallback callback, uptr arg ) in SetSoundFrameUserCallback() argument 332 callback, arg ); in SetSoundFrameUserCallback()
|
| D | snd_Sound3DActor.h | 278 virtual void detail_UpdateAmbientArg( void* arg, const internal::BasicSound* sound );
|
| D | snd_SoundHeap.h | 305 static void DisposeCallbackFunc( void* mem, unsigned long size, void* arg );
|
| D | snd_SequenceSoundPlayer.h | 98 void* arg 191 void SetSequenceUserprocCallback( SequenceUserprocCallback callback, void* arg );
|
| D | snd_WaveSoundPlayer.h | 112 const WaveSoundCallbackArg& arg
|
| D | snd_Global.h | 51 typedef void(*SoundFrameUserCallback)( uptr arg );
|
| /NW4C-1.3.3/include/nw/font/ |
| D | font_TextWriterBase.h | 492 std::va_list arg in VSNPrintf() argument 499 return vsnprintf(buffer, count, format, arg); in VSNPrintf() 506 std::va_list arg in VSNPrintf() argument 513 return vswprintf(buffer, count, format, arg); in VSNPrintf()
|