Home
last modified time | relevance | path

Searched refs:hexchars (Results 1 - 4 of 4) sorted by relevance

/third_party/f2fs-tools/tools/
H A Df2fscrypt.c164 static const unsigned char *hexchars = (const unsigned char *) "0123456789abcdef"; variable
219 h = memchr(hexchars, hex[x], hexchars_size); in hex2byte()
222 l = memchr(hexchars, hex[x + 1], hexchars_size); in hex2byte()
227 bytes[x >> 1] = (((unsigned char)(h - hexchars) << 4) + in hex2byte()
228 (unsigned char)(l - hexchars)); in hex2byte()
380 h = memchr(hexchars, *cp++, hexchars_size); in parse_salt()
381 l = memchr(hexchars, *cp++, hexchars_size); in parse_salt()
385 (((unsigned char)(h - hexchars) << 4) + in parse_salt()
386 (unsigned char)(l - hexchars)); in parse_salt()
/third_party/lwip/src/netif/ppp/
H A Dutils.c148 static char hexchars[] = "0123456789abcdef"; in ppp_vslprintf() local
316 OUTCHAR(hexchars[c >> 4]); in ppp_vslprintf()
317 OUTCHAR(hexchars[c & 0xf]); in ppp_vslprintf()
348 OUTCHAR(hexchars[(c >> 4) & 0xf]); in ppp_vslprintf()
349 OUTCHAR(hexchars[c & 0xf]); in ppp_vslprintf()
363 *--str = hexchars[val % base]; in ppp_vslprintf()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dnumbers.h233 auto hexchars = _mm_shuffle_epi8(kHexDigits, m); // hex chars
234 _mm_storeu_si128(reinterpret_cast<__m128i*>(out), hexchars);
/third_party/python/Modules/
H A D_tkinter.c896 const char *hexchars; in asBignumObj() local
903 hexchars = PyUnicode_AsUTF8(hexstr); in asBignumObj()
904 if (hexchars == NULL) { in asBignumObj()
908 hexchars += neg + 2; /* skip sign and "0x" */ in asBignumObj()
910 if (mp_read_radix(&bigValue, hexchars, 16) != MP_OKAY) { in asBignumObj()

Completed in 8 milliseconds