Home
last modified time | relevance | path

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

/coreutils/src/
Decho.c93 hextobin (unsigned char c) in hextobin() function
225 c = hextobin (ch); in main()
230 c = c * 16 + hextobin (ch); in main()
Dprintf.c70 #define hextobin(c) ((c) >= 'a' && (c) <= 'f' ? (c) - 'a' + 10 : \ macro
267 esc_value = esc_value * 16 + hextobin (*p); in print_esc()
297 uni_value = uni_value * 16 + hextobin (*p); in print_esc()
Dstat.c172 #define hextobin(c) ((c) >= 'a' && (c) <= 'f' ? (c) - 'a' + 10 : \ macro
1220 int esc_value = hextobin (b[1]); /* Value of \xhh escape. */ in print_it()
1227 esc_value = esc_value * 16 + hextobin (*b); in print_it()