Home
last modified time | relevance | path

Searched refs:to_index (Results 1 – 5 of 5) sorted by relevance

/external/skia/modules/skottie/src/animator/
DShapeKeyframeAnimator.cpp131 to_index = kFloatsPerVertex * to_vertex; in operator SkPath() local
135 p1 = SkPoint{ (*this)[ to_index + kX_Index], in operator SkPath()
136 (*this)[ to_index + kY_Index] }, in operator SkPath()
139 c1 = SkPoint{ (*this)[ to_index + kInX_Index], in operator SkPath()
140 (*this)[ to_index + kInY_Index] } + p1; in operator SkPath()
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_tuple_params.py123 to_index = map_to_index(params)
129 if n.type == token.NAME and n.value in to_index:
130 subscripts = [c.clone() for c in to_index[n.value]]
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_tuple_params.py123 to_index = map_to_index(params)
129 if n.type == token.NAME and n.value in to_index:
130 subscripts = [c.clone() for c in to_index[n.value]]
/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/
Dframe_buffer_utils.cc266 int to_index = GetOrientationIndex(to_orientation); in GetOrientParams() local
270 TFLITE_DCHECK(from_index > -1 && to_index > -1); in GetOrientParams()
272 if ((from_index < kExifGroupSize && to_index < kExifGroupSize) || in GetOrientParams()
273 (from_index >= kExifGroupSize && to_index >= kExifGroupSize)) { in GetOrientParams()
279 angle = (kExifGroupSize - (from_index - to_index)) % kExifGroupSize * 90; in GetOrientParams()
283 int to_index_mod = to_index % kExifGroupSize; in GetOrientParams()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc2963 tensorflow::Safe_PyObjectPtr to_index( local
2966 PyTuple_Pack(2, from_index.get(), to_index.get()));