Lines Matching refs:count

120         COUNT_TYPE count;  member
159 if ( index >= count ) return NULL; in GetReferedItem()
164 if ( index >= count ) return NULL; in GetReferedItem()
170 for ( u32 i = 0; i < count; i++ ) in FindReferedItemBy()
185 NW_ASSERT( index < count ); in GetReferedItem()
190 for ( u32 i = 0; i < count; i++ ) in GetReferedItemBy()
201 NW_ASSERT( index < count ); in GetReferedItemSize()
216 const void* origin, int index, u16 count ) const in GetReferedItemByIndex()
218 NW_UNUSED_VARIABLE(count); in GetReferedItemByIndex()
219 NW_ASSERT( index < count ); in GetReferedItemByIndex()
223 u16 typeId, u16 count ) const in GetReference()
225 for ( int i = 0; i < count; i++ ) in GetReference()
234 const void* GetReferedItem( const void* origin, u16 typeId, u16 count ) const in GetReferedItem()
236 const ReferenceWithSize* ref = GetReference( typeId, count ); in GetReferedItem()
241 u32 GetReferedItemSize( u16 typeId, u16 count ) const in GetReferedItemSize()
243 const ReferenceWithSize* ref = GetReference( typeId, count ); in GetReferedItemSize()
247 u32 GetReferedItemOffset( u16 typeId, u16 count ) const in GetReferedItemOffset()
249 const ReferenceWithSize* ref = GetReference( typeId, count ); in GetReferedItemOffset()
288 u32 count = GetTrueCount( bitNumber ); in GetValue() local
291 if ( count == 0 ) return false; in GetValue()
294 ut::AddOffsetToPtr( this, ( count * sizeof(nw::ut::ResU32) ) ) ); in GetValue()
299 u32 count = GetTrueCount( bitNumber ); in GetValueF32() local
300 if ( count == 0 ) return false; in GetValueF32()
302 ut::AddOffsetToPtr( this, ( count * sizeof(nw::ut::ResF32) ) ) ); in GetValueF32()
326 int count = 0; in GetTrueCount() local
331 count++; in GetTrueCount()
341 return count; in GetTrueCount()
419 if ( index >= table.count ) in GetWaveId()
425 NW_INLINE u32 GetCount() const { return table.count; } in GetCount()
560 int count = 0; in GetPercentage() local
563 count += m_LoadCount[ i ]; in GetPercentage()
565 f32 ret = 100.f * count / m_Count; in GetPercentage()