Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/stubs/
Dstrutil.cc284 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function
357 ch = (ch << 4) + hex_digit_to_int(*++p); in UnescapeCEscapeSequences()
371 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in UnescapeCEscapeSequences()
390 char32 newrune = (rune << 4) + hex_digit_to_int(*++p); in UnescapeCEscapeSequences()