Home
last modified time | relevance | path

Searched refs:dehex (Results 1 – 4 of 4) sorted by relevance

/third_party/grpc/src/core/lib/slice/
Dpercent_encoding.cc82 static uint8_t dehex(uint8_t c) { in dehex() function
119 *q++ = static_cast<uint8_t>(dehex(p[1]) << 4) | (dehex(p[2])); in grpc_strict_percent_decode_slice()
160 *q++ = static_cast<uint8_t>(dehex(p[1]) << 4) | (dehex(p[2])); in grpc_permissive_percent_decode_slice()
/third_party/toybox/toys/other/
Dxxd.c98 static int dehex(char ch) in dehex() function
140 if ((n1 = n2 = dehex(fgetc(fp))) < 0 || (n2 = dehex(fgetc(fp))) < 0) { in do_xxd_reverse()
/third_party/pulseaudio/src/modules/
Dudev-util.c59 static int dehex(char x) { in dehex() function
109 c = dehex(*f); in proplist_sets_unescape()
122 int d = dehex(*f); in proplist_sets_unescape()
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestime.c71 static Uint8 dehex(char c) in dehex() function
84 return (dehex(c1) << 4) | dehex(c2); in dehex2()
92 Uint8 c = dehex(*cp); in validate_hex()