| /NW4C-1.3.3/include/nw/snd/ |
| D | snd_Util.h | 118 COUNT_TYPE count; member 157 if ( index >= count ) return NULL; in GetReferedItem() 162 if ( index >= count ) return NULL; in GetReferedItem() 168 for ( u32 i = 0; i < count; i++ ) in FindReferedItemBy() 183 NW_ASSERT( index < count ); in GetReferedItem() 188 for ( u32 i = 0; i < count; i++ ) in GetReferedItemBy() 199 NW_ASSERT( index < count ); in GetReferedItemSize() 214 const void* origin, int index, u16 count ) const in GetReferedItemByIndex() 216 NW_UNUSED_VARIABLE(count); in GetReferedItemByIndex() 217 NW_ASSERT( index < count ); in GetReferedItemByIndex() [all …]
|
| D | snd_SoundSystem.h | 917 static void GetSoundThreadTickCount( nn::os::Tick& tick, int& count ) in GetSoundThreadTickCount() argument 920 internal::driver::SoundThread::GetInstance().GetTickCount( tick, count ); in GetSoundThreadTickCount() 923 NW_UNUSED_VARIABLE( count ); in GetSoundThreadTickCount() 1075 static void SetMaxVoiceCount( int count ) in SetMaxVoiceCount() argument 1077 NW_MINMAX_ASSERT( count, 1, NN_SND_VOICE_NUM ); in SetMaxVoiceCount() 1078 count = ut::Clamp( count, 1, NN_SND_VOICE_NUM ); in SetMaxVoiceCount() 1079 s_MaxVoiceCount = count; in SetMaxVoiceCount()
|
| D | snd_SoundArchiveFile.h | 142 NW_MINMAX_ASSERT( idx, 0L, static_cast<int>( nodeTable.count - 1 )); 160 u32 GetNumData() const { return nodeTable.count; } in GetNumData() 183 return table.count; in GetCount() 218 NW_INLINE u32 GetSoundCount() const { return GetSoundInfoReferenceTable().count; } in GetSoundCount() 219 NW_INLINE u32 GetBankCount() const { return GetBankInfoReferenceTable().count; } in GetBankCount() 220 NW_INLINE u32 GetPlayerCount() const { return GetPlayerInfoReferenceTable().count; } in GetPlayerCount() 221 … NW_INLINE u32 GetSoundGroupCount() const { return GetSoundGroupInfoReferenceTable().count; } in GetSoundGroupCount() 222 NW_INLINE u32 GetGroupCount() const { return GetGroupInfoReferenceTable().count; } in GetGroupCount() 223 … NW_INLINE u32 GetWaveArchiveCount() const { return GetWaveArchiveInfoReferenceTable().count; } in GetWaveArchiveCount() 224 NW_INLINE u32 GetFileCount() const { return GetFileInfoReferenceTable().count; } in GetFileCount() [all …]
|
| D | snd_WaveSoundFile.h | 149 return GetWaveSoundDataReferenceTable().count; in GetWaveSoundCount() 189 return GetTrackInfoReferenceTable().count; in GetTrackCount() 193 return GetNoteInfoReferenceTable().count; in GetNoteCount() 228 return GetNoteEventReferenceTable().count; in GetNoteEventCount()
|
| D | snd_StreamSoundFile.h | 235 u32 GetTrackCount() const { return table.count; } in GetTrackCount() 273 NW_INLINE u32 GetCount() const { return table.count; } in GetCount() 276 NW_ASSERT( index < table.count ); in GetGlobalIndex() 288 NW_INLINE u32 GetChannelCount() const { return table.count; } in GetChannelCount()
|
| D | snd_GroupFile.h | 55 return referenceTableOfGroupItemInfo.count; in GetGroupItemInfoCount() 71 NW_INLINE u32 GetItemCount() const { return table.count; } 134 return referenceTableOfGroupItemInfoEx.count; in GetGroupItemInfoExCount()
|
| /NW4C-1.3.3/include/nw/os/ |
| D | os_Memory.h | 108 TObject* Alloc(int count, u8 alignment = DEFAULT_ALIGNMENT) 110 NW_ASSERT(count >= 0); 111 return static_cast<TObject*>(this->Alloc(sizeof(TObject) * count, alignment)); 118 TObject* AllocAndClear(int count, u8 data, u8 alignment = DEFAULT_ALIGNMENT) 120 NW_ASSERT(count >= 0); 121 u8* memory = static_cast<u8*>(this->Alloc(sizeof(TObject) * count, alignment)); 125 std::fill_n(memory, count, data); 135 TObject* AllocAndConstruct(int count, u8 alignment = DEFAULT_ALIGNMENT) 137 NW_ASSERT(count >= 0); 138 TObject* objects = static_cast<TObject*>(this->Alloc(sizeof(TObject) * count, alignment)); [all …]
|
| /NW4C-1.3.3/sources/libraries/snd/ |
| D | snd_DriverCommandManager.cpp | 63 void* DriverCommandManager::AllocMemory( u32 count ) in AllocMemory() argument 65 NW_ASSERT( count <= m_CommandMemoryAreaSize ); in AllocMemory() 67 void* ptr = TryAllocMemory( count ); in AllocMemory() 71 ptr = TryAllocMemory( count ); in AllocMemory() 79 ptr = TryAllocMemory( count ); in AllocMemory() 85 void* DriverCommandManager::TryAllocMemory( u32 count ) in TryAllocMemory() argument 93 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaEnd ) { in TryAllocMemory() 95 m_CommandMemoryAreaBegin += count; in TryAllocMemory() 100 if ( m_CommandMemoryAreaBegin + count <= m_CommandMemoryAreaSize ) { in TryAllocMemory() 102 m_CommandMemoryAreaBegin += count; in TryAllocMemory() [all …]
|
| D | snd_SoundDataManager.cpp | 117 m_pFileTable->count = arc->detail_GetFileCount(); in CreateFileAddressTable() 118 for( u32 i = 0 ; i < m_pFileTable->count ; i++ ) in CreateFileAddressTable() 142 for( u32 i = 0 ; i < m_pFileTable->count ; i++ ) in InvalidateData() 221 NW_MINMAXLT_ASSERT( fileId, 0, m_pFileTable->count ); in SetFileAddressToTable() 249 if ( fileId >= m_pFileTable->count ) return NULL; in GetFileAddressFromTable() 274 for ( u32 i = 0; i < m_pFileTable->count; i++ ) in detail_GetFileIdFromTable()
|
| D | snd_InstancePool.cpp | 98 int count = 0; in CountImpl() local 101 ++count; in CountImpl() 103 return count; in CountImpl()
|
| D | snd_SoundPlayer.cpp | 365 void SoundPlayer::SetPlayableSoundCount( int count ) in SetPlayableSoundCount() argument 367 NW_ASSERT( count >= 0 ); in SetPlayableSoundCount() 370 NW_WARNING( count <= m_PlayableLimit, "playable sound count is over limit." ); in SetPlayableSoundCount() 371 count = ut::Clamp( count, 0, m_PlayableLimit ); in SetPlayableSoundCount() 373 m_PlayableCount = count; in SetPlayableSoundCount()
|
| D | snd_WaveSoundFile.cpp | 210 NW_ASSERT( fxSendCount <= sendValue.fxSend.count ); in GetSendValue() 212 int countSize = sendValue.fxSend.count > AUX_BUS_NUM ? in GetSendValue() 213 AUX_BUS_NUM : sendValue.fxSend.count; in GetSendValue() 316 NW_ASSERT( fxSendCount <= sendValue.fxSend.count ); in GetSendValue() 318 int countSize = sendValue.fxSend.count > AUX_BUS_NUM ? in GetSendValue() 319 AUX_BUS_NUM : sendValue.fxSend.count; in GetSendValue()
|
| /NW4C-1.3.3/sources/libraries/gfx/ |
| D | gfx_MemoryUtil.cpp | 69 LCLA count in copy_asm_declarations() 70 count SETA $val in copy_asm_declarations() 71 WHILE count >= 8 in copy_asm_declarations() 72 count SETA count-8 in copy_asm_declarations() 76 IF count == 2 in copy_asm_declarations() 79 IF count == 4 in copy_asm_declarations() 82 IF count == 6 in copy_asm_declarations()
|
| D | gfx_MeshRenderer.cpp | 479 int count = particleShape->GetVertexCapacity(); in RenderParticleShape() local 480 count *= particleShape->GetVertexAttributeDimension(index); in RenderParticleShape() 484 for (int i = 0; i < count; ++i) in RenderParticleShape() 492 int count = 1; in RenderParticleShape() local 493 count *= particleShape->GetVertexAttributeDimension(index); in RenderParticleShape() 496 for (int i = 0; i < count; ++i) in RenderParticleShape() 546 for (int count = 0; count < boneIndexCount; ++count) in SetMatrixPalette() local 548 s32 boneIndex = primitiveSet.GetBoneIndexTable(count); in SetMatrixPalette() 575 int index = count * UNIT_COUNT; in SetMatrixPalette() 577 if (count == 0) in SetMatrixPalette()
|
| /NW4C-1.3.3/include/nw/gfx/ |
| D | gfx_CommandUtil.h | 452 MakeCommandHeader(u32 address, int count, bool incremental, u8 byteEnable) in MakeCommandHeader() argument 465 NW_ASSERT(0 < count && count <= 256); in MakeCommandHeader() 474 result |= ut::internal::MakeBits(count - 1, SIZE_WIDTH, SIZE_SHIFT); in MakeCommandHeader() 481 #define NW_GFX_GPU_HEADER(addr, count, incremental, byteEnable) (u32)((incremental << 31) | (count… argument 661 NWSetUniform4fv(u32 index, int count, const f32* data) in NWSetUniform4fv() argument 680 NW_MINMAX_ASSERT(count, 1, 64); in NWSetUniform4fv() 712 switch (count) in NWSetUniform4fv() 801 NWSetUniform3fv(u32 index, int count, const f32* data) in NWSetUniform3fv() argument 821 NW_MINMAX_ASSERT(count, 1, 64); in NWSetUniform3fv() 853 switch (count) in NWSetUniform3fv() [all …]
|
| D | gfx_ShaderBinaryInfo.h | 321 s32 count = 0; in SearchBinadSymbolCount() local 334 ++count; in SearchBinadSymbolCount() 340 ++count; in SearchBinadSymbolCount() 346 ++count; in SearchBinadSymbolCount() 352 ++count; in SearchBinadSymbolCount() 359 return count; in SearchBinadSymbolCount() 417 s32 count = 0; in GetInputRegisterNum() local 423 ++count; in GetInputRegisterNum() 427 return count; in GetInputRegisterNum() 442 s32 count = 0; in GetOutputRegisterNum() local [all …]
|
| D | gfx_MemoryUtil.h | 61 #define INVOKE_SUB(count) \ in FastWordCopy() argument 62 if (size == count) \ in FastWordCopy() 64 return FastWordCopyAsm_##count(dst, src); \ in FastWordCopy()
|
| D | gfx_DisplayList.h | 118 void WriteData(const void* data, int count) in WriteData() argument 121 NW_ASSERT( count > 0 ); in WriteData() 124 int copyCount = count; in WriteData()
|
| /NW4C-1.3.3/sources/libraries/demo/ |
| D | demo_GraphicsDrawing.cpp | 250 …s32 count = this->BuildLine( p1, p2, m_LineWidth, &m_ShapePositionStreamArray[ m_ShapeVertexCount … in DrawLine() local 253 BuildColor( count, color, &m_ShapeColorStreamArray[ index ] ); in DrawLine() 255 m_ShapeVertexCount += count; in DrawLine() 264 s32 count = 0; in DrawRectangle() local 266 count += this->BuildLine( pos, math::VEC2( pos.x + size.x, pos.y ), in DrawRectangle() 267 m_LineWidth, &m_ShapePositionStreamArray[ m_ShapeVertexCount + count ] ); in DrawRectangle() 269 count += this->BuildLine( in DrawRectangle() 271 m_LineWidth, &m_ShapePositionStreamArray[ m_ShapeVertexCount + count ] ); in DrawRectangle() 273 count += this->BuildLine( pos + size, math::VEC2( pos.x, pos.y + size.y ), in DrawRectangle() 274 m_LineWidth, &m_ShapePositionStreamArray[ m_ShapeVertexCount + count ] ); in DrawRectangle() [all …]
|
| /NW4C-1.3.3/sources/libraries/lyt/ |
| D | lyt_Stopwatch.cpp | 99 int count = stopwatch.GetCount(); in Dump() 111 (total / count).GetMicroSeconds(), in Dump() 113 count, in Dump()
|
| /NW4C-1.3.3/tools/DccPlugin/3dsMax/x86/2010/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 21 for j = 1 to val.count do 38 ret += v.count 43 ret = val.count 65 if tokens.count != 2 do return false 88 for i = 1 to valTokens.count do 117 for i = 1 to list.count do 131 while p <= s.count do 133 while s[p] == " " and p < s.count do p += 1 -- �X�y�[�X���X�L�b�v 135 while s[ep] != "\"" and ep < s.count do ep += 1 -- �ŏ���"��T�� 137 while s[ep] != "\"" and ep <= s.count do ep += 1 -- �Ō��"��T�� [all …]
|
| /NW4C-1.3.3/tools/DccPlugin/3dsMax/x64/2010/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 21 for j = 1 to val.count do 38 ret += v.count 43 ret = val.count 65 if tokens.count != 2 do return false 88 for i = 1 to valTokens.count do 117 for i = 1 to list.count do 131 while p <= s.count do 133 while s[p] == " " and p < s.count do p += 1 -- �X�y�[�X���X�L�b�v 135 while s[ep] != "\"" and ep < s.count do ep += 1 -- �ŏ���"��T�� 137 while s[ep] != "\"" and ep <= s.count do ep += 1 -- �Ō��"��T�� [all …]
|
| /NW4C-1.3.3/tools/DccPlugin/3dsMax/x86/2009/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 21 for j = 1 to val.count do 38 ret += v.count 43 ret = val.count 65 if tokens.count != 2 do return false 88 for i = 1 to valTokens.count do 117 for i = 1 to list.count do 131 while p <= s.count do 133 while s[p] == " " and p < s.count do p += 1 -- �X�y�[�X���X�L�b�v 135 while s[ep] != "\"" and ep < s.count do ep += 1 -- �ŏ���"��T�� 137 while s[ep] != "\"" and ep <= s.count do ep += 1 -- �Ō��"��T�� [all …]
|
| /NW4C-1.3.3/tools/DccPlugin/3dsMax/x64/2009/Scripts/Startup/ |
| D | NW4C_utils.ms.inc | 21 for j = 1 to val.count do 38 ret += v.count 43 ret = val.count 65 if tokens.count != 2 do return false 88 for i = 1 to valTokens.count do 117 for i = 1 to list.count do 131 while p <= s.count do 133 while s[p] == " " and p < s.count do p += 1 -- �X�y�[�X���X�L�b�v 135 while s[ep] != "\"" and ep < s.count do ep += 1 -- �ŏ���"��T�� 137 while s[ep] != "\"" and ep <= s.count do ep += 1 -- �Ō��"��T�� [all …]
|
| /NW4C-1.3.3/include/nw/font/ |
| D | font_DispStringBuffer.h | 97 void SetDrawCharCount(u16 count) in SetDrawCharCount() 99 drawCharCount = count; in SetDrawCharCount()
|