Lines Matching defs:nc
911 int i, j, m, i0, i1, j0, j1, nc;
922 nc = fetch(ixold, i0, i0, f1, '\0', 1, flags);
923 print_space(nc, hw - nc + lpad + 1 + rpad, flags);
1059 int i, nc;
1173 nc = ixold[a > b ? b : a - 1] - curpos;
1174 for (i = 0; i < nc; i++)
1203 nc = fetch(ixold, a, b, f1, '\0', 1, *pflags);
1204 print_space(nc, hw - nc + lpad, *pflags);
1250 int i, j, c, lastc, col, nc, newcol;
1253 nc = 0;
1262 nc = f[a > b ? b : a - 1] - curpos;
1263 for (i = 0; i < nc; i++)
1282 nc = f[i] - f[i - 1];
1283 if (diff_format == D_SIDEBYSIDE && hw < nc)
1284 nc = hw;
1301 while (j < nc && (hw == 0 || col < hw)) {
1450 size_t nc;
1457 nc = f[pos] - f[pos - 1];
1458 if (nc >= sizeof(buf))
1459 nc = sizeof(buf) - 1;
1460 nc = fread(buf, 1, nc, fp);
1461 if (nc == 0)
1463 buf[nc] = '\0';
1718 * nc is the preceding number of characters
1721 print_space(int nc, int n, int flags)
1725 col = nc;
1726 newcol = nc + n;