Lines Matching refs:keyIdx
44 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
45 { return &(pSegment->fv64.m_KeyValue[ keyIdx ]); } in GetKey()
60 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
61 { return &(pSegment->fv32.m_KeyValue[ keyIdx ]); } in GetKey()
88 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
89 { return &(pSegment->fvss128.m_KeyValue[ keyIdx ]); } in GetKey()
106 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
107 { return &(pSegment->fvss64.m_KeyValue[ keyIdx ]); } in GetKey()
136 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
137 { return &(pSegment->fvss48.m_KeyValue[ keyIdx ]); } in GetKey()
167 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
168 { return &(pSegment->fvs96.m_KeyValue[ keyIdx ]); } in GetKey()
184 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
185 { return &(pSegment->fvs48.m_KeyValue[ keyIdx ]); } in GetKey()
213 static const KeyType* GetKey( const ResFloatSegmentFVData* pSegment, uint keyIdx ) in GetKey() argument
214 { return &(pSegment->fvs32.m_KeyValue[ keyIdx ]); } in GetKey()
243 static const KeyType* GetKey( const ResIntCurveFVData* pCurve, uint keyIdx ) in GetKey() argument
244 { return &(pCurve->fv64.m_KeyValue[ keyIdx ]); } in GetKey()
259 static const KeyType* GetKey( const ResIntCurveFVData* pCurve, uint keyIdx ) in GetKey() argument
260 { return &(pCurve->fv32.m_KeyValue[ keyIdx ]); } in GetKey()
279 static const KeyType* GetKey( const ResIntCurveFVData* pCurve, uint keyIdx ) in GetKey() argument
280 { return &(pCurve->fv16.m_KeyValue[ keyIdx ]); } in GetKey()
425 …uint keyIdx = static_cast<uint>( frame * pSegment->m_InvDuration * (pSegment->m_NumFrameValues - 1… in GetKeyFV_() local
426 NW_ASSERT( keyIdx <= pSegment->m_NumFrameValues - 1U ); in GetKeyFV_()
428 const typename Traits::KeyType* pKey = Traits::GetKey(pSegment, keyIdx); in GetKeyFV_()