Searched refs:hexdigits (Results 1 - 18 of 18) sorted by relevance

/external/fonttools/Lib/fontTools/misc/
H A DtextTools.py29 h = string.hexdigits
H A DxmlWriter.py180 h = string.hexdigits
/external/fonttools/Tools/fontTools/misc/
H A DtextTools.py29 h = string.hexdigits
H A DxmlWriter.py180 h = string.hexdigits
/external/chromium_org/third_party/cython/src/Cython/Debugger/
H A Dlibpython.py93 hexdigits = "0123456789abcdef" variable
1096 out.write(hexdigits[(ord(byte) & 0xf0) >> 4])
1097 out.write(hexdigits[ord(byte) & 0xf])
1252 out.write(hexdigits[(ord(ch) >> 4) & 0x000F])
1253 out.write(hexdigits[ord(ch) & 0x000F])
1297 out.write(hexdigits[(code >> 4) & 0x000F])
1298 out.write(hexdigits[code & 0x000F])
1302 out.write(hexdigits[(code >> 28) & 0x0000000F])
1303 out.write(hexdigits[(code >> 24) & 0x0000000F])
1304 out.write(hexdigits[(cod
[all...]
/external/qemu/telephony/
H A Dgsm.c163 static const char hexdigits[] = "0123456789abcdef"; local
165 hex[0] = hexdigits[(val >> 4) & 15];
166 hex[1] = hexdigits[val & 15];
H A Dandroid_modem.c92 const char* hexdigits = "0123456789abcdef"; local
112 p[2] = hexdigits[ (c) >> 4 ];
113 p[3] = hexdigits[ (c) & 15 ];
/external/chromium_org/testing/
H A Dgenerate_gmock_mutant.py348 it = string.hexdigits[1:n + 1]
/external/qemu/android/utils/
H A Dstralloc.c280 const char hexdigits[16] = "0123456789abcdef"; local
288 s->s[s->n+nn] = hexdigits[value & 15];
/external/lldb/examples/python/
H A Dgdbremote.py261 return str[0] in string.hexdigits and str[1] in string.hexdigits;
347 if self.str and len(self.str) >= 2 and self.str[0] in string.hexdigits and self.str[1] in string.hexdigits:
404 while n < str_len and self.str[n] in string.hexdigits:
411 if self.str[i] not in string.hexdigits:
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc697 static const char *hexdigits = "0123456789abcdef"; local
701 *p-- = hexdigits[i & 15]; // mod by 16
708 static const char *hexdigits = "0123456789abcdef"; local
715 buffer[i] = hexdigits[value & 0xf];
717 buffer[i] = hexdigits[uint32(value) & 0xf];
/external/chromium_org/third_party/sqlite/src/src/
H A Dfunc.c825 static const char hexdigits[] = { variable
859 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
860 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
923 *(z++) = hexdigits[(c>>4)&0xf];
924 *(z++) = hexdigits[c&0xf];
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc659 static const char *hexdigits = "0123456789abcdef"; local
663 *p-- = hexdigits[i & 15]; // mod by 16
670 static const char *hexdigits = "0123456789abcdef"; local
673 buffer[i] = hexdigits[uint32(value) & 0xf];
/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/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c82524 static const char hexdigits[] = { local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c92577 static const char hexdigits[] = { local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c92597 static const char hexdigits[] = { local
[all...]
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 1256 milliseconds