Home
last modified time | relevance | path

Searched refs:off_index (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dfileobject.c771 PyObject *offobj, *off_index; in file_seek() local
779 off_index = PyNumber_Index(offobj); in file_seek()
780 if (!off_index) { in file_seek()
789 off_index = offobj; in file_seek()
793 offset = PyInt_AsLong(off_index); in file_seek()
795 offset = PyLong_Check(off_index) ? in file_seek()
796 PyLong_AsLongLong(off_index) : PyInt_AsLong(off_index); in file_seek()
798 Py_DECREF(off_index); in file_seek()
/external/libaom/libaom/av1/encoder/
Dencodeframe.c201 const int off_index = (bd - 8) >> 1; in av1_high_get_sby_perpixel_variance() local
207 CONVERT_TO_BYTEPTR(high_var_offs[off_index]), 0, &sse); in av1_high_get_sby_perpixel_variance()