HomeSort by relevance Sort by last modified time
    Searched refs:Py_hexdigits (Results 1 - 10 of 10) sorted by null

  /external/python/cpython3/Python/
pystrhex.c 33 retbuf[j++] = Py_hexdigits[c];
35 retbuf[j++] = Py_hexdigits[c];
codecs.c 15 const char *Py_hexdigits = "0123456789abcdef";
891 outp[2] = Py_hexdigits[(c>>4)&0xf];
892 outp[3] = Py_hexdigits[c&0xf];
945 *outp++ = Py_hexdigits[(c>>28)&0xf];
946 *outp++ = Py_hexdigits[(c>>24)&0xf];
947 *outp++ = Py_hexdigits[(c>>20)&0xf];
948 *outp++ = Py_hexdigits[(c>>16)&0xf];
949 *outp++ = Py_hexdigits[(c>>12)&0xf];
950 *outp++ = Py_hexdigits[(c>>8)&0xf];
954 *outp++ = Py_hexdigits[(c>>12)&0xf]
    [all...]
traceback.c 561 *ptr = Py_hexdigits[value & 15];
  /external/python/cpython3/Include/
codecs.h 234 PyAPI_DATA(const char *) Py_hexdigits;
  /external/python/cpython3/Modules/
_json.c 144 output[chars++] = Py_hexdigits[(v >> 12) & 0xf];
145 output[chars++] = Py_hexdigits[(v >> 8) & 0xf];
146 output[chars++] = Py_hexdigits[(v >> 4) & 0xf];
147 output[chars++] = Py_hexdigits[(v ) & 0xf];
152 output[chars++] = Py_hexdigits[(c >> 12) & 0xf];
153 output[chars++] = Py_hexdigits[(c >> 8) & 0xf];
154 output[chars++] = Py_hexdigits[(c >> 4) & 0xf];
155 output[chars++] = Py_hexdigits[(c ) & 0xf];
294 output[chars++] = Py_hexdigits[(c >> 4) & 0xf]; \
295 output[chars++] = Py_hexdigits[(c ) & 0xf];
    [all...]
_pickle.c     [all...]
_posixsubprocess.c 525 *--cur = Py_hexdigits[saved_errno % 16];
  /external/python/cpython3/Objects/
unicodeobject.c 619 *str++ = Py_hexdigits[(ch>>28)&0xf];
620 *str++ = Py_hexdigits[(ch>>24)&0xf];
621 *str++ = Py_hexdigits[(ch>>20)&0xf];
622 *str++ = Py_hexdigits[(ch>>16)&0xf];
623 *str++ = Py_hexdigits[(ch>>12)&0xf];
624 *str++ = Py_hexdigits[(ch>>8)&0xf];
628 *str++ = Py_hexdigits[(ch>>12)&0xf];
629 *str++ = Py_hexdigits[(ch>>8)&0xf];
633 *str++ = Py_hexdigits[(ch>>4)&0xf];
634 *str++ = Py_hexdigits[ch&0xf]
    [all...]
bytesobject.c     [all...]
floatobject.c 1084 return Py_hexdigits[x];
    [all...]

Completed in 1085 milliseconds