Home
last modified time | relevance | path

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

/coreutils/src/
Dbasenc.c547 static signed char const base16_to_int[256] = { variable
617 return ch < sizeof base16_to_int && 0 <= base16_to_int[ch]; in isubase16()
676 if (sizeof base16_to_int <= c || base16_to_int[c] < 0) in base16_decode_ctx()
683 nibble = base16_to_int[c]; in base16_decode_ctx()
687 *out++ = (nibble << 4) + base16_to_int[c]; in base16_decode_ctx()