Lines Matching full:ascii
21 * @ch: ascii character represents hex digit
56 * hex2bin - convert an ascii hexadecimal string to its binary representation
58 * @src: ascii hexadecimal string
82 * bin2hex - convert binary data to an ascii hexadecimal string
83 * @dst: ascii hexadecimal result
98 * hex_dump_to_buffer - convert a blob of data to "hex ASCII" in memory
105 * @ascii: include ASCII after the hex output
108 * 16 or 32 bytes of input data converted to hex + ASCII output.
111 * to a hex + ASCII dump at the supplied memory location.
128 char *linebuf, size_t linebuflen, bool ascii) in hex_dump_to_buffer() argument
205 if (!ascii) in hex_dump_to_buffer()
225 return ascii ? ascii_column + len : (groupsize * 2 + 1) * ngroups - 1; in hex_dump_to_buffer()
241 * @ascii: include ASCII after the hex output
243 * Given a buffer of u8 data, print_hex_dump() prints a hex + ASCII dump
248 * 16 or 32 bytes of input data converted to hex + ASCII output.
263 const void *buf, size_t len, bool ascii) in print_hex_dump() argument
277 linebuf, sizeof(linebuf), ascii); in print_hex_dump()