Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Djson_stream_parser.cc421 code = (code << 4) + hex_digit_to_int(p_.data()[i]); in ParseUnicodeEscape()
440 low_code = (low_code << 4) + hex_digit_to_int(p_.data()[i]); in ParseUnicodeEscape()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dstrutil.cc373 ch = (ch << 4) + hex_digit_to_int(*++p); in UnescapeCEscapeSequences()
387 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in UnescapeCEscapeSequences()
406 char32 newrune = (rune << 4) + hex_digit_to_int(*++p); in UnescapeCEscapeSequences()
Dstrutil.h96 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function