Searched refs:hex_digit_to_int (Results 1 – 5 of 5) sorted by relevance
82 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function196 ch = (ch << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
421 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()
373 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()
96 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function
2709 hex_digit_to_int(char c) in hex_digit_to_int() function2744 top = hex_digit_to_int(hex[i]); in bytearray_fromhex()2745 bot = hex_digit_to_int(hex[i+1]); in bytearray_fromhex()