Searched refs:hextable (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dhexdump.c72 static const char hextable[] = "0123456789abcdef"; local
73 out[0] = hextable[b>>4];
74 out[1] = hextable[b&0x0f];
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dconvert.c191 static const char hextable[] = "0123456789abcdef"; variable
218 *(p++) = hextable[v >> 4];
219 *(p++) = hextable[v & 0x0f];
466 if (BIO_write(bp, &hextable[v], 1) != 1) {
/external/chromium_org/tools/traceline/traceline/
H A Dmain.cc31 static const char hextable[] = "0123456789abcdef"; local
45 out.push_back(hextable[c >> 4]); out.push_back(hextable[c & 0xf]);
/external/chromium_org/components/crash/app/
H A Dbreakpad_linux.cc102 static const char hextable[] = "0123456789abcdef"; local
105 output[i] = hextable[v & 15];
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_lib.c3107 static const char hextable[] = "0123456789abcdef"; local
3118 *(out++) = (uint8_t)hextable[in[i] >> 4];
3119 *(out++) = (uint8_t)hextable[in[i] & 0xf];
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3con.c5968 static const char hextable[] = "0123456789abcdef"; local
5972 *(out++) = hextable[in[i] >> 4];
5973 *(out++) = hextable[in[i] & 15];

Completed in 341 milliseconds