Lines Matching defs:file1

101  *	the line in file1 corresponding to line i file0. J[i] = 0 if there is no
102 * such line in file1.
107 * file1 together. Subroutine equiv replaces the value of each line in
109 * (the reordered) file1. To save space equiv squeezes file1 into a single
118 * a k-candidate is a matched pair of lines x,y (x in file0 y in file1)
120 * i lines of file0 and the first y lines of file1, but there is no such
124 * Whenever any of the members of the equivalence class of lines in file1
143 * 2*length(file0) + length(file1) + 3*(number of k-candidates installed),
245 diffreg(char *file1, char *file2, int flags)
301 if (strcmp(file1, "-") == 0 && strcmp(file2, "-") == 0)
308 if ((f1 = opentemp(file1)) == NULL ||
310 warn("%s", file1);
315 } else if (strcmp(file1, "-") == 0)
318 f1 = fopen(file1, "r");
321 warn("%s", file1);
351 pr = start_pr(file1, file2);
384 errc(1, EFBIG, "%s", file1);
416 output(file1, f1, file2, f2, flags);
864 output(char *file1, FILE *f1, char *file2, FILE *f2, int flags)
901 change(file1, f1, file2, f2, i, i, j, j, &flags);
904 change(file1, f1, file2, f2, i, i, j + 1, j, &flags);
909 change(file1, f1, file2, f2, i + 1, i, j, j, &flags);
913 change(file1, f1, file2, f2, i0, i1, j0, j1, &flags);
925 change(file1, f1, file2, f2, i1, i0, j1, j0, &flags);
929 change(file1, f1, file2, f2, 1, 0, 1, len[1], &flags);
1009 change(char *file1, FILE *f1, char *file2, FILE *f2, int a, int b, int c, int d,
1053 printf("%s %s %s\n", diffargs, file1, file2);
1076 print_header(file1, file2);
1604 print_header(const char *file1, const char *file2)
1624 file1, buf);