Searched defs:hexdigits (Results 1 - 13 of 13) sorted by relevance

/external/python/cpython2/Lib/email/
H A Dquoprimime.py48 from string import hexdigits namespace
303 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
/external/python/cpython2/Lib/
H A Dstringold.py17 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
H A Dstring.py15 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
/external/python/cpython2/Python/
H A Dcodecs.c825 static Py_UNICODE hexdigits[] = { variable
875 *outp++ = hexdigits[(c>>28)&0xf];
876 *outp++ = hexdigits[(c>>24)&0xf];
877 *outp++ = hexdigits[(c>>20)&0xf];
878 *outp++ = hexdigits[(c>>16)&0xf];
879 *outp++ = hexdigits[(c>>12)&0xf];
880 *outp++ = hexdigits[(c>>8)&0xf];
886 *outp++ = hexdigits[(c>>12)&0xf];
887 *outp++ = hexdigits[(c>>8)&0xf];
891 *outp++ = hexdigits[(
[all...]
/external/libpng/contrib/libtests/
H A Dtarith.c282 static const char hexdigits[16] = "0123456789ABCDEF"; variable
348 co->number[c.cnumber++] = hexdigits[(ch >> 4) & 0xf];
349 co->number[c.cnumber++] = hexdigits[ch & 0xf];
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc894 static const char *hexdigits = "0123456789abcdef"; local
898 *p-- = hexdigits[i & 15]; // mod by 16
905 static const char *hexdigits = "0123456789abcdef"; local
912 buffer[i] = hexdigits[value & 0xf];
914 buffer[i] = hexdigits[uint32(value) & 0xf];
1410 static const char hexdigits[] = "0123456789abcdef"; local
1412 *--writer = hexdigits[value & 0xF];
/external/python/cpython2/Objects/
H A Dbytearrayobject.c923 static const char *hexdigits = "0123456789abcdef"; local
986 *p++ = hexdigits[(c & 0xf0) >> 4];
987 *p++ = hexdigits[c & 0xf];
/external/sqlite/dist/orig/
H A Dsqlite3.c106705 static const char hexdigits[] = { local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c106705 static const char hexdigits[] = { local
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 893 milliseconds