/kernel/linux/linux-5.10/lib/ |
D | hexdump.c | 106 int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize, in hex_dump_to_buffer() argument 121 if (!is_power_of_2(groupsize) || groupsize > 8) in hex_dump_to_buffer() 122 groupsize = 1; in hex_dump_to_buffer() 123 if ((len % groupsize) != 0) /* no mixed size output */ in hex_dump_to_buffer() 124 groupsize = 1; in hex_dump_to_buffer() 126 ngroups = len / groupsize; in hex_dump_to_buffer() 127 ascii_column = rowsize * 2 + rowsize / groupsize + 1; in hex_dump_to_buffer() 135 if (groupsize == 8) { in hex_dump_to_buffer() 146 } else if (groupsize == 4) { in hex_dump_to_buffer() 157 } else if (groupsize == 2) { in hex_dump_to_buffer() [all …]
|
D | test_hexdump.c | 68 int groupsize, char *test, in test_hexdump_prepare_test() argument 74 int gs = groupsize, rs = rowsize; in test_hexdump_prepare_test() 125 static void __init test_hexdump(size_t len, int rowsize, int groupsize, in test_hexdump() argument 134 hex_dump_to_buffer(data_b, len, rowsize, groupsize, real, sizeof(real), in test_hexdump() 138 test_hexdump_prepare_test(len, rowsize, groupsize, test, sizeof(test), in test_hexdump() 142 pr_err("Len: %zu row: %d group: %d\n", len, rowsize, groupsize); in test_hexdump() 161 int rowsize, int groupsize, in test_hexdump_overflow() argument 166 int rs = rowsize, gs = groupsize; in test_hexdump_overflow()
|
D | seq_buf.c | 362 int rowsize, int groupsize, argument 377 hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize,
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/ |
D | ice_osdep.h | 34 #define ice_debug_array(hw, type, rowsize, groupsize, buf, len) \ argument 37 groupsize, buf, len, false) 46 #define ice_debug_array(hw, type, rowsize, groupsize, buf, len) \ argument 51 rowsize, groupsize, buf, \ 55 #define ice_debug_array(hw, type, rowsize, groupsize, buf, len) \ argument
|
/kernel/linux/linux-5.10/include/linux/ |
D | printk.h | 573 int groupsize, char *linebuf, size_t linebuflen, 577 int prefix_type, int rowsize, int groupsize, 581 int prefix_type, int rowsize, int groupsize, in print_hex_dump() argument 595 groupsize, buf, len, ascii) \ argument 597 groupsize, buf, len, ascii) 600 groupsize, buf, len, ascii) \ argument 602 groupsize, buf, len, ascii) 605 int rowsize, int groupsize, in print_hex_dump_debug() argument
|
D | dynamic_debug.h | 173 groupsize, buf, len, ascii) \ argument 177 rowsize, groupsize, buf, len, ascii) 213 groupsize, buf, len, ascii) \ argument 216 rowsize, groupsize, buf, len, ascii); \
|
D | trace_seq.h | 96 int prefix_type, int rowsize, int groupsize,
|
D | seq_buf.h | 129 int prefix_type, int rowsize, int groupsize,
|
D | seq_file.h | 133 int rowsize, int groupsize, const void *buf, size_t len,
|
D | trace_events.h | 50 int prefix_type, int rowsize, int groupsize,
|
/kernel/linux/linux-5.10/drivers/crypto/caam/ |
D | error.c | 17 int rowsize, int groupsize, struct scatterlist *sg, in caam_dump_sg() argument 39 groupsize, buf, len, ascii); in caam_dump_sg() 47 int rowsize, int groupsize, struct scatterlist *sg, in caam_dump_sg() argument
|
D | error.h | 21 int rowsize, int groupsize, struct scatterlist *sg,
|
/kernel/linux/linux-5.10/drivers/firmware/efi/ |
D | cper-x86.c | 328 int groupsize = 4; in cper_print_proc_ia() local 340 groupsize = 8; /* MSRs are 8 bytes wide. */ in cper_print_proc_ia() 351 print_hex_dump(newpfx, "", DUMP_PREFIX_OFFSET, 16, groupsize, in cper_print_proc_ia()
|
/kernel/linux/linux-5.10/kernel/trace/ |
D | trace_seq.c | 378 int prefix_type, int rowsize, int groupsize, in trace_seq_hex_dump() argument 394 prefix_type, rowsize, groupsize, in trace_seq_hex_dump()
|
D | trace_output.c | 279 int prefix_type, int rowsize, int groupsize, in trace_print_hex_dump_seq() argument 286 rowsize, groupsize, buf, len, ascii); in trace_print_hex_dump_seq()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/ |
D | wil6210.h | 1160 groupsize, buf, len, ascii) \ argument 1163 groupsize, buf, len, ascii) 1166 groupsize, buf, len, ascii) \ argument 1169 groupsize, buf, len, ascii) 1172 groupsize, buf, len, ascii) \ argument 1175 groupsize, buf, len, ascii) 1179 int groupsize, const void *buf, size_t len, bool ascii) in wil_hex_dump_txrx() argument 1185 int groupsize, const void *buf, size_t len, bool ascii) in wil_hex_dump_wmi() argument 1191 int groupsize, const void *buf, size_t len, bool ascii) in wil_hex_dump_misc() argument
|
D | fw_inc.c | 14 groupsize, buf, len, ascii) \ argument 17 groupsize, buf, len, ascii)
|
/kernel/linux/linux-5.10/drivers/mtd/chips/ |
D | cfi_cmdset_0001.c | 2222 u_long prot_offset, u_int groupno, u_int groupsize); 2309 u_int groups, groupno, groupsize, reg_fact_groups, reg_user_groups; in cfi_intelext_otp_walk() local 2356 groupsize = reg_user_size; in cfi_intelext_otp_walk() 2362 groupsize = reg_fact_size; in cfi_intelext_otp_walk() 2386 otpinfo->length = groupsize; in cfi_intelext_otp_walk() 2390 from += groupsize; in cfi_intelext_otp_walk() 2393 } else if (from >= groupsize) { in cfi_intelext_otp_walk() 2394 from -= groupsize; in cfi_intelext_otp_walk() 2395 data_offset += groupsize; in cfi_intelext_otp_walk() 2397 int size = groupsize; in cfi_intelext_otp_walk() [all …]
|
/kernel/linux/linux-5.10/include/trace/ |
D | trace_events.h | 346 rowsize, groupsize, buf, len, ascii) \ argument 348 rowsize, groupsize, buf, len, ascii)
|
/kernel/linux/linux-5.10/drivers/staging/fbtft/ |
D | fbtft.h | 242 void fbtft_dbg_hex(const struct device *dev, int groupsize,
|
D | fbtft-core.c | 51 void fbtft_dbg_hex(const struct device *dev, int groupsize, in fbtft_dbg_hex() argument 63 hex_dump_to_buffer(buf, len, 32, groupsize, text + text_len, in fbtft_dbg_hex()
|
/kernel/linux/linux-5.10/mm/ |
D | kmemleak.c | 263 int rowsize, int groupsize, const void *buf, in warn_or_seq_hex_dump() argument 267 seq_hex_dump(seq, HEX_PREFIX, prefix_type, rowsize, groupsize, in warn_or_seq_hex_dump() 271 rowsize, groupsize, buf, len, ascii); in warn_or_seq_hex_dump()
|
/kernel/linux/linux-5.10/fs/ |
D | seq_file.c | 853 int rowsize, int groupsize, const void *buf, size_t len, in seq_hex_dump() argument 882 ret = hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize, in seq_hex_dump()
|