Searched refs:hexbyte (Results 1 – 3 of 3) sorted by relevance
/external/boringssl/src/crypto/bio/ |
D | hexdump.c | 74 static void hexbyte(char *out, uint8_t b) { in hexbyte() function 103 hexbyte(&buf[0], ctx->n >> 24); in hexdump_write() 104 hexbyte(&buf[2], ctx->n >> 16); in hexdump_write() 105 hexbyte(&buf[4], ctx->n >> 8); in hexdump_write() 106 hexbyte(&buf[6], ctx->n); in hexdump_write() 113 hexbyte(buf, data[i]); in hexdump_write()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/bio/ |
D | hexdump.c | 74 static void hexbyte(char *out, uint8_t b) { in hexbyte() function 103 hexbyte(&buf[0], ctx->n >> 24); in hexdump_write() 104 hexbyte(&buf[2], ctx->n >> 16); in hexdump_write() 105 hexbyte(&buf[4], ctx->n >> 8); in hexdump_write() 106 hexbyte(&buf[6], ctx->n); in hexdump_write() 113 hexbyte(buf, data[i]); in hexdump_write()
|
/external/google-breakpad/src/processor/ |
D | minidump.cc | 2015 char hexbyte[3]; in code_identifier() local 2016 snprintf(hexbyte, sizeof(hexbyte), "%02x", in code_identifier() 2018 identifier += hexbyte; in code_identifier()
|