Lines Matching full:ascii
23 * hex_dump_to_buffer - convert a blob of data to "hex ASCII" in memory
30 * @ascii: include ASCII after the hex output
33 * 16 or 32 bytes of input data converted to hex + ASCII output.
36 * to a hex + ASCII dump at the supplied memory location.
53 char *linebuf, size_t linebuflen, bool ascii) in hex_dump_to_buffer() argument
130 if (!ascii) in hex_dump_to_buffer()
150 return ascii ? ascii_column + len : (groupsize * 2 + 1) * ngroups - 1; in hex_dump_to_buffer()
163 * @ascii: include ASCII after the hex output
165 * Given a buffer of u8 data, print_hex_dump() prints a hex + ASCII dump
169 * 16 or 32 bytes of input data converted to hex + ASCII output.
183 int groupsize, const void *buf, size_t len, bool ascii) in print_hex_dump() argument
197 linebuf, sizeof(linebuf), ascii); in print_hex_dump()
223 * and ASCII output included.
237 size_t len, bool ascii) in print_hex_dump() argument