Home
last modified time | relevance | path

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

12345678910>>...43

/openbsd-src/gnu/usr.bin/cvs/contrib/
H A Dcvscheck.sh16 changes=0
39 changes=`expr $changes + 1`
42 changes=`expr $changes + 1`
55 changes=`expr $changes + 1`
67 changes=`expr $changes + 1`
80 changes=`expr $changes + 1`
83 exit $changes
H A Dintro.doc19 merges the changes in the central copy into your copy.
20 (It can be that when you do an update, the changes in the
21 central copy clash with changes you have made in your own
25 When you are satisfied with the changes you have made in your copy of
59 This will update your copy with any changes from the central
71 changes that you have made (for future reference). Your changes
76 It can be that the changes you want to make involve a completely
99 To lose your changes and go back to the version from the
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperl.pod183 perldelta Perl changes since previous version
184 perl5400delta Perl changes in version 5.40.0
185 perl5382delta Perl changes in version 5.38.2
186 perl5381delta Perl changes in version 5.38.1
187 perl5380delta Perl changes in version 5.38.0
188 perl5363delta Perl changes in version 5.36.3
189 perl5362delta Perl changes in version 5.36.2
190 perl5361delta Perl changes in version 5.36.1
191 perl5360delta Perl changes in version 5.36.0
192 perl5343delta Perl changes i
[all...]
/openbsd-src/sys/net/
H A Dslcompress.c174 u_int changes = 0; in sl_compress_tcp() local
288 changes |= NEW_U; in sl_compress_tcp()
299 changes |= NEW_W; in sl_compress_tcp()
307 changes |= NEW_A; in sl_compress_tcp()
315 changes |= NEW_S; in sl_compress_tcp()
318 switch(changes) { in sl_compress_tcp()
347 changes = SPECIAL_I; in sl_compress_tcp()
355 changes = SPECIAL_D; in sl_compress_tcp()
364 changes |= NEW_I; in sl_compress_tcp()
367 changes |= TCP_PUSH_BIT; in sl_compress_tcp()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/mips/
H A Dt-r390034 # tm.h file changes. The files compiled are:
36 # gcc.c (*_SPEC changes)
37 # toplev.c (new switches + assembly output changes)
38 # sdbout.c (debug format changes)
39 # dbxout.c (debug format changes)
40 # dwarfout.c (debug format changes)
41 # final.c (assembly output changes)
42 # varasm.c (assembly output changes)
44 # insn-output.c (possible ifdef changes in tm.h)
45 # regclass.c (fixed/call used register changes)
H A Dt-ecoff31 # tm.h file changes. The files compiled are:
33 # gcc.c (*_SPEC changes)
34 # toplev.c (new switches + assembly output changes)
35 # sdbout.c (debug format changes)
36 # dbxout.c (debug format changes)
37 # dwarfout.c (debug format changes)
38 # final.c (assembly output changes)
39 # varasm.c (assembly output changes)
41 # insn-output.c (possible ifdef changes in tm.h)
42 # regclass.c (fixed/call used register changes)
H A Dt-elf44 # tm.h file changes. The files compiled are:
46 # gcc.c (*_SPEC changes)
47 # toplev.c (new switches + assembly output changes)
48 # sdbout.c (debug format changes)
49 # dbxout.c (debug format changes)
50 # dwarfout.c (debug format changes)
51 # final.c (assembly output changes)
52 # varasm.c (assembly output changes)
54 # insn-output.c (possible ifdef changes in tm.h)
55 # regclass.c (fixed/call used register changes)
H A Dt-isa326445 # tm.h file changes. The files compiled are:
47 # gcc.c (*_SPEC changes)
48 # toplev.c (new switches + assembly output changes)
49 # sdbout.c (debug format changes)
50 # dbxout.c (debug format changes)
51 # dwarfout.c (debug format changes)
52 # final.c (assembly output changes)
53 # varasm.c (assembly output changes)
55 # insn-output.c (possible ifdef changes in tm.h)
56 # regclass.c (fixed/call used register changes)
H A Dt-sr71k56 # tm.h file changes. The files compiled are:
58 # gcc.c (*_SPEC changes)
59 # toplev.c (new switches + assembly output changes)
60 # sdbout.c (debug format changes)
61 # dbxout.c (debug format changes)
62 # dwarfout.c (debug format changes)
63 # final.c (assembly output changes)
64 # varasm.c (assembly output changes)
66 # insn-output.c (possible ifdef changes in tm.h)
67 # regclass.c (fixed/call used register changes)
/openbsd-src/gnu/usr.bin/cvs/src/
H A Dlogmsg.c15 char *message, FILE * logfp, List * changes));
19 static void setup_tmpfile PROTO((FILE * xfp, char *xprefix, List * changes));
38 setup_tmpfile (xfp, xprefix, changes) in setup_tmpfile() argument
41 List *changes;
48 if (walklist (changes, find_type, NULL) != 0)
52 (void) walklist (changes, fmt_proc, NULL);
61 if (walklist (changes, find_type, NULL) != 0)
65 (void) walklist (changes, fmt_proc, NULL);
74 if (walklist (changes, find_type, NULL) != 0)
78 (void) walklist (changes, fmt_proc, NULL);
[all …]
/openbsd-src/usr.bin/vi/docs/internals/
H A Dautowrite45 :next Y Y Y Write changes and jump.
46 :next Y Y N Write changes and jump.
47 :next Y N Y Abandon changes and jump.
51 :rewind Y Y Y Abandon changes and jump.
52 :rewind Y Y N Write changes and jump.
53 :rewind Y N Y Abandon changes and jump.
59 :tag Y Y Y Abandon changes and jump.
60 :tag Y Y N Write changes and jump.
61 :tag Y N Y Abandon changes and jump.
67 :stop Y Y N Write changes and suspend.
[all …]
/openbsd-src/lib/libevent/
H A Dkqueue.c55 struct kevent *changes; member
107 kqueueop->changes = calloc(NEVENT, sizeof(struct kevent)); in kq_init()
108 if (kqueueop->changes == NULL) { in kq_init()
114 free (kqueueop->changes); in kq_init()
143 newchange = recallocarray(kqop->changes, in kq_insert()
149 kqop->changes = newchange; in kq_insert()
167 memcpy(&kqop->changes[kqop->nchanges++], kev, sizeof(struct kevent)); in kq_insert()
187 struct kevent *changes = kqop->changes; in kq_dispatch() local
198 res = kevent(kqop->kq, kqop->nchanges ? changes : NULL, kqop->nchanges, in kq_dispatch()
396 if (kqop->changes[i].udata == ev && in kq_del()
[all …]
/openbsd-src/gnu/llvm/clang/utils/
H A Dtoken-delta.py16 def test(self, changes): argument
21 def getTestResult(self, changes): argument
25 changeset = frozenset(changes)
28 elif not self.test(changes):
34 def run(self, changes, force=False): argument
40 if not self.getTestResult(changes):
47 return self.delta(changes, self.split(changes))
149 def writeFiles(self, changes, fileNames): argument
152 for i,j in changes:
163 def test(self, changes): argument
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-world/
H A Dtoolbar.tml12 - item edit-changes-undo
13 - item edit-changes-redo
31 'item edit-changes-undo',
32 'item edit-changes-redo',
/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dacknowledgements.pl41 my ( $changes, $files, $code_changes, $code_files ) = changes_files();
42 my $formatted_changes = commify( round($changes) );
144 my $changes = $insertions + $deletions;
145 return ( $changes, $files );
/openbsd-src/gnu/usr.bin/cvs/diff/
H A Danalyze.c818 briefly_report (changes, filevec) in briefly_report() argument
819 int changes; in briefly_report()
822 if (changes)
839 int changes; local
854 changes = 1;
858 changes = 0;
894 changes = 1;
901 changes = 0;
907 briefly_report (changes, filevec);
974 changes = 0;
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/Search-Dict/
H A DREADME.patching3 1. Check for any changes to .pm files since dev or stable Perl release. E.g.
4 to check for changes since v5.15.8:
20 update Makefile.PL with any changes to prerequisites.
22 5. Commit all changes (preferably to a branch)
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/
H A DREADME.patching3 1. Check for any changes to .pm files since dev or stable Perl release. E.g.
4 to check for changes since v5.15.8:
20 update Makefile.PL with any changes to prerequisites.
22 5. Commit all changes (preferably to a branch)
/openbsd-src/regress/usr.sbin/bgpd/integrationtests/
H A Dexabgp.med.in21 neighbor-changes;
40 neighbor-changes;
59 neighbor-changes;
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-diff.rst16 differences, such as changes in the ordering of globals or in the
30 ignored. This algorithm is very sensitive to changes in control flow,
31 which tend to stop any downstream changes from being detected.
46 Many important differences, like changes in linkage or function
/openbsd-src/gnu/usr.bin/perl/dist/Exporter/
H A DChanges35 - Documentation changes from p5p.
39 - No changes. Production release after CPAN testers cleared.
43 - Remove local $_ from Exporter - The changes in that commit did
49 it seems that the changes to ‘local $_’ still weren’t sufficient (it
55 - No changes. Tests clean. Bumping to production release.
83 - sync with changes 32596 (fixes by rgs)
/openbsd-src/gnu/usr.bin/gcc/contrib/regression/
H A DREADME15 Note that any changes made here need to be approved by the regression
16 tester's maintainer (see MAINTAINERS). The changes will be used on
17 the tester's next run, so `experimental' changes are very strongly
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DCxx20.rst29 .. note:: "Nothing to do" means that no library changes were needed to implement this change.
43 .. [#note-P0591] P0591: The changes in [mem.poly.allocator.mem] are missing.
49 ….. [#note-P0883.1] P0883: shared_ptr and floating-point changes weren't applied as they themselves…
51 … .. [#note-P2231] P2231: Optional is complete. The changes to variant haven't been implemented yet.
/openbsd-src/regress/sbin/pfctl/
H A Dpfr9.ok75 no changes (dummy).
77 no changes (dummy).
87 no changes.
/openbsd-src/gnu/usr.bin/gcc/contrib/
H A Dconvert_to_g2c33 mv -i changes changes.netlib

12345678910>>...43