Home
last modified time | relevance | path

Searched refs:rev2 (Results 1 – 25 of 25) sorted by relevance

/freebsd-9-stable/contrib/cvs/src/
Drcscmds.c226 RCS_merge(rcs, path, workfile, options, rev1, rev2) in RCS_merge() argument
232 const char *rev2;
249 xrev2 = RCS_gettag (rcs, rev2, 0, NULL);
272 if (RCS_checkout (rcs, NULL, xrev2, rev2, options, tmp2,
372 rev2, label1, label2, workfile) in RCS_exec_rcsdiff() argument
379 const char *rev2;
428 if (rev2 == NULL)
437 cvs_output (rev2, 0);
439 status = RCS_checkout (rcsfile, NULL, rev2, NULL, options,
449 "cannot check out revision %s of %s", rev2, rcsfile->path);
[all …]
Dpatch.c41 static char *rev2 = NULL; variable
115 if (rev2 != NULL || date2 != NULL)
124 if (rev2 != NULL || date2 != NULL)
128 rev2 = optarg;
186 rev1 != NULL || rev2 != NULL))
190 rev1 == NULL && rev2 == NULL))
223 if (rev2)
224 option_with_arg ("-r", rev2);
362 if (rev2 != NULL && !rev2_validated)
364 tag_check_valid (rev2, argc - 1, argv + 1, local_specified, 0,
[all …]
Dupdate.c2151 char *rev2; local
2194 rev2 = RCS_getversion (vers->srcfile, jrev2, jdate2, 1, (int *) NULL);
2208 else if (rev2 == NULL)
2218 rev1 = gca (vers->vn_rcs, rev2);
2222 if (rev2 == NULL || RCS_isdead (vers->srcfile, rev2))
2227 if (rev2 != NULL)
2228 free (rev2);
2430 if (rev1 && strcmp (rev1, rev2) == 0)
2433 free (rev2);
2444 && strcmp (rev2, vers->vn_user) == 0)
[all …]
Dsubr.c297 compare_revnums (rev1, rev2) in compare_revnums() argument
299 const char *rev2;
306 tp = rev2;
494 gca (rev1, rev2) in gca() argument
496 const char *rev2;
504 if (rev1 == NULL || rev2 == NULL)
513 g = gca = xmalloc (strlen (rev1) + strlen (rev2) + 100);
517 p2 = rev2;
547 error (0, 0, "bad revisions %s or %s", rev1, rev2);
Dadmin.c622 char *s, *t, *rev1, *rev2; local
649 rev2 = xstrdup (s);
655 rev2 = xstrdup (t2);
664 rev2 = NULL;
667 rev2 = xstrdup (t2);
670 if (rev1 == NULL && rev2 == NULL)
679 status |= RCS_delete_revs (rcs, rev1, rev2, inclusive);
682 if (rev2)
683 free (rev2);
Drcs.c5706 RCS_cmp_file (rcs, rev1, rev1_cache, rev2, options, filename) in RCS_cmp_file() argument
5710 const char *rev2;
5763 if (rev2 != NULL)
5788 if (RCS_checkout (rcs, (char *)NULL, rev2 ? rev2 : rev1,
5793 rev2 ? rev2 : rev1, rcs->path);
6353 char *rev2 = NULL; local
6380 rev2 = RCS_gettag (rcs, tag2, 1, NULL);
6381 if (rev2 == NULL || (nodep = findnode (rcs->versions, rev2)) == NULL)
6392 if (rev2 == NULL && numdots (rev1) == 1)
6394 rev2 = xstrdup (rcs->head);
[all …]
Dcvs.h445 const char *rev2, const char *label1,
475 char *gca PROTO ((const char *rev1, const char *rev2));
806 char *rev1, char *rev2));
DChangeLog-97665 * rcs.c (RCS_delete_revs): Don't set rev2 to revp->version (the
666 code is missing an xstrdup, but it doesn't matter because rev2
672 * rcs.c (RCS_delete_revs): Restore code which passes rev2 to
679 * rcs.c (RCS_delete_revs): If rev1 == NULL and rev2 is on the
DChangeLog14 as opposed to the base revision. Restore freeing of rev2 to its
2363 the file is already at rev2.
2677 for when rev2 defaults to the trunk. Expand comments.
Dsanity.sh7881 dotest rcsdiff-6 "${testcvs} commit -m rev2 foo.c" \
/freebsd-9-stable/gnu/usr.bin/rcs/rcsdiff/
Drcsdiff.c160 char const *rev1, *rev2; /* revision numbers from command line */ variable
185 rev1 = rev2 = xrev2 = 0;
209 case 2: rev2=a; break;
319 if (!rev2) {
348 *rev2 ? rev2 : Dbranch ? Dbranch : Head->num,
398 if (!rev2) {
410 bufscat(&commarg, rev2); /* not xrev2, for $Name's sake */
418 if (!rev2)
/freebsd-9-stable/sys/dev/bktr/
Dbktr_audio.c460 int rev1=0, rev2=0; in msp_read_id() local
462 rev2 = msp_dpl_read(bktr, bktr->msp_addr, 0x12, 0x001f); in msp_read_id()
465 (rev2>>8)&0xff, (rev1&0xff)+'@', ((rev1>>8)&0xff)+'@', rev2&0x1f); in msp_read_id()
616 int rev1=0, rev2=0; in dpl_read_id() local
618 rev2 = msp_dpl_read(bktr, bktr->dpl_addr, 0x12, 0x001f); in dpl_read_id()
621 ((rev2>>8)&0xff)-1, (rev1&0xff)+'@', ((rev1>>8)&0xff)+'@', rev2&0x1f); in dpl_read_id()
Dmsp34xx.c1134 int rev1,rev2,i; in msp_attach() local
1157 rev2 = msp3400c_read(bktr, I2C_MSP3400C_DFP, 0x1f); in msp_attach()
1158 if ((-1 == rev1) || (0 == rev1 && 0 == rev2)) { in msp_attach()
1171 (rev2>>8)&0xff, (rev1&0xff)+'@', ((rev1>>8)&0xff)+'@', rev2&0x1f); in msp_attach()
1172 msp->nicam = (((rev2>>8)&0xff) != 00) ? 1 : 0; in msp_attach()
/freebsd-9-stable/gnu/usr.bin/rcs/co/
Dco.c751 char const *rev2, *rev3; local
758 rev2 = maketemp(0);
791 if (runv(-1, rev2, cov))
806 *p++ = rev2;
/freebsd-9-stable/sys/dev/cx/
Dcsigma.c398 int gfrcr, rev, chain, mod = 0, rev2 = 0, mod2 = 0; in cx_init() local
420 rev2 = inb (BSR(port+0x10)); in cx_init()
421 gfrcr = cx_chip_revision (port+0x10, rev2); in cx_init()
430 (rev2 & BSR_VAR_MASK), (rev2 & BSR_OSC_MASK), mod2); in cx_init()
437 int chain, int rev, int osc, int mod, int rev2, int osc2, int mod2) in cx_init_board() argument
508 switch (rev2) { in cx_init_board()
651 switch (rev2) { in cx_init_board()
Dcxddk.h386 int chain, int rev, int osc, int mod, int rev2, int osc2, int mod2);
/freebsd-9-stable/gnu/usr.bin/rcs/lib/
Drcsrev.c345 char * partialno(rev1,rev2,length) in partialno() argument
347 char const *rev2;
355 bufscpy(rev1, rev2);
/freebsd-9-stable/contrib/cvs/
DNEWS499 revision of rev2 (ie, checked-out version matches rev2 and file has been
858 * There is a new syntax, "cvs admin -orev1::rev2", which collapses the
859 revisions between rev1 and rev2 without deleting rev1 or rev2
DFAQ4063 cvs diff -r <tag1/rev1> -r <tag2/rev2> <file>
5026 If both <rev1> and <rev2> are on the same branch, you can get what you
5030 cvs log -r<rev1>:<rev2> <file>
5041 branch <rev2> is on up to revision <rev2>, you can use:
5043 cvs log -r:<rev2> <file>
5045 Note: Depending on whether <rev1> and <rev2> are:
DChangeLog2910 * NEWS: Mention admin -o rev1::rev2.
/freebsd-9-stable/contrib/gcc/config/mips/
Dmips.md466 ;; This attribute works around the early SB-1 rev2 core "F2" erratum:
471 ;; Therefore, we only allow div.s if not working around SB-1 rev2
1834 ;; These patterns work around the early SB-1 rev2 core "F1" erratum:
1915 ;; These patterns work around the early SB-1 rev2 core "F1" erratum (see
/freebsd-9-stable/contrib/groff/tmac/
Dhyphen.us3329 rev2
/freebsd-9-stable/contrib/cvs/doc/
Dcvs.texinfo8586 @var{rev1}:@var{rev2} syntax is confusing).
8601 @item @var{rev1}::@var{rev2}
8602 Collapse all revisions between rev1 and rev2, so that
8604 from rev1 to rev2, not intermediate steps. For
8630 @item @var{rev1}:@var{rev2}
8631 Delete the revisions from @var{rev1} to @var{rev2},
8633 retrieve @var{rev1} or @var{rev2} or any of the
8643 specify @var{rev1}::@var{rev2} instead.
9295 Synopsis: diff [-lR] [-k kflag] [format_options] [[-r rev1 | -D date1] [-r rev2 | -D date2]] [file…
10515 @c about messages to get from revision rev1 to rev2,
[all …]
Dcvsclient.texi1132 @item -r@var{rev1}:@var{rev2}
1136 Specify revisions (note that @var{rev1} or @var{rev2} can be omitted, or
/freebsd-9-stable/share/misc/
Dpci_vendors8343 13c2 0002 Technotrend/Hauppauge DVB card rev2.1
8344 13c2 0003 Technotrend/Hauppauge DVB card rev2.1
8345 13c2 0004 Technotrend/Hauppauge DVB card rev2.1
8349 13c2 000e Technotrend/Hauppauge DVB card rev2.3
8362 13c2 1102 Technotrend/Hauppauge DVB card rev2.1
11215 000e Technotrend/Hauppauge DVB card rev2.3