Home
last modified time | relevance | path

Searched refs:hex_digit_to_int (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Descaping.cc45 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function
160 ch = (ch << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
194 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in CUnescapeInternal()
232 uint32_t newrune = (rune << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
/third_party/abseil-cpp/absl/strings/
Descaping.cc45 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function
160 ch = (ch << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
194 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in CUnescapeInternal()
232 uint32_t newrune = (rune << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
/third_party/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.cc479 code = (code << 4) + hex_digit_to_int(p_.data()[i]); in ParseUnicodeEscape()
498 low_code = (low_code << 4) + hex_digit_to_int(p_.data()[i]); in ParseUnicodeEscape()
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil.cc371 ch = (ch << 4) + hex_digit_to_int(*++p); in UnescapeCEscapeSequences()
385 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in UnescapeCEscapeSequences()
404 char32 newrune = (rune << 4) + hex_digit_to_int(*++p); in UnescapeCEscapeSequences()
Dstrutil.h99 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function