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

/external/boringssl/src/tool/
H A Drand.cc74 static const char hextable[] = "0123456789abdef"; local
76 hex_buf[i*2] = hextable[buf[i] >> 4];
77 hex_buf[i*2 + 1] = hextable[buf[i] & 0xf];
/external/boringssl/src/crypto/bio/
H A Dhexdump.c73 static const char hextable[] = "0123456789abcdef"; local
74 out[0] = hextable[b>>4];
75 out[1] = hextable[b&0x0f];
/external/boringssl/src/crypto/bn/
H A Dconvert.c192 static const char hextable[] = "0123456789abcdef"; variable
219 *(p++) = hextable[v >> 4];
220 *(p++) = hextable[v & 0x0f];
464 if (BIO_write(bp, &hextable[v], 1) != 1) {
/external/boringssl/src/ssl/
H A Dssl_lib.c2559 static const char hextable[] = "0123456789abcdef"; local
2568 *(out++) = (uint8_t)hextable[in[i] >> 4];
2569 *(out++) = (uint8_t)hextable[in[i] & 0xf];

Completed in 129 milliseconds