Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dunicodeobject.c2292 int iorder[] = {0, 1, 2, 3}; in PyUnicode_DecodeUTF32Stateful() local
2294 int iorder[] = {3, 2, 1, 0}; in PyUnicode_DecodeUTF32Stateful() local
2311 const Py_UCS4 bom = ((unsigned int)q[iorder[3]] << 24) | (q[iorder[2]] << 16) | in PyUnicode_DecodeUTF32Stateful()
2312 (q[iorder[1]] << 8) | q[iorder[0]]; in PyUnicode_DecodeUTF32Stateful()
2337 iorder[0] = 0; in PyUnicode_DecodeUTF32Stateful()
2338 iorder[1] = 1; in PyUnicode_DecodeUTF32Stateful()
2339 iorder[2] = 2; in PyUnicode_DecodeUTF32Stateful()
2340 iorder[3] = 3; in PyUnicode_DecodeUTF32Stateful()
2344 iorder[0] = 3; in PyUnicode_DecodeUTF32Stateful()
2345 iorder[1] = 2; in PyUnicode_DecodeUTF32Stateful()
[all …]