Home
last modified time | relevance | path

Searched refs:baseAddress (Results 1 – 8 of 8) sorted by relevance

/NW4C-2.0.3/include/nw/snd/
Dsnd_HardwareChannel.h62 const void* baseAddress,
78 const void* baseAddress,
102 void StopAtPoint( const void* baseAddress, u32 samples );
103 void SetLoopStart( const void* baseAddress, u32 samples = 0 );
104 void SetLoopEnd( const void* baseAddress, u32 samples );
105 void SetBaseAddress( const void* baseAddress ) { m_pWaveData = baseAddress; } in SetBaseAddress() argument
Dsnd_Voice.h199 void StopAtPoint( int channelIndex, const void* baseAddress, u32 samples );
201 void SetLoopStart( s32 channelIndex, const void* baseAddress, u32 samples = 0 );
202 void SetLoopEnd( s32 channelIndex, const void* baseAddress, u32 samples );
Dsnd_MmlParser.h61 static u32 ParseAllocTrack( const void* baseAddress, u32 seqOffset, u32* allocTrack );
/NW4C-2.0.3/sources/libraries/snd/
Dsnd_HardwareChannel.cpp129 void HardwareChannel::SetLoopStart( const void* baseAddress, u32 samples ) in SetLoopStart() argument
134 baseAddress, in SetLoopStart()
142 void HardwareChannel::SetLoopEnd( const void* baseAddress, u32 samples ) in SetLoopEnd() argument
147 baseAddress, in SetLoopEnd()
Dsnd_Voice.cpp1560 void Voice::StopAtPoint( int channelIndex, const void* baseAddress, u32 samples ) in StopAtPoint() argument
1565 pChannel->StopAtPoint( baseAddress, samples ); in StopAtPoint()
1581 void Voice::SetLoopStart( s32 channelIndex, const void* baseAddress, u32 samples ) in SetLoopStart() argument
1586 pChannel->SetLoopStart( baseAddress, samples ); in SetLoopStart()
1590 void Voice::SetLoopEnd( s32 channelIndex, const void* baseAddress, u32 samples ) in SetLoopEnd() argument
1595 pChannel->SetLoopEnd( baseAddress, samples ); in SetLoopEnd()
Dsnd_MmlParser.cpp1063 u32 MmlParser::ParseAllocTrack( const void* baseAddress, u32 seqOffset, u32* allocTrack ) in ParseAllocTrack() argument
1065 NW_NULL_ASSERT( baseAddress ); in ParseAllocTrack()
1068 const u8* ptr = static_cast<const u8*>( ut::AddOffsetToPtr( baseAddress, seqOffset ) ); in ParseAllocTrack()
/NW4C-2.0.3/sources/libraries/snd/platform/
Dsnd_HardwareChannelAX.cppi56 const void* baseAddress,
60 if ( baseAddress != NULL )
62 baseAddress = reinterpret_cast<const void*>( OS_CachedToPhysical( baseAddress ) );
71 ( reinterpret_cast<HardwareChannel::DspAddress>( baseAddress ) << 1 ) +
78 reinterpret_cast<HardwareChannel::DspAddress>( baseAddress ) +
85 ( reinterpret_cast<HardwareChannel::DspAddress>( baseAddress ) >> 1 ) +
100 const void* baseAddress,
104 if ( baseAddress != NULL )
106 baseAddress = reinterpret_cast<const void*>( OS_CachedToPhysical( baseAddress ) );
114 samples = addr - ( reinterpret_cast<DspAddress>( baseAddress ) << 1 );
[all …]
/NW4C-2.0.3/include/nw/lyt/
Dlyt_Types.h145 ConvertOffsToPtr(const void* baseAddress, unsigned int offset) in ConvertOffsToPtr() argument
149 static_cast<const u8*>(baseAddress) + offset in ConvertOffsToPtr()
156 ConvertOffsToPtr(void* baseAddress, unsigned int offset) in ConvertOffsToPtr() argument
160 static_cast<u8*>(baseAddress) + offset in ConvertOffsToPtr()