Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/strings/
Dstr_util.cc75 inline bool is_octal_digit(unsigned char c) { return c >= '0' && c <= '7'; } in is_octal_digit() function
169 if (p < last_byte && is_octal_digit(p[1])) ch = ch * 8 + *++p - '0'; in CUnescapeInternal()
170 if (p < last_byte && is_octal_digit(p[1])) in CUnescapeInternal()