Searched refs:rowsize (Results 1 – 2 of 2) sorted by relevance
| /rk3399_rockchip-uboot/lib/ |
| H A D | hexdump.c | 52 int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize, in hex_dump_to_buffer() argument 62 if (rowsize != 16 && rowsize != 32) in hex_dump_to_buffer() 63 rowsize = 16; in hex_dump_to_buffer() 65 if (len > rowsize) /* limit to one line at a time */ in hex_dump_to_buffer() 66 len = rowsize; in hex_dump_to_buffer() 73 ascii_column = rowsize * 2 + rowsize / groupsize + 1; in hex_dump_to_buffer() 182 void print_hex_dump(const char *prefix_str, int prefix_type, int rowsize, in print_hex_dump() argument 189 if (rowsize != 16 && rowsize != 32) in print_hex_dump() 190 rowsize = 16; in print_hex_dump() 192 for (i = 0; i < len; i += rowsize) { in print_hex_dump() [all …]
|
| /rk3399_rockchip-uboot/include/ |
| H A D | hexdump.h | 84 int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize, 86 void print_hex_dump(const char *prefix_str, int prefix_type, int rowsize,
|