Searched refs:hex_digit_to_int (Results 1 – 5 of 5) sorted by relevance
45 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function160 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()
479 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()
371 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()
99 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function