Home
last modified time | relevance | path

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

/external/dropbear/libtommath/tombc/
Dgrammar.txt32 hexdigits := hexdigits hexdigit | hexdigit
/external/qemu/android/utils/
Dstralloc.c280 const char hexdigits[16] = "0123456789abcdef"; in stralloc_add_hex() local
288 s->s[s->n+nn] = hexdigits[value & 15]; in stralloc_add_hex()
/external/protobuf/src/google/protobuf/stubs/
Dstrutil.cc659 static const char *hexdigits = "0123456789abcdef"; in FastHexToBuffer() local
663 *p-- = hexdigits[i & 15]; // mod by 16 in FastHexToBuffer()
670 static const char *hexdigits = "0123456789abcdef"; in InternalFastHexToBuffer() local
673 buffer[i] = hexdigits[uint32(value) & 0xf]; in InternalFastHexToBuffer()
/external/chromium/testing/
Dgenerate_gmock_mutant.py347 it = string.hexdigits[1:n + 1]
/external/qemu/telephony/
Dgsm.c163 static const char hexdigits[] = "0123456789abcdef"; in gsm_hex_from_byte() local
165 hex[0] = hexdigits[(val >> 4) & 15]; in gsm_hex_from_byte()
166 hex[1] = hexdigits[val & 15]; in gsm_hex_from_byte()
Dandroid_modem.c92 const char* hexdigits = "0123456789abcdef"; in quote() local
112 p[2] = hexdigits[ (c) >> 4 ]; in quote()
113 p[3] = hexdigits[ (c) & 15 ]; in quote()
/external/dbus/dbus/
Ddbus-string.c2518 const char hexdigits[16] = { in _dbus_string_append_byte_as_hex() local
2524 hexdigits[(byte >> 4)])) in _dbus_string_append_byte_as_hex()
2528 hexdigits[(byte & 0x0f)])) in _dbus_string_append_byte_as_hex()
/external/sqlite/dist/
Dsqlite3.c86980 static const char hexdigits[] = {
87014 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
87015 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
87078 *(z++) = hexdigits[(c>>4)&0xf];
87079 *(z++) = hexdigits[c&0xf];
/external/sqlite/dist/orig/
Dsqlite3.c86969 static const char hexdigits[] = {
87003 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
87004 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
87067 *(z++) = hexdigits[(c>>4)&0xf];
87068 *(z++) = hexdigits[c&0xf];