Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 25) sorted by relevance

/NW4C-1.3.3/include/nw/snd/
Dsnd_StreamSoundFile.h231 Util::ReferenceTable table; member
235 u32 GetTrackCount() const { return table.count; } in GetTrackCount()
268 Util::Table<u8> table; member
273 NW_INLINE u32 GetCount() const { return table.count; } in GetCount()
276 NW_ASSERT( index < table.count ); in GetGlobalIndex()
277 return table.item[ index ]; in GetGlobalIndex()
285 Util::ReferenceTable table; member
288 NW_INLINE u32 GetChannelCount() const { return table.count; } in GetChannelCount()
Dsnd_WaveArchiveFile.h70 Util::Table<Util::ReferenceWithSize> table; member
73 inline u32 GetWaveFileCount() const { return table.count; } in GetWaveFileCount()
77 return table.item[ index ].size; in GetSize()
82 return table.item[ index ].offset; in GetOffsetFromFileBlockBody()
Dsnd_GroupFile.h68 Util::Table<GroupItemInfo> table;
71 NW_INLINE u32 GetItemCount() const { return table.count; }
78 return &table.item[ index ];
Dsnd_Util.h412 Table<WaveId> table; member
417 NW_ASSERT( index < table.count ); in GetWaveId()
418 return table.item[ index ]; in GetWaveId()
420 NW_INLINE u32 GetCount() const { return table.count; } in GetCount()
Dsnd_SoundArchiveFile.h173 Util::ReferenceWithSizeTable table; member
179 ut::AddOffsetToPtr( this, table.item[ stringId ].offset ) ); in GetString()
183 return table.count; in GetCount()
/NW4C-1.3.3/sources/libraries/snd/
Dsnd_SoundArchiveFile.cpp192 const StringTable* table = GetStringTable(); in GetString() local
193 if ( table == NULL ) return NULL; in GetString()
195 return table->GetString( stringId ); in GetString()
278 const Util::ReferenceTable& table = GetSoundInfoReferenceTable(); in GetSoundInfo() local
279 if ( index >= table.count ) in GetSoundInfo()
283 return reinterpret_cast<const SoundInfo*>( table.GetReferedItem( index ) ); in GetSoundInfo()
295 const Util::ReferenceTable& table = GetBankInfoReferenceTable(); in GetBankInfo() local
296 if ( index >= table.count ) in GetBankInfo()
300 return reinterpret_cast<const BankInfo*>( table.GetReferedItem( index ) ); in GetBankInfo()
312 const Util::ReferenceTable& table = GetPlayerInfoReferenceTable(); in GetPlayerInfo() local
[all …]
Dsnd_Util.cpp691 const f32* table = NULL; in CalcPanRatio() local
694 table = PanTableTableForSurround[ info.curve ]; in CalcPanRatio()
698 table = PanTableTable[ info.curve ]; in CalcPanRatio()
702 ratio = table[ static_cast<int>( pan * PAN_TABLE_MAX + 0.5f ) ]; in CalcPanRatio()
706 ratio /= table[ PAN_TABLE_CENTER ]; // 中央で1.0倍になるようにする in CalcPanRatio()
725 const f32* table = PanTableTable[ info.curve ]; in CalcSurroundPanRatio() local
727 f32 ratio = table[ static_cast<int>( surroundPan * PAN_TABLE_MAX + 0.5f ) ]; in CalcSurroundPanRatio()
874 const Util::WaveIdTable& table = bankFileReader.GetWaveIdTable(); in IsLoadedWaveArchive() local
878 Util::WaveId waveId = table.GetWaveId( 0 ); in IsLoadedWaveArchive()
893 for ( int i = 0; i < table.GetCount(); i++ ) in IsLoadedWaveArchive()
Dsnd_StreamSoundFile.cpp111 table.GetReferedItem( index, ElementType_StreamSoundFile_TrackInfo ) ); in GetTrackInfo()
120 NW_ASSERT( index < table.count ); in GetChannelInfo()
123 table.GetReferedItem( in GetChannelInfo()
Dsnd_StreamSoundFileReader.cpp85 const StreamSoundFile::TrackInfoTable* table = in ReadStreamTrackInfo() local
88 if ( trackIndex >= static_cast<int>( table->GetTrackCount() ) ) in ReadStreamTrackInfo()
93 const StreamSoundFile::TrackInfo* src = table->GetTrackInfo( trackIndex ); in ReadStreamTrackInfo()
Dsnd_SoundArchiveLoader.cpp363 const internal::Util::WaveIdTable& table = reader.GetWaveIdTable(); in LoadBank() local
365 for ( u32 i = 0; i < table.GetCount(); i++ ) in LoadBank()
367 const internal::Util::WaveId& waveId = table.GetWaveId( i ); in LoadBank()
774 const Util::WaveIdTable& table = bankReader.GetWaveIdTable(); in SetWaveArchiveTableWithBankInEmbeddedGroup() local
775 if ( table.GetCount() <= 0 ) in SetWaveArchiveTableWithBankInEmbeddedGroup()
780 SoundArchive::ItemId warcId = table.GetWaveId( 0U ).waveArchiveId; in SetWaveArchiveTableWithBankInEmbeddedGroup()
1253 const internal::Util::WaveIdTable& table = reader.GetWaveIdTable(); in IsBankDataLoaded() local
1255 for ( u32 i = 0; i < table.GetCount(); i++ ) in IsBankDataLoaded()
1257 const internal::Util::WaveId& waveId = table.GetWaveId( i ); in IsBankDataLoaded()
1433 const internal::Util::WaveIdTable& table = reader.GetWaveIdTable(); in detail_LoadWaveArchiveByBankFile() local
[all …]
Dsnd_BankFile.cpp246 const Util::ReferenceTable& table = GetInstrumentReferenceTable(); in GetInstrument() local
247 const Util::Reference& ref = table.item[ programNo ]; in GetInstrument()
261 table.GetReferedItem( programNo ) ); in GetInstrument()
/NW4C-1.3.3/documents/LayoutEditor/html/css/
Dmanpage.css305 table selector
316 table caption
325 table tr
331 table td
340 table thead td
347 table.toolbar
358 table.toolbar caption
367 table.shortcut tr
373 table.toolbar td
389 table.toolbar thead td
[all …]
Dmain.css137 table selector
/NW4C-1.3.3/documents/SoundMaker/html/css/
Dmanpage.css292 table selector
303 table caption
312 table tr
318 table td
327 table thead td
334 table.toolbar
345 table.toolbar caption
354 table.shortcut tr
360 table.toolbar td
376 table.toolbar thead td
[all …]
Dmain.css137 table selector
/NW4C-1.3.3/sources/libraries/gfx/
Dgfx_GraphicsDevice.cpp148 static const char* table[] = in Report() local
155 NW_LOG(" %s\n", table[s_FragOperationMode]); in Report()
219 static const char* table[] = in Report() local
229 table[target], in Report()
/NW4C-1.3.3/documents/CreativeStudio/html/common/
Dmanual.css274 table { selector
287 table thead th {
299 table thead td {
307 table tr {
309 table th {
317 table td {
327 table.space {
Dfonts-min.css7 …;}select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}table{font-size:inherit;… selector
/NW4C-1.3.3/documents/DccPlugin/3dsMax/html/css/
Dmanpage.css390 TABLE.table
395 TABLE.table TR, TABLE.table TD
410 TABLE.table TH
/NW4C-1.3.3/documents/DccPlugin/Photoshop/html/css/
Dmanpage.css390 TABLE.table
395 TABLE.table TR, TABLE.table TD
410 TABLE.table TH
/NW4C-1.3.3/documents/DccPlugin/Maya/html/css/
Dmanpage.css390 TABLE.table
395 TABLE.table TR, TABLE.table TD
410 TABLE.table TH
/NW4C-1.3.3/documents/DccPlugin/Softimage/html/css/
Dmanpage.css390 TABLE.table
395 TABLE.table TR, TABLE.table TD
410 TABLE.table TH
/NW4C-1.3.3/include/nw/gfx/res/
Dgfx_ResMaterial.h486 static const u32 table[] = in SetCullingMode() local
494 internal::SetCmdValue( &ref().m_CommandBuffer[0], table[value], CMD_MASK, CMD_SHIFT ); in SetCullingMode()
590 const u32 table[] = in SetMode() local
598 internal::SetCmdValue( &ref().m_CommandBuffer[0], table[value], CMD_MASK, CMD_SHIFT ); in SetMode()
905 static const uint table[] = in SetTestFunc() local
917 internal::SetCmdValue( &ref().m_CommandBuffer[2], table[value], CMD_MASK126, CMD_SHIFT126 ); in SetTestFunc()
Dgfx_ResGraphicsFile.h946 const int table[] = in operator() local
954 resMaterial.SetShaderProgramDescriptionIndex(table[activeCoordinatorsCount]); in operator()
/NW4C-1.3.3/documents/CreativeStudio/html/assets/
Dtreeview-skin.css17 table.ygtvtable {