Searched refs:hex_digit_to_int (Results 1 – 15 of 15) 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()
45 inline unsigned int hex_digit_to_int(char c) { in hex_digit_to_int() function163 ch = (ch << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()199 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in CUnescapeInternal()239 uint32_t newrune = (rune << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
50 inline unsigned int hex_digit_to_int(char c) { in hex_digit_to_int() function171 ch = (ch << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()207 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in CUnescapeInternal()247 uint32_t newrune = (rune << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
48 inline unsigned int hex_digit_to_int(char c) { in hex_digit_to_int() function169 ch = (ch << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()205 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in CUnescapeInternal()245 uint32_t newrune = (rune << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
494 code = (code << 4) + hex_digit_to_int(p_.data()[i]); in ParseUnicodeEscape()515 low_code = (low_code << 4) + hex_digit_to_int(p_.data()[i]); in ParseUnicodeEscape()
368 ch = (ch << 4) + hex_digit_to_int(*++p); in UnescapeCEscapeSequences()384 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p. in UnescapeCEscapeSequences()403 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