Searched refs:baseAddress (Results 1 – 8 of 8) sorted by relevance
| /NW4C-1.2.23/include/nw/snd/ |
| D | snd_HardwareChannel.h | 60 const void* baseAddress, 76 const void* baseAddress, 100 void StopAtPoint( const void* baseAddress, u32 samples ); 101 void SetLoopStart( const void* baseAddress, u32 samples = 0 ); 102 void SetLoopEnd( const void* baseAddress, u32 samples ); 103 void SetBaseAddress( const void* baseAddress ) { m_pWaveData = baseAddress; } in SetBaseAddress() argument
|
| D | snd_Voice.h | 197 void StopAtPoint( int channelIndex, const void* baseAddress, u32 samples ); 199 void SetLoopStart( s32 channelIndex, const void* baseAddress, u32 samples = 0 ); 200 void SetLoopEnd( s32 channelIndex, const void* baseAddress, u32 samples );
|
| D | snd_MmlParser.h | 59 static u32 ParseAllocTrack( const void* baseAddress, u32 seqOffset, u32* allocTrack );
|
| /NW4C-1.2.23/sources/libraries/snd/ |
| D | snd_HardwareChannel.cpp | 127 void HardwareChannel::SetLoopStart( const void* baseAddress, u32 samples ) in SetLoopStart() argument 132 baseAddress, in SetLoopStart() 140 void HardwareChannel::SetLoopEnd( const void* baseAddress, u32 samples ) in SetLoopEnd() argument 145 baseAddress, in SetLoopEnd()
|
| D | snd_Voice.cpp | 1559 void Voice::StopAtPoint( int channelIndex, const void* baseAddress, u32 samples ) in StopAtPoint() argument 1564 pChannel->StopAtPoint( baseAddress, samples ); in StopAtPoint() 1580 void Voice::SetLoopStart( s32 channelIndex, const void* baseAddress, u32 samples ) in SetLoopStart() argument 1585 pChannel->SetLoopStart( baseAddress, samples ); in SetLoopStart() 1589 void Voice::SetLoopEnd( s32 channelIndex, const void* baseAddress, u32 samples ) in SetLoopEnd() argument 1594 pChannel->SetLoopEnd( baseAddress, samples ); in SetLoopEnd()
|
| D | snd_MmlParser.cpp | 1061 u32 MmlParser::ParseAllocTrack( const void* baseAddress, u32 seqOffset, u32* allocTrack ) in ParseAllocTrack() argument 1063 NW_NULL_ASSERT( baseAddress ); in ParseAllocTrack() 1066 const u8* ptr = static_cast<const u8*>( ut::AddOffsetToPtr( baseAddress, seqOffset ) ); in ParseAllocTrack()
|
| /NW4C-1.2.23/sources/libraries/snd/platform/ |
| D | snd_HardwareChannelAX.cppi | 54 const void* baseAddress, 58 if ( baseAddress != NULL ) 60 baseAddress = reinterpret_cast<const void*>( OS_CachedToPhysical( baseAddress ) ); 69 ( reinterpret_cast<HardwareChannel::DspAddress>( baseAddress ) << 1 ) + 76 reinterpret_cast<HardwareChannel::DspAddress>( baseAddress ) + 83 ( reinterpret_cast<HardwareChannel::DspAddress>( baseAddress ) >> 1 ) + 98 const void* baseAddress, 102 if ( baseAddress != NULL ) 104 baseAddress = reinterpret_cast<const void*>( OS_CachedToPhysical( baseAddress ) ); 112 samples = addr - ( reinterpret_cast<DspAddress>( baseAddress ) << 1 ); [all …]
|
| /NW4C-1.2.23/include/nw/lyt/ |
| D | lyt_Types.h | 143 ConvertOffsToPtr(const void* baseAddress, unsigned int offset) in ConvertOffsToPtr() argument 147 static_cast<const u8*>(baseAddress) + offset in ConvertOffsToPtr() 154 ConvertOffsToPtr(void* baseAddress, unsigned int offset) in ConvertOffsToPtr() argument 158 static_cast<u8*>(baseAddress) + offset in ConvertOffsToPtr()
|