Lines Matching +full:k +full:- +full:to +full:- +full:j
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
8 * to the University of California by American Telephone and Telegraph
21 * may be used to endorse or promote products derived from this software
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
44 int i, j, k; in hexdump() local
68 for (j = 0; j < cols; j++) { in hexdump()
69 k = i + j; in hexdump()
70 if (k < length) in hexdump()
71 printf("%c%02x", delim, cp[k]); in hexdump()
79 for (j = 0; j < cols; j++) { in hexdump()
80 k = i + j; in hexdump()
81 if (k >= length) in hexdump()
83 else if (cp[k] >= ' ' && cp[k] <= '~') in hexdump()
84 printf("%c", cp[k]); in hexdump()