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.c204 static const char hextable[] = "0123456789abcdef"; variable
231 *(p++) = hextable[v >> 4];
232 *(p++) = hextable[v & 0x0f];
488 if (BIO_write(bp, &hextable[v], 1) != 1) {
/external/boringssl/src/ssl/
H A Dssl_lib.c2185 static const char hextable[] = "0123456789abcdef"; local
2194 *(out++) = (uint8_t)hextable[in[i] >> 4];
2195 *(out++) = (uint8_t)hextable[in[i] & 0xf];

Completed in 120 milliseconds