Searched refs:digits (Results 1 – 7 of 7) sorted by relevance
224 byte_to_hex(char *digits, uint8_t byte) in byte_to_hex() argument229 digits[0] = 'a' + nybbel-10; in byte_to_hex()231 digits[0] = '0' + nybbel; in byte_to_hex()235 digits[1] = 'a' + nybbel-10; in byte_to_hex()237 digits[1] = '0' + nybbel; in byte_to_hex()
25 void byte_to_hex(char *digits, uint8_t byte);
151 const char *digits; in number() local158 digits = (type & LARGE) ? large_digits : small_digits; in number()190 tmp[i++] = digits[do_div(num,base)]; in number()212 *buf = digits[33]; in number()
338 byte_to_hex(char *digits, uint8_t byte) in byte_to_hex() argument340 digits[0] = hex_digits[byte >> 4]; in byte_to_hex()341 digits[1] = hex_digits[byte & 0x0f]; in byte_to_hex()
182 void byte_to_hex(char *digits, uint8_t byte);
97 # digits, and non digits are removed.
42 six groups of two hexadecimal digits, separated by colons (:).
Completed in 11 milliseconds