Searched refs:HEX_DIGITS (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec_print.c123 static const char *HEX_DIGITS = "0123456789ABCDEF"; variable
155 *(p++) = HEX_DIGITS[v >> 4];
156 *(p++) = HEX_DIGITS[v & 0x0F];
/freebsd-11-stable/contrib/groff/src/utils/pfbtops/
H A Dpfbtops.c38 #define HEX_DIGITS "0123456789abcdef" macro
160 putchar(HEX_DIGITS[(c >> 4) & 0xf]);
161 putchar(HEX_DIGITS[c & 0xf]);

Completed in 73 milliseconds