Lines Matching refs:hex
74 static int format_line(char *hex, uint8_t *data, off_t offset) in format_line() argument
82 ofs_pos = sprintf(hex, "%08"OFF_FMT"x ", offset); in format_line()
85 ofs_pos = sprintf(hex, "%04"OFF_FMT"x ", offset); in format_line()
87 ofs_pos = sprintf(hex, "%08"OFF_FMT"x ", offset); in format_line()
89 hex += ofs_pos; in format_line()
91 text = hex + 16 * 3; in format_line()
99 *hex++ = bb_hexdigits_upcase[c >> 4]; in format_line()
100 *hex++ = bb_hexdigits_upcase[c & 0xf]; in format_line()
101 *hex++ = ' '; in format_line()
108 *hex++ = ' '; in format_line()
109 *hex++ = ' '; in format_line()
110 *hex++ = ' '; in format_line()