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

/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/testing/
H A Dgenerate_gmock_mutant.py347 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/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/dbus/dbus/
H A Ddbus-string.c2518 const char hexdigits[16] = { local
2524 hexdigits[(byte >> 4)]))
2528 hexdigits[(byte & 0x0f)]))
/external/sqlite/dist/orig/
H A Dsqlite3.c86969 static const char hexdigits[] = { local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c86980 static const char hexdigits[] = { local
[all...]

Completed in 511 milliseconds