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

123456

/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dchanges.c0 /* changes.h --- FSX changed paths lists container
27 #include "changes.h"
96 /* All changes of all change lists concatenated.
98 apr_array_header_t *changes; member in struct:svn_fs_x__changes_t
106 * an initial capacity of INITIAL_COUNT changes. The PATH and BUILDER
113 svn_fs_x__changes_t *changes = apr_pcalloc(result_pool, sizeof(*changes)); local
115 changes->changes = apr_array_make(result_pool, (int)initial_count,
117 changes
127 svn_fs_x__changes_t *changes = changes_create_body(initial_count, local
137 append_change(svn_fs_x__changes_t *changes, svn_fs_x__change_t *change) argument
185 svn_fs_x__changes_append_list(apr_size_t *list_index, svn_fs_x__changes_t *changes, apr_array_header_t *list) argument
207 svn_fs_x__changes_estimate_size(const svn_fs_x__changes_t *changes) argument
222 svn_fs_x__changes_get_list(apr_array_header_t **list, const svn_fs_x__changes_t *changes, apr_size_t idx, apr_pool_t *pool) argument
289 svn_fs_x__write_changes_container(svn_stream_t *stream, const svn_fs_x__changes_t *changes, apr_pool_t *scratch_pool) argument
354 svn_fs_x__changes_t *changes = apr_pcalloc(result_pool, sizeof(*changes)); local
407 svn_fs_x__changes_t *changes = in; local
442 svn_fs_x__changes_t *changes = (svn_fs_x__changes_t *)data; local
483 const binary_change_t *changes local
[all...]
H A Dchanges.h0 /* changes.h --- FSX changed paths lists container
30 * changes to similar paths). Even more so, change lists from a larger
47 /* Create and populate changes containers. */
49 /* Create and return a new changes container with an initial capacity of
58 * and return its index in *LIST_INDEX. Append all changes from LIST to
63 svn_fs_x__changes_t *changes,
70 svn_fs_x__changes_estimate_size(const svn_fs_x__changes_t *changes);
72 /* Read changes containers. */
79 const svn_fs_x__changes_t *changes,
90 const svn_fs_x__changes_t *changes,
[all...]
H A Dtemp_serializer.c1116 /* reference to the changes */
1117 svn_fs_x__change_t **changes; member in struct:changes_data_t
1127 changes_data_t changes; local
1134 changes.count = array->nelts;
1135 changes.changes = (svn_fs_x__change_t **)array->elts;
1138 context = svn_temp_serializer__init(&changes,
1139 sizeof(changes),
1140 changes.count * 250,
1144 (const void * const *)&changes
1168 changes_data_t *changes = (changes_data_t *)data; local
[all...]
H A Dlow_level.h170 /* Read all the changes from STREAM and store them in *CHANGES,
173 svn_fs_x__read_changes(apr_array_header_t **changes,
187 /* Read all the changes from STREAM and invoke CHANGE_RECEIVER on each change.
206 apr_hash_t *changes,
/freebsd-10-stable/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)
/freebsd-10-stable/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
148 fold_change(apr_hash_t *changes, apr_hash_t *deletions, const change_t *change) argument
288 apr_hash_t *changes = apr_hash_make(pool); local
415 apr_array_header_t *changes = apr_array_make(pool, 4, sizeof(change)); local
[all...]
/freebsd-10-stable/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-stable/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-stable/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-stable/contrib/ntp/sntp/libevent/
H A Dkqueue.c73 struct kevent *changes; member in struct:kqop
136 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent));
137 if (kqueueop->changes == NULL)
145 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]);
146 kqueueop->changes[0].ident = -1;
147 kqueueop->changes[0].filter = EVFILT_READ;
148 kqueueop->changes[0].flags = EV_ADD;
155 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
207 struct event_change *in_ch = &changelist->changes[
258 struct kevent *changes; local
[all...]
H A Ddevpoll.c60 struct pollfd *changes; member in struct:devpollop
91 if (pwrite(devpollop->dpfd, devpollop->changes,
112 pfd = &devpollop->changes[devpollop->nchanges++];
154 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd));
155 if (devpollop->changes == NULL) {
302 if (devpollop->changes)
303 mm_free(devpollop->changes);
/freebsd-10-stable/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-stable/contrib/ntp/scripts/build/
H A DgenCommitLog12 bk changes -v -m -r${CLTAG}.. > CommitLog.new
/freebsd-10-stable/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-stable/contrib/netbsd-tests/fs/tmpfs/
H A Dh_tools.c132 struct kevent *changes, event; local
140 changes = malloc(sizeof(struct kevent) * argc);
141 if (changes == NULL)
151 EV_SET(&changes[i], fd, EVFILT_VNODE,
169 (void)kevent(kq, changes, argc, &event, 1, &to);
179 nev = kevent(kq, changes, argc, &event, 1, &to);
184 if (event.ident == changes[i].ident)
206 close(changes[i].ident);
207 free(changes);
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dtemp_serializer.c1135 /* reference to the changes */
1136 change_t **changes; member in struct:changes_data_t
1146 changes_data_t changes; local
1153 changes.count = array->nelts;
1154 changes.changes = (change_t **)array->elts;
1157 context = svn_temp_serializer__init(&changes,
1158 sizeof(changes),
1159 changes.count * 250,
1163 (const void * const *)&changes
1187 changes_data_t *changes = (changes_data_t *)data; local
[all...]
H A Dlow_level.h97 /* Read all the changes from STREAM and store them in *CHANGES,
100 svn_fs_fs__read_changes(apr_array_header_t **changes,
114 /* Read all the changes from STREAM and invoke CHANGE_RECEIVER on each change.
133 apr_hash_t *changes,
/freebsd-10-stable/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-stable/usr.sbin/ntp/doc/hints/
H A DMakefile8 FILES= a-ux aix bsdi changes decosf1 decosf2 freebsd hpux linux mpeix \
/freebsd-10-stable/contrib/subversion/subversion/svnbench/
H A Dnull-log-cmd.c56 apr_int64_t changes;
115 lb->changes += count;
225 "%15s changes, %15s in merged revisions\n"),
231 svn__ui64toa_sep(lb.changes, ',', pool),
237 "%15s changes\n"),
240 svn__ui64toa_sep(lb.changes, ',', pool)));
55 apr_int64_t changes; member in struct:log_receiver_baton
/freebsd-10-stable/contrib/subversion/subversion/include/
H A Dsvn_mergeinfo.h47 * complete list of changes merged to that path, either directly or via the
219 /** Merge a shallow copy of one mergeinfo, @a changes, into another mergeinfo
222 * Rangelists for merge source paths common to @a changes and @a mergeinfo may
238 svn_mergeinfo_t changes,
249 svn_mergeinfo_t changes,
313 * elements, @a rangelist and @a changes, placing the results in
321 * Note: @a rangelist and @a changes must be sorted as said by @c
335 const svn_rangelist_t *changes,
354 const svn_rangelist_t *changes,
/freebsd-10-stable/contrib/bmake/mk/
H A Dlibnames.mk12 # Please send copies of changes and bug-fixes to:
/freebsd-10-stable/contrib/bmake/unit-tests/
H A Dexport-env.mk3 # our normal .export, subsequent changes affect the environment

Completed in 197 milliseconds

123456