Lines Matching refs:hex
243 * seq_buf_putmem_hex - write raw memory into the buffer in ASCII hex
245 * @mem: The raw memory to write its hex ASCII representation of
250 * in hex characters.
257 unsigned char hex[HEX_CHARS];
273 hex[j++] = hex_asc_hi(data[i]);
274 hex[j++] = hex_asc_lo(data[i]);
280 hex[j++] = ' ';
282 seq_buf_putmem(s, hex, j);
370 * seq_buf_hex_dump - print formatted hex dump into the sequence buffer
380 * @ascii: include ASCII after the hex output
387 * 2 - spaces separating hex dump and ascii representation