Home
last modified time | relevance | path

Searched refs:hexdig (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/x509/
Da_strex.c228 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local
235 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump()
236 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()
/external/libweave/third_party/chromium/base/third_party/dmg_fp/
Ddtoa.cc1503 static unsigned char hexdig[256]; variable
1525 htinit(hexdig, USC "0123456789", 0x10); in hexdig_init()
1526 htinit(hexdig, USC "abcdef", 0x10 + 10); in hexdig_init()
1527 htinit(hexdig, USC "ABCDEF", 0x10 + 10); in hexdig_init()
1575 if (!hexdig['0'])
1587 c1 = hexdig[c];
1796 if (!hexdig['0'])
1807 if (hexdig[*s])
1822 if (!hexdig[*s])
1826 if (hexdig[*s])
[all …]
/external/boringssl/src/crypto/x509v3/
Dv3_utl.c381 static const char hexdig[] = "0123456789ABCDEF"; in hex_to_string() local
389 *q++ = hexdig[(*p >> 4) & 0xf]; in hex_to_string()
390 *q++ = hexdig[*p & 0xf]; in hex_to_string()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
Dtest_key.py142 hexdig, base64 = k.compute_md5(sfp)
143 bad_md5 = (hexdig, base64[3:])