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

1234567

/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dchanges.c0 /* changes.h --- FSX changed paths lists container
28 #include "changes.h"
90 /* All changes of all change lists concatenated.
92 apr_array_header_t *changes; member in struct:svn_fs_x__changes_t
100 * an initial capacity of INITIAL_COUNT changes. The PATH and BUILDER
107 svn_fs_x__changes_t *changes = apr_pcalloc(result_pool, sizeof(*changes)); local
109 changes->changes = apr_array_make(result_pool, (int)initial_count,
111 changes
121 svn_fs_x__changes_t *changes = changes_create_body(initial_count, local
131 append_change(svn_fs_x__changes_t *changes, svn_fs_x__change_t *change) argument
175 svn_fs_x__changes_append_list(apr_size_t *list_index, svn_fs_x__changes_t *changes, apr_array_header_t *list) argument
197 svn_fs_x__changes_estimate_size(const svn_fs_x__changes_t *changes) argument
212 svn_fs_x__changes_get_list(apr_array_header_t **list, const svn_fs_x__changes_t *changes, apr_size_t idx, svn_fs_x__changes_context_t *context, apr_pool_t *result_pool) argument
291 svn_fs_x__write_changes_container(svn_stream_t *stream, const svn_fs_x__changes_t *changes, apr_pool_t *scratch_pool) argument
351 svn_fs_x__changes_t *changes = apr_pcalloc(result_pool, sizeof(*changes)); local
401 svn_fs_x__changes_t *changes = in; local
436 svn_fs_x__changes_t *changes = (svn_fs_x__changes_t *)data; local
478 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. */
80 const svn_fs_x__changes_t *changes,
92 const svn_fs_x__changes_t *changes,
[all...]
H A Dlow_level.h173 /* Read up to MAX_COUNT of the changes from STREAM and store them in
177 svn_fs_x__read_changes(apr_array_header_t **changes,
192 /* Read all the changes from STREAM and invoke CHANGE_RECEIVER on each change.
211 apr_hash_t *changes,
H A Dtemp_serializer.c683 * room for future in-place changes by svn_fs_x__replace_dir_entry. */
1135 svn_fs_x__changes_list_t *changes = in; local
1141 context = svn_temp_serializer__init(changes,
1142 sizeof(*changes),
1143 changes->count * 250,
1147 (const void * const *)&changes->changes,
1148 changes->count * sizeof(*changes->changes));
1171 svn_fs_x__changes_list_t *changes = (svn_fs_x__changes_list_t *)data; local
[all...]
/freebsd-11-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-11-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-11-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-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Dcompat.c51 /* Path changes reported so far for the current revision.
54 apr_hash_t *changes;
103 if (b->changes == NULL)
104 b->changes = svn_hash__make(b->changes_pool);
107 apr_hash_set(b->changes, path, change->path.len, change_copy);
124 entry->changed_paths = b->changes;
128 entry->changed_paths2 = b->changes;
137 b->changes = NULL;
162 baton.changes = NULL;
53 apr_hash_t *changes; member in struct:log_entry_receiver_baton_t
/freebsd-11-stable/sys/net/
H A Dslcompress.c161 u_int changes = 0; local
272 * receiver expects changes in the order: urgent, window,
279 changes |= NEW_U;
290 changes |= NEW_W;
298 changes |= NEW_A;
306 changes |= NEW_S;
309 switch(changes) {
329 * actual changes match one of our special case encodings --
338 changes = SPECIAL_I;
346 changes
458 u_int hlen, changes; local
[all...]
/freebsd-11-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"
95 merge-changes) # Merge local changes that were made since the previous import.
102 diff -ru -X ${src}/FREEBSD-Xlist ${workname} jemalloc > ${changes} || true
106 patch -p1 < ${changes}
[all...]
/freebsd-11-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-11-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-11-stable/contrib/ntp/scripts/build/
H A DgenCommitLog12 bk changes -v -m -r${CLTAG}.. > CommitLog.new
/freebsd-11-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-11-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-11-stable/contrib/wpa/wpa_supplicant/
H A Dbss.c533 u32 changes = 0; local
537 changes |= WPA_BSS_FREQ_CHANGED_FLAG;
540 changes |= WPA_BSS_SIGNAL_CHANGED_FLAG;
543 changes |= WPA_BSS_PRIVACY_CHANGED_FLAG;
546 changes |= WPA_BSS_MODE_CHANGED_FLAG;
550 return changes;
551 changes |= WPA_BSS_IES_CHANGED_FLAG;
554 changes |= WPA_BSS_WPAIE_CHANGED_FLAG;
557 changes |= WPA_BSS_RSNIE_CHANGED_FLAG;
560 changes |
570 notify_bss_changes(struct wpa_supplicant *wpa_s, u32 changes, const struct wpa_bss *bss) argument
608 u32 changes; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dbranch_compat.c350 check_existence(apr_hash_t *changes, argument
353 apr_pool_t *changes_pool = apr_hash_pool_get(changes);
355 change_node_t *change = svn_hash_gets(changes, relpath);
371 change = svn_hash_gets(changes, parent_path);
390 * that subtree. (Other changes inside that subtree are not allowed.) We
396 insert_change(change_node_t **change_p, apr_hash_t *changes, argument
400 apr_pool_t *changes_pool = apr_hash_pool_get(changes);
401 change_node_t *change = svn_hash_gets(changes, relpath);
449 svn_hash_sets(changes, apr_pstrdup(changes_pool, relpath), change);
468 delete_subtree(apr_hash_t *changes, argument
661 apr_hash_t *changes; member in struct:svn_branch__txn_priv_t
672 get_unsorted_paths(apr_hash_t *changes, apr_pool_t *scratch_pool) argument
719 find_enclosing_copy(apr_hash_t *changes, const char *relpath, apr_pool_t *result_pool) argument
749 fetch_base_props(apr_hash_t **base_props, apr_hash_t *changes, const char *repos_relpath, svn_branch__compat_fetch_func_t fetch_func, void *fetch_baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-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-11-stable/usr.sbin/ntp/doc/hints/
H A DMakefile8 FILES= a-ux aix bsdi changes decosf1 decosf2 freebsd hpux linux mpeix \
/freebsd-11-stable/contrib/subversion/subversion/svnbench/
H A Dnull-log-cmd.c56 apr_int64_t changes;
115 lb->changes += count;
229 "%15s changes, %15s in merged revisions\n"),
235 svn__ui64toa_sep(lb.changes, ',', pool),
241 "%15s changes\n"),
244 svn__ui64toa_sep(lb.changes, ',', pool)));
55 apr_int64_t changes; member in struct:log_receiver_baton
/freebsd-11-stable/contrib/bmake/mk/
H A Dlibnames.mk12 # Please send copies of changes and bug-fixes to:
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dexport-env.mk3 # our normal .export, subsequent changes affect the environment

Completed in 166 milliseconds

1234567