Searched refs:changes (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-10.0-release/contrib/diff/src/
H A Dnormal.c38 describing changes in consecutive lines. */
47 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); local
48 if (!changes)
55 fprintf (outfile, "%c", change_letter[changes]);
60 if (changes & OLD)
64 if (changes == CHANGED)
68 if (changes & NEW)
H A Ded.c44 enum changes changes;
51 changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1);
52 if (!changes)
59 fprintf (outfile, "%c\n", change_letter[changes]);
62 if (changes != OLD)
85 but print the changes in the order they appear in the input files,
100 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1);
101 if (!changes)
43 enum changes changes; local
98 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); local
141 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); local
[all...]
H A Dside.c232 describing changes in consecutive lines. */
241 enum changes changes = local
243 if (!changes)
257 if (changes == CHANGED)
261 changes = (i <= last0 ? OLD : 0) + (j <= last1 ? NEW : 0);
267 if (changes & NEW)
275 if (changes & OLD)
H A Danalyze.c180 of changes, the algorithm is linear in the file size. */
576 /* Adjust inserts/deletes of identical lines to join changes
604 /* Scan forwards to find beginning of another run of changes.
619 /* Find the end of this run of changes. */
628 /* Record the length of this run of changes, so that
669 /* If possible, move the fully-merged run of changes
781 briefly_report (int changes, struct file_data const filevec[])
783 if (changes)
789 changes = 2;
792 return changes;
776 briefly_report(int changes, struct file_data const filevec[]) argument
798 int changes; local
[all...]
H A Difdef.c66 describing changes in consecutive lines. */
74 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); local
75 if (!changes)
89 format_ifdef (group_format[changes],
H A Dcontext.c169 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1);
170 if (! changes)
204 if (changes & OLD)
210 /* Skip past changes that apply (in file 0)
233 if (changes & NEW)
239 /* Skip past changes that apply (in file 1)
397 changes, but only CONTEXT if one is ignorable. Watch out for
166 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); local
/freebsd-10.0-release/contrib/ntp/scripts/
H A DgenCommitLog6 bk -R prs -hr${CLTAG}.. -nd':I:' | bk changes -m -v - > CommitLog.new
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dchanges-table.c0 /* changes-table.c : operations on the `changes' table
40 #include "changes-table.h"
48 /*** Creating and opening the changes table. ***/
56 DB *changes;
59 BDB_ERR(db_create(&changes, env, 0));
61 /* Enable duplicate keys. This allows us to store the changes
63 BDB_ERR(changes->set_flags(changes, DB_DUP));
65 BDB_ERR((changes
55 DB *changes; local
129 fold_change(apr_hash_t *changes, const change_t *change) argument
266 apr_hash_t *changes = apr_hash_make(pool); local
390 apr_array_header_t *changes = apr_array_make(pool, 4, sizeof(change)); local
[all...]
/freebsd-10.0-release/contrib/jemalloc/
H A DFREEBSD-upgrade18 # Merge local changes that were made since the previous import:
20 # ./FREEBSD-upgrade merge-changes
40 # changes, then extract blows away the work tree and re-creates it with the
56 work="${src}/../${workname}" # merge-changes expects ${workname} in "..".
57 changes="${src}/FREEBSD-changes"
89 merge-changes) # Merge local changes that were made since the previous import.
96 diff -ru -X ${src}/FREEBSD-Xlist ${workname} jemalloc > ${changes} || true
100 patch -p1 < ${changes}
[all...]
/freebsd-10.0-release/usr.sbin/ppp/
H A Dslcompress.c168 register u_int changes = 0; local
285 * changes in the order: urgent, window, ack, seq (the order minimizes the
291 changes |= NEW_U;
304 changes |= NEW_W;
312 changes |= NEW_A;
320 changes |= NEW_S;
322 switch (changes) {
343 * actual changes match one of our special case encodings -- send packet
352 changes = SPECIAL_I;
360 changes
434 register u_int hlen, changes; local
[all...]
/freebsd-10.0-release/sys/net/
H A Dslcompress.c166 register u_int changes = 0; local
277 * receiver expects changes in the order: urgent, window,
284 changes |= NEW_U;
295 changes |= NEW_W;
303 changes |= NEW_A;
311 changes |= NEW_S;
314 switch(changes) {
334 * actual changes match one of our special case encodings --
343 changes = SPECIAL_I;
351 changes
472 register u_int hlen, changes; local
[all...]
/freebsd-10.0-release/contrib/pf/libevent/
H A Dkqueue.c65 struct kevent *changes; member in struct:kqop
114 kqueueop->changes = malloc(NEVENT * sizeof(struct kevent));
115 if (kqueueop->changes == NULL) {
121 free (kqueueop->changes);
128 kqueueop->changes[0].ident = -1;
129 kqueueop->changes[0].filter = EVFILT_READ;
130 kqueueop->changes[0].flags = EV_ADD;
137 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
141 free(kqueueop->changes);
168 newchange = realloc(kqop->changes,
212 struct kevent *changes = kqop->changes; local
[all...]
/freebsd-10.0-release/tools/regression/tmpfs/
H A Dh_tools.c100 struct kevent *changes, event; local
108 changes = malloc(sizeof(struct kevent) * (argc - 1));
109 if (changes == NULL)
119 EV_SET(&changes[i], fd, EVFILT_VNODE,
137 (void)kevent(kq, changes, argc, &event, 1, &to);
147 nev = kevent(kq, changes, argc, &event, 1, &to);
152 if (event.ident == changes[i].ident)
174 close(changes[i].ident);
175 free(changes);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Dtemp_serializer.c1118 /* reference to the changes */
1119 change_t **changes; member in struct:changes_data_t
1129 changes_data_t changes; local
1135 changes.count = array->nelts;
1136 changes.changes = apr_palloc(pool, sizeof(change_t*) * changes.count);
1139 for (i = 0; i < changes.count; ++i)
1140 changes.changes[
1173 changes_data_t *changes = (changes_data_t *)data; local
[all...]
/freebsd-10.0-release/contrib/wpa/wpa_supplicant/
H A Dbss.c412 u32 changes = 0; local
416 changes |= WPA_BSS_FREQ_CHANGED_FLAG;
419 changes |= WPA_BSS_SIGNAL_CHANGED_FLAG;
422 changes |= WPA_BSS_PRIVACY_CHANGED_FLAG;
425 changes |= WPA_BSS_MODE_CHANGED_FLAG;
429 return changes;
430 changes |= WPA_BSS_IES_CHANGED_FLAG;
433 changes |= WPA_BSS_WPAIE_CHANGED_FLAG;
436 changes |= WPA_BSS_RSNIE_CHANGED_FLAG;
439 changes |
449 notify_bss_changes(struct wpa_supplicant *wpa_s, u32 changes, const struct wpa_bss *bss) argument
485 u32 changes; local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_mergeinfo.h47 * complete list of changes merged to that path, either directly or via the
211 /** Merge a shallow copy of one mergeinfo, @a changes, into another mergeinfo
214 * Rangelists for merge source paths common to @a changes and @a mergeinfo may
230 svn_mergeinfo_t changes,
241 svn_mergeinfo_t changes,
305 * elements, @a rangelist and @a changes, placing the results in
313 * Note: @a rangelist and @a changes must be sorted as said by @c
327 const svn_rangelist_t *changes,
346 const svn_rangelist_t *changes,
/freebsd-10.0-release/contrib/bmake/mk/
H A Dlibnames.mk12 # Please send copies of changes and bug-fixes to:
H A Dhost.libnames.mk12 # Please send copies of changes and bug-fixes to:
H A Dinc.mk12 # Please send copies of changes and bug-fixes to:
H A Dinit.mk12 # Please send copies of changes and bug-fixes to:
H A Dlinks.mk12 # Please send copies of changes and bug-fixes to:
/freebsd-10.0-release/usr.sbin/mfiutil/
H A Dmfi_volume.c118 uint8_t changes, policy; local
124 changes = policy ^ old->default_cache_policy;
125 if (changes & MR_LD_CACHE_ALLOW_WRITE_CACHE)
129 if (changes & MR_LD_CACHE_ALLOW_READ_CACHE)
133 if (changes & MR_LD_CACHE_WRITE_BACK)
137 if (changes & (MR_LD_CACHE_READ_AHEAD | MR_LD_CACHE_READ_ADAPTIVE))
142 if (changes & MR_LD_CACHE_WRITE_CACHE_BAD_BBU)
/freebsd-10.0-release/contrib/top/
H A DMakefile.X8 # DO NOT EDIT "Makefile"!!!! Make changes to "Makefile.X" and rerun
/freebsd-10.0-release/etc/periodic/daily/
H A DMakefile41 490.status-pkg-changes
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_delta/
H A Dcompat.c118 apr_hash_t *changes; /* REPOS_RELPATH -> struct change_node */
209 struct change_node *change = svn_hash_gets(eb->changes, relpath);
224 svn_hash_sets(eb->changes, relpath, change);
294 for (hi = apr_hash_first(pool, eb->changes); hi; hi = apr_hash_next(hi))
383 /* Fall through to possibly make changes post-copy. */
466 const struct change_node *change = svn_hash_gets(eb->changes,
976 eb->changes = apr_hash_make(pool);
1026 apr_hash_t *changes;
1035 apr_hash_t *changes)
1040 change = svn_hash_gets(changes, relpat
117 apr_hash_t *changes; /* REPOS_RELPATH -> struct change_node */ member in struct:ev2_edit_baton
1025 apr_hash_t *changes; member in struct:editor_baton
1033 insert_change(const char *relpath, apr_hash_t *changes) argument
1450 get_sorted_paths(apr_hash_t *changes, const char *base_relpath, apr_pool_t *scratch_pool) argument
[all...]

Completed in 377 milliseconds

12345