Lines Matching refs:count

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()
221 u16 typeId, u16 count ) const in GetReference()
223 for ( int i = 0; i < count; i++ ) in GetReference()
232 const void* GetReferedItem( const void* origin, u16 typeId, u16 count ) const in GetReferedItem()
234 const ReferenceWithSize* ref = GetReference( typeId, count ); in GetReferedItem()
239 u32 GetReferedItemSize( u16 typeId, u16 count ) const in GetReferedItemSize()
241 const ReferenceWithSize* ref = GetReference( typeId, count ); in GetReferedItemSize()
245 u32 GetReferedItemOffset( u16 typeId, u16 count ) const in GetReferedItemOffset()
247 const ReferenceWithSize* ref = GetReference( typeId, count ); in GetReferedItemOffset()
286 u32 count = GetTrueCount( bitNumber ); in GetValue() local
289 if ( count == 0 ) return false; in GetValue()
292 ut::AddOffsetToPtr( this, ( count * sizeof(nw::ut::ResU32) ) ) ); in GetValue()
297 u32 count = GetTrueCount( bitNumber ); in GetValueF32() local
298 if ( count == 0 ) return false; in GetValueF32()
300 ut::AddOffsetToPtr( this, ( count * sizeof(nw::ut::ResF32) ) ) ); in GetValueF32()
324 int count = 0; in GetTrueCount() local
329 count++; in GetTrueCount()
339 return count; in GetTrueCount()
417 NW_ASSERT( index < table.count ); in GetWaveId()
420 NW_INLINE u32 GetCount() const { return table.count; } in GetCount()
555 int count = 0; in GetPercentage() local
558 count += m_LoadCount[ i ]; in GetPercentage()
560 f32 ret = 100.f * count / m_Count; in GetPercentage()