/linux-4.1.27/lib/ |
D | hexdump.c | 107 int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize, in hex_dump_to_buffer() argument 117 if (rowsize != 16 && rowsize != 32) in hex_dump_to_buffer() 118 rowsize = 16; in hex_dump_to_buffer() 120 if (len > rowsize) /* limit to one line at a time */ in hex_dump_to_buffer() 121 len = rowsize; in hex_dump_to_buffer() 128 ascii_column = rowsize * 2 + rowsize / groupsize + 1; in hex_dump_to_buffer() 238 int rowsize, int groupsize, in print_hex_dump() argument 245 if (rowsize != 16 && rowsize != 32) in print_hex_dump() 246 rowsize = 16; in print_hex_dump() 248 for (i = 0; i < len; i += rowsize) { in print_hex_dump() [all …]
|
D | test-hexdump.c | 45 static void __init test_hexdump(size_t len, int rowsize, int groupsize, in test_hexdump() argument 53 int gs = groupsize, rs = rowsize; in test_hexdump() 100 pr_err("Len: %zu row: %d group: %d\n", len, rowsize, groupsize); in test_hexdump() 106 static void __init test_hexdump_set(int rowsize, bool ascii) in test_hexdump_set() argument 108 size_t d = min_t(size_t, sizeof(data_b), rowsize); in test_hexdump_set() 111 test_hexdump(len, rowsize, 4, ascii); in test_hexdump_set() 112 test_hexdump(len, rowsize, 2, ascii); in test_hexdump_set() 113 test_hexdump(len, rowsize, 8, ascii); in test_hexdump_set() 114 test_hexdump(len, rowsize, 1, ascii); in test_hexdump_set() 159 int rowsize; in test_hexdump_init() local [all …]
|
/linux-4.1.27/include/linux/ |
D | printk.h | 425 extern int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, 430 int prefix_type, int rowsize, int groupsize, 441 int prefix_type, int rowsize, int groupsize, in print_hex_dump() argument 453 #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \ argument 455 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \ 458 #define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \ argument 460 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
|
D | dynamic_debug.h | 98 #define dynamic_hex_dump(prefix_str, prefix_type, rowsize, \ argument 105 prefix_type, rowsize, groupsize, \
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramnv50.c | 318 u64 rowsize, predicted; in nv50_fb_vram_rblock() local 332 rowsize = ram->parts * banks * (1 << colbits) * 8; in nv50_fb_vram_rblock() 333 predicted = rowsize << rowbitsa; in nv50_fb_vram_rblock() 335 predicted += rowsize << rowbitsb; in nv50_fb_vram_rblock() 342 rblock_size = rowsize; in nv50_fb_vram_rblock()
|
/linux-4.1.27/drivers/net/wireless/ath/wil6210/ |
D | wil6210.h | 642 #define wil_hex_dump_txrx(prefix_str, prefix_type, rowsize, \ argument 645 prefix_type, rowsize, \ 648 #define wil_hex_dump_wmi(prefix_str, prefix_type, rowsize, \ argument 651 prefix_type, rowsize, \ 655 void wil_hex_dump_txrx(const char *prefix_str, int prefix_type, int rowsize, in wil_hex_dump_txrx() argument 661 void wil_hex_dump_wmi(const char *prefix_str, int prefix_type, int rowsize, in wil_hex_dump_wmi() argument
|
D | fw_inc.c | 23 #define wil_hex_dump_fw(prefix_str, prefix_type, rowsize, \ argument 26 prefix_type, rowsize, \
|