Home
last modified time | relevance | path

Searched refs:hexbyte (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/quiche/deps/boringssl/src/crypto/bio/
Dhexdump.c74 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/boringssl/src/crypto/bio/
Dhexdump.c74 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/
Dminidump.cc2015 char hexbyte[3]; in code_identifier() local
2016 snprintf(hexbyte, sizeof(hexbyte), "%02x", in code_identifier()
2018 identifier += hexbyte; in code_identifier()