Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/strings/
Dstr_util.cc82 inline int hex_digit_to_int(char c) { in hex_digit_to_int() function
196 ch = (ch << 4) + hex_digit_to_int(*++p); in CUnescapeInternal()
/external/protobuf/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()
/external/protobuf/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
/external/python/cpython2/Objects/
Dbytearrayobject.c2709 hex_digit_to_int(char c) in hex_digit_to_int() function
2744 top = hex_digit_to_int(hex[i]); in bytearray_fromhex()
2745 bot = hex_digit_to_int(hex[i+1]); in bytearray_fromhex()