Home
last modified time | relevance | path

Searched refs:diff_context (Results 1 – 4 of 4) sorted by relevance

/freebsd/usr.bin/diff/
H A Ddiff.c42 int diff_format, diff_context, diff_algorithm, status; variable
150 diff_context = 3; in main()
163 diff_context = 0; in main()
164 else if (!isdigit(lastch) || diff_context > INT_MAX / 10) in main()
166 diff_context = (diff_context * 10) + (ch - '0'); in main()
196 diff_context = (int) strtonum(optarg, in main()
299 diff_context = (int) strtonum(optarg, in main()
H A Ddiffreg.c1131 } else if (!ckd_add(&dist, diff_context, diff_context) && in change()
1518 if (ckd_sub(&lowa, cvp->a, diff_context) || lowa < 1) in dump_context_vec()
1520 if (ckd_add(&upb, context_vec_ptr->b, diff_context) || upb > (int)len[0]) in dump_context_vec()
1522 if (ckd_sub(&lowc, cvp->c, diff_context) || lowc < 1) in dump_context_vec()
1524 if (ckd_add(&upd, context_vec_ptr->d, diff_context) || upd > (int)len[1]) in dump_context_vec()
1625 if (ckd_sub(&lowa, cvp->a, diff_context) || lowa < 1) in dump_unified_vec()
1627 if (ckd_add(&upb, context_vec_ptr->b, diff_context) || upb > (int)len[0]) in dump_unified_vec()
1629 if (ckd_sub(&lowc, cvp->c, diff_context) || lowc < 1) in dump_unified_vec()
1631 if (ckd_add(&upd, context_vec_ptr->d, diff_context) || upd > (int)len[1]) in dump_unified_vec()
H A Ddiff.h116 extern int diff_format, diff_context, diff_algorithm, status;
H A Ddiffreg_new.c158 int context_lines = diff_context; in diffreg_new()