ops               693 src/diffviewer/ydiff.c scan_line (const char *p, GArray *ops)
ops               753 src/diffviewer/ydiff.c     g_array_append_val (ops, op);
ops               768 src/diffviewer/ydiff.c scan_diff (FBUF *f, GArray *ops)
ops               781 src/diffviewer/ydiff.c             if (scan_line (buf, ops) != 0)
ops               789 src/diffviewer/ydiff.c     return ops->len;
ops               807 src/diffviewer/ydiff.c dff_execute (const char *args, const char *extra, const char *file1, const char *file2, GArray *ops)
ops               837 src/diffviewer/ydiff.c     rv = scan_diff (f, ops);
ops               893 src/diffviewer/ydiff.c dff_reparse (diff_place_t ord, const char *filename, const GArray *ops, DFUNC printer, void *ctx)
ops               925 src/diffviewer/ydiff.c     for (i = 0; i < ops->len; i++)
ops               929 src/diffviewer/ydiff.c         op = &g_array_index (ops, DIFFCMD, i);
ops              1688 src/diffviewer/ydiff.c     GArray *ops;
ops              1715 src/diffviewer/ydiff.c     ops = g_array_new (FALSE, FALSE, sizeof (DIFFCMD));
ops              1716 src/diffviewer/ydiff.c     ndiff = dff_execute (dview->args, extra, dview->file[DIFF_LEFT], dview->file[DIFF_RIGHT], ops);
ops              1719 src/diffviewer/ydiff.c         if (ops != NULL)
ops              1720 src/diffviewer/ydiff.c             g_array_free (ops, TRUE);
ops              1727 src/diffviewer/ydiff.c     rv |= dff_reparse (DIFF_LEFT, dview->file[DIFF_LEFT], ops, printer, &ctx);
ops              1731 src/diffviewer/ydiff.c     rv |= dff_reparse (DIFF_RIGHT, dview->file[DIFF_RIGHT], ops, printer, &ctx);
ops              1733 src/diffviewer/ydiff.c     if (ops != NULL)
ops              1734 src/diffviewer/ydiff.c         g_array_free (ops, TRUE);