/linux-4.4.14/lib/ |
D | hexdump.c | 108 int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize, in hex_dump_to_buffer() argument 123 if (!is_power_of_2(groupsize) || groupsize > 8) in hex_dump_to_buffer() 124 groupsize = 1; in hex_dump_to_buffer() 125 if ((len % groupsize) != 0) /* no mixed size output */ in hex_dump_to_buffer() 126 groupsize = 1; in hex_dump_to_buffer() 128 ngroups = len / groupsize; in hex_dump_to_buffer() 129 ascii_column = rowsize * 2 + rowsize / groupsize + 1; in hex_dump_to_buffer() 137 if (groupsize == 8) { in hex_dump_to_buffer() 148 } else if (groupsize == 4) { in hex_dump_to_buffer() 159 } else if (groupsize == 2) { in hex_dump_to_buffer() [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()
|
/linux-4.4.14/include/linux/ |
D | printk.h | 428 int groupsize, char *linebuf, size_t linebuflen, 432 int prefix_type, int rowsize, int groupsize, 443 int prefix_type, int rowsize, int groupsize, in print_hex_dump() argument 456 groupsize, buf, len, ascii) \ argument 458 groupsize, buf, len, ascii) 461 groupsize, buf, len, ascii) \ argument 463 groupsize, buf, len, ascii) 466 int rowsize, int groupsize, in print_hex_dump_debug() argument
|
D | dynamic_debug.h | 99 groupsize, buf, len, ascii) \ argument 105 prefix_type, rowsize, groupsize, \
|
D | seq_file.h | 131 int rowsize, int groupsize, const void *buf, size_t len,
|
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
D | ptlrpcd.c | 672 int groupsize; in ptlrpcd_init() local 829 groupsize = nthreads; in ptlrpcd_init() 831 groupsize = nthreads; in ptlrpcd_init() 833 groupsize = ptlrpcd_partner_group_size; in ptlrpcd_init() 834 if (nthreads % groupsize != 0) in ptlrpcd_init() 835 nthreads += groupsize - (nthreads % groupsize); in ptlrpcd_init() 850 pd->pd_groupsize = groupsize; in ptlrpcd_init()
|
/linux-4.4.14/drivers/net/wireless/ath/wil6210/ |
D | wil6210.h | 688 groupsize, buf, len, ascii) \ argument 691 groupsize, buf, len, ascii) 694 groupsize, buf, len, ascii) \ argument 697 groupsize, buf, len, ascii) 701 int groupsize, const void *buf, size_t len, bool ascii) in wil_hex_dump_txrx() argument 707 int groupsize, const void *buf, size_t len, bool ascii) in wil_hex_dump_wmi() argument
|
D | fw_inc.c | 24 groupsize, buf, len, ascii) \ argument 27 groupsize, buf, len, ascii)
|
/linux-4.4.14/drivers/mtd/chips/ |
D | cfi_cmdset_0001.c | 2198 u_long prot_offset, u_int groupno, u_int groupsize); 2285 u_int groups, groupno, groupsize, reg_fact_groups, reg_user_groups; in cfi_intelext_otp_walk() local 2332 groupsize = reg_user_size; in cfi_intelext_otp_walk() 2338 groupsize = reg_fact_size; in cfi_intelext_otp_walk() 2362 otpinfo->length = groupsize; in cfi_intelext_otp_walk() 2366 from += groupsize; in cfi_intelext_otp_walk() 2369 } else if (from >= groupsize) { in cfi_intelext_otp_walk() 2370 from -= groupsize; in cfi_intelext_otp_walk() 2371 data_offset += groupsize; in cfi_intelext_otp_walk() 2373 int size = groupsize; in cfi_intelext_otp_walk() [all …]
|
/linux-4.4.14/drivers/staging/fbtft/ |
D | fbtft.h | 260 void fbtft_dbg_hex(const struct device *dev, int groupsize,
|
D | fbtft-core.c | 52 void fbtft_dbg_hex(const struct device *dev, int groupsize, in fbtft_dbg_hex() argument 64 hex_dump_to_buffer(buf, len, 32, groupsize, text + text_len, in fbtft_dbg_hex()
|
/linux-4.4.14/fs/ |
D | seq_file.c | 763 int rowsize, int groupsize, const void *buf, size_t len, in seq_hex_dump() argument 792 ret = hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize, in seq_hex_dump()
|