Searched refs:HEX_ROW_SIZE (Results 1 - 1 of 1) sorted by relevance

/linux-4.1.27/mm/
H A Dkmemleak.c175 #define HEX_ROW_SIZE 16 macro
291 * actual number of printed bytes depends on HEX_ROW_SIZE. It must be called
299 unsigned char linebuf[HEX_ROW_SIZE * 5]; hex_dump_object()
303 min(object->size, (size_t)(HEX_MAX_LINES * HEX_ROW_SIZE)); hex_dump_object()
306 for (i = 0; i < len; i += HEX_ROW_SIZE) { hex_dump_object()
307 int linelen = min(remaining, HEX_ROW_SIZE); hex_dump_object()
309 remaining -= HEX_ROW_SIZE; hex_dump_object()
310 hex_dump_to_buffer(ptr + i, linelen, HEX_ROW_SIZE, hex_dump_object()

Completed in 54 milliseconds