Lines Matching refs:keyIdx

60         static const KeyType*   GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx )  in GetKey()  argument
61 { return &(pSegment->fv64.m_KeyValue[ keyIdx ]); } in GetKey()
76 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
77 { return &(pSegment->fv32.m_KeyValue[ keyIdx ]); } in GetKey()
104 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
105 { return &(pSegment->fvss128.m_KeyValue[ keyIdx ]); } in GetKey()
122 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
123 { return &(pSegment->fvss64.m_KeyValue[ keyIdx ]); } in GetKey()
152 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
153 { return &(pSegment->fvss48.m_KeyValue[ keyIdx ]); } in GetKey()
183 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
184 { return &(pSegment->fvs96.m_KeyValue[ keyIdx ]); } in GetKey()
200 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
201 { return &(pSegment->fvs48.m_KeyValue[ keyIdx ]); } in GetKey()
229 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
230 { return &(pSegment->fvs32.m_KeyValue[ keyIdx ]); } in GetKey()
259 static const KeyType* GetKey( const ResIntCurveFVData* pCurve, uint keyIdx ) in GetKey() argument
260 { return &(pCurve->fv64.m_KeyValue[ keyIdx ]); } in GetKey()
275 static const KeyType* GetKey( const ResIntCurveFVData* pCurve, uint keyIdx ) in GetKey() argument
276 { return &(pCurve->fv32.m_KeyValue[ keyIdx ]); } in GetKey()
295 static const KeyType* GetKey( const ResIntCurveFVData* pCurve, uint keyIdx ) in GetKey() argument
296 { return &(pCurve->fv16.m_KeyValue[ keyIdx ]); } in GetKey()
443 …uint keyIdx = static_cast<uint>( frame * pSegment->m_InvDuration * (pSegment->m_NumFrameValues - 1… in GetKeyFV_() local
444 NW_ASSERT( keyIdx <= pSegment->m_NumFrameValues - 1U ); in GetKeyFV_()
446 const typename Traits::KeyType* pKey = Traits::GetKey(pSegment, keyIdx); in GetKeyFV_()