Lines Matching refs:hex
211 * seq_buf_putmem_hex - write raw memory into the buffer in ASCII hex
213 * @mem: The raw memory to write its hex ASCII representation of
218 * in hex characters.
225 unsigned char hex[HEX_CHARS];
241 hex[j++] = hex_asc_hi(data[i]);
242 hex[j++] = hex_asc_lo(data[i]);
248 hex[j++] = ' ';
250 seq_buf_putmem(s, hex, j);
338 * seq_buf_hex_dump - print formatted hex dump into the sequence buffer
348 * @ascii: include ASCII after the hex output
355 * 2 - spaces separating hex dump and ascii representation