Home
last modified time | relevance | path

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

12345678910>>...27

/freebsd/contrib/diff/src/
H A Ded.c43 enum changes changes; in print_ed_hunk() local
50 changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); in print_ed_hunk()
51 if (!changes) in print_ed_hunk()
58 fprintf (outfile, "%c\n", change_letter[changes]); in print_ed_hunk()
61 if (changes != OLD) in print_ed_hunk()
98 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); in pr_forward_ed_hunk() local
99 if (!changes) in pr_forward_ed_hunk()
104 fprintf (outfile, "%c", change_letter[changes]); in pr_forward_ed_hunk()
110 if (changes == OLD) in pr_forward_ed_hunk()
141 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); in print_rcs_hunk() local
[all …]
H A Dnormal.c47 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); in print_normal_hunk() local
48 if (!changes) in print_normal_hunk()
55 fprintf (outfile, "%c", change_letter[changes]); in print_normal_hunk()
60 if (changes & OLD) in print_normal_hunk()
64 if (changes == CHANGED) in print_normal_hunk()
68 if (changes & NEW) in print_normal_hunk()
H A Danalyze.c776 briefly_report (int changes, struct file_data const filevec[]) in briefly_report() argument
778 if (changes) in briefly_report()
784 changes = 2; in briefly_report()
787 return changes; in briefly_report()
798 int changes; in diff_2_files() local
813 changes = 1; in diff_2_files()
817 changes = 0; in diff_2_files()
847 changes = 1; in diff_2_files()
854 changes = 0; in diff_2_files()
860 changes = briefly_report (changes, cmp->file); in diff_2_files()
[all …]
H A Dside.c241 enum changes changes = in print_sdiff_hunk() local
243 if (!changes) in print_sdiff_hunk()
257 if (changes == CHANGED) in print_sdiff_hunk()
261 changes = (i <= last0 ? OLD : 0) + (j <= last1 ? NEW : 0); in print_sdiff_hunk()
267 if (changes & NEW) in print_sdiff_hunk()
275 if (changes & OLD) in print_sdiff_hunk()
/freebsd/sys/net/
H A Dslcompress.c159 u_int changes = 0; in sl_compress_tcp() local
277 changes |= NEW_U; in sl_compress_tcp()
288 changes |= NEW_W; in sl_compress_tcp()
296 changes |= NEW_A; in sl_compress_tcp()
304 changes |= NEW_S; in sl_compress_tcp()
307 switch(changes) { in sl_compress_tcp()
335 changes = SPECIAL_I; in sl_compress_tcp()
343 changes = SPECIAL_D; in sl_compress_tcp()
352 changes |= NEW_I; in sl_compress_tcp()
355 changes |= TCP_PUSH_BIT; in sl_compress_tcp()
[all …]
/freebsd/usr.sbin/ppp/
H A Dslcompress.c166 register u_int changes = 0; in sl_compress_tcp() local
289 changes |= NEW_U; in sl_compress_tcp()
302 changes |= NEW_W; in sl_compress_tcp()
310 changes |= NEW_A; in sl_compress_tcp()
318 changes |= NEW_S; in sl_compress_tcp()
320 switch (changes) { in sl_compress_tcp()
350 changes = SPECIAL_I; in sl_compress_tcp()
358 changes = SPECIAL_D; in sl_compress_tcp()
367 changes |= NEW_I; in sl_compress_tcp()
370 changes |= TCP_PUSH_BIT; in sl_compress_tcp()
[all …]
/freebsd/contrib/diff/
H A DAUTHORS33 Assigns changes to diff.
36 Assigns changes to diff.
42 Assigns changes to GNU Diff.
45 Assigns changes to diff (for -D).
48 Disclaims changes by Thomas May to diff.
51 Disclaims changes to diff.
54 Disclaims changes by Wayne Davison to diff.
57 Disclaims changes to diff.
61 Disclaims changes to GNU Diff.
65 Disclaims changes to GNU Diff by Paul Eggert.
[all …]
/freebsd/contrib/ntp/sntp/libevent/
H A Dkqueue.c78 struct kevent *changes; member
141 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); in kq_init()
142 if (kqueueop->changes == NULL) in kq_init()
150 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); in kq_init()
151 kqueueop->changes[0].ident = -1; in kq_init()
152 kqueueop->changes[0].filter = EVFILT_READ; in kq_init()
153 kqueueop->changes[0].flags = EV_ADD; in kq_init()
160 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || in kq_init()
212 struct event_change *in_ch = &changelist->changes[ in kq_build_changes_list()
271 struct kevent *changes; kq_dispatch() local
[all...]
H A Ddevpoll.c60 struct pollfd *changes; member
91 if (pwrite(devpollop->dpfd, devpollop->changes, in devpoll_commit()
112 pfd = &devpollop->changes[devpollop->nchanges++]; in devpoll_queue()
154 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd)); in devpoll_init()
155 if (devpollop->changes == NULL) { in devpoll_init()
302 if (devpollop->changes) in devpoll_dealloc()
303 mm_free(devpollop->changes); in devpoll_dealloc()
/freebsd/contrib/libevent/
H A Dkqueue.c78 struct kevent *changes; member
141 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); in kq_init()
142 if (kqueueop->changes == NULL) in kq_init()
150 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); in kq_init()
151 kqueueop->changes[0].ident = -1; in kq_init()
152 kqueueop->changes[0].filter = EVFILT_READ; in kq_init()
153 kqueueop->changes[0].flags = EV_ADD; in kq_init()
160 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || in kq_init()
212 struct event_change *in_ch = &changelist->changes[i]; in kq_build_changes_list()
226 newchanges = mm_realloc(kqop->changes, in kq_build_changes_list()
[all …]
H A Ddevpoll.c60 struct pollfd *changes; member
91 if (pwrite(devpollop->dpfd, devpollop->changes, in devpoll_commit()
112 pfd = &devpollop->changes[devpollop->nchanges++]; in devpoll_queue()
154 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd)); in devpoll_init()
155 if (devpollop->changes == NULL) { in devpoll_init()
302 if (devpollop->changes) in devpoll_dealloc()
303 mm_free(devpollop->changes); in devpoll_dealloc()
/freebsd/contrib/pf/libevent/
H A Dkqueue.c65 struct kevent *changes; member
114 kqueueop->changes = malloc(NEVENT * sizeof(struct kevent)); in kq_init()
115 if (kqueueop->changes == NULL) { in kq_init()
121 free (kqueueop->changes); in kq_init()
128 kqueueop->changes[0].ident = -1; in kq_init()
129 kqueueop->changes[0].filter = EVFILT_READ; in kq_init()
130 kqueueop->changes[0].flags = EV_ADD; in kq_init()
137 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || in kq_init()
141 free(kqueueop->changes); in kq_init()
168 newchange = realloc(kqop->changes, in kq_insert()
[all …]
/freebsd/crypto/openssl/
H A DNEWS.md4 This file gives a brief overview of the major changes between each OpenSSL
21 ### Major changes between OpenSSL 3.0.14 and OpenSSL 3.0.15 [3 Sep 2024]
34 ### Major changes between OpenSSL 3.0.13 and OpenSSL 3.0.14 [4 Jun 2024]
46 ### Major changes between OpenSSL 3.0.12 and OpenSSL 3.0.13 [30 Jan 2024]
58 ### Major changes between OpenSSL 3.0.11 and OpenSSL 3.0.12 [24 Oct 2023]
63 ### Major changes between OpenSSL 3.0.10 and OpenSSL 3.0.11 [19 Sep 2023]
68 ### Major changes between OpenSSL 3.0.9 and OpenSSL 3.0.10 [1 Aug 2023]
74 ### Major changes between OpenSSL 3.0.8 and OpenSSL 3.0.9 [30 May 2023]
85 ### Major changes between OpenSSL 3.0.7 and OpenSSL 3.0.8 [7 Feb 2023]
97 ### Major changes between OpenSSL 3.0.6 and OpenSSL 3.0.7 [1 Nov 2022]
[all …]
/freebsd/tools/regression/tmpfs/
H A Dh_tools.c98 struct kevent *changes, event; in kqueue_main() local
106 changes = malloc(sizeof(struct kevent) * (argc - 1)); in kqueue_main()
107 if (changes == NULL) in kqueue_main()
117 EV_SET(&changes[i], fd, EVFILT_VNODE, in kqueue_main()
135 (void)kevent(kq, changes, argc, &event, 1, &to); in kqueue_main()
145 nev = kevent(kq, changes, argc, &event, 1, &to); in kqueue_main()
150 if (event.ident == changes[i].ident) in kqueue_main()
172 close(changes[i].ident); in kqueue_main()
173 free(changes); in kqueue_main()
/freebsd/contrib/netbsd-tests/fs/tmpfs/
H A Dh_tools.c132 struct kevent *changes, event; in kqueue_main() local
140 changes = malloc(sizeof(struct kevent) * argc); in kqueue_main()
141 if (changes == NULL) in kqueue_main()
151 EV_SET(&changes[i], fd, EVFILT_VNODE, in kqueue_main()
169 (void)kevent(kq, changes, argc, &event, 1, &to); in kqueue_main()
179 nev = kevent(kq, changes, argc, &event, 1, &to); in kqueue_main()
184 if (event.ident == changes[i].ident) in kqueue_main()
206 close(changes[i].ident); in kqueue_main()
207 free(changes); in kqueue_main()
/freebsd/contrib/ntp/
H A DREADME.patches11 > (make and test your changes to ntp-stable first)
12 > (commit your changes to ntp-stable)
14 > bk pull ../ntp-stable (get your changes from ntp-stable)
15 > (resolve any problems and test your changes)
16 > (commit your changes to ntp-dev)
18 With the current release of bitkeeper it is *much* easier to move changes
19 from ntp-stable to ntp-dev than it is to move changes from ntp-dev to
22 If you make your changes in the above order and then submit them,
/freebsd/contrib/jemalloc/
H A DFREEBSD-upgrade66 changes="${src}/FREEBSD-changes"
150 merge-changes) # Merge local changes that were made since the previous import.
157 diff -ru -X ${src}/FREEBSD-Xlist ${work} ../jemalloc > ${changes} || true
161 patch -p1 < ${changes} || true
183 rm -rf ${tmpdir} ${changes}
/freebsd/contrib/tzcode/
H A DCONTRIBUTING15 ## Contributing technical changes
17 To email small changes, please run a POSIX shell command like
21 For more-elaborate or possibly controversial changes,
31 For changes that fix sensitive security-related bugs, please see the
34 Please submit changes against either the latest release
52 * Switch to a new branch for the changes. Choose a different
64 changes by citing reliable sources.
66 * Debug the changes locally, e.g.:
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dmld-mac80211.c762 u64 changes) in iwl_mvm_mld_vif_cfg_changed_station()
776 if (changes & BSS_CHANGED_QOS && vif->cfg.assoc && link_conf->qos) in iwl_mvm_mld_vif_cfg_changed_station()
779 if (changes & BSS_CHANGED_ERP_SLOT) in iwl_mvm_mld_vif_cfg_changed_station()
787 if ((changes & BSS_CHANGED_BANDWIDTH) && in iwl_mvm_mld_vif_cfg_changed_station()
813 iwl_mvm_bss_info_changed_station_common(mvm, vif, link_conf, changes); in iwl_mvm_mld_link_info_changed_ap_ibss()
854 u64 changes) in iwl_mvm_mld_link_info_changed()
865 if (changes == BSS_CHANGED_IDLE) in iwl_mvm_mld_link_info_changed()
874 if (changes & BSS_CHANGED_ASSOC) { in iwl_mvm_mld_link_info_changed()
946 iwl_mvm_bss_info_changed_station_assoc(mvm, vif, changes); in iwl_mvm_mld_mac_conf_tx()
949 if (changes in iwl_mvm_mld_mac_conf_tx()
630 iwl_mvm_mld_link_info_changed_station(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_bss_conf * link_conf,u64 changes) iwl_mvm_mld_link_info_changed_station() argument
714 iwl_mvm_mld_vif_cfg_changed_station(struct iwl_mvm * mvm,struct ieee80211_vif * vif,u64 changes) iwl_mvm_mld_vif_cfg_changed_station() argument
807 iwl_mvm_mld_link_info_changed_ap_ibss(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_bss_conf * link_conf,u64 changes) iwl_mvm_mld_link_info_changed_ap_ibss() argument
849 iwl_mvm_mld_link_info_changed(struct ieee80211_hw * hw,struct ieee80211_vif * vif,struct ieee80211_bss_conf * link_conf,u64 changes) iwl_mvm_mld_link_info_changed() argument
885 iwl_mvm_mld_vif_cfg_changed(struct ieee80211_hw * hw,struct ieee80211_vif * vif,u64 changes) iwl_mvm_mld_vif_cfg_changed() argument
[all...]
/freebsd/contrib/tzdata/
H A DCONTRIBUTING15 ## Contributing technical changes
17 To email small changes, please run a POSIX shell command like
21 For more-elaborate or possibly controversial changes,
31 For changes that fix sensitive security-related bugs, please see the
34 Please submit changes against either the latest release
52 * Switch to a new branch for the changes. Choose a different
64 changes by citing reliable sources.
66 * Debug the changes locally, e.g.:
/freebsd/contrib/wpa/wpa_supplicant/
H A Dbss.c599 u32 changes = 0; in wpa_bss_compare_res() local
603 changes |= WPA_BSS_FREQ_CHANGED_FLAG; in wpa_bss_compare_res()
606 changes |= WPA_BSS_SIGNAL_CHANGED_FLAG; in wpa_bss_compare_res()
609 changes |= WPA_BSS_PRIVACY_CHANGED_FLAG; in wpa_bss_compare_res()
612 changes |= WPA_BSS_MODE_CHANGED_FLAG; in wpa_bss_compare_res()
616 return changes; in wpa_bss_compare_res()
617 changes |= WPA_BSS_IES_CHANGED_FLAG; in wpa_bss_compare_res()
620 changes |= WPA_BSS_WPAIE_CHANGED_FLAG; in wpa_bss_compare_res()
623 changes |= WPA_BSS_RSNIE_CHANGED_FLAG; in wpa_bss_compare_res()
626 changes |= WPA_BSS_WPS_CHANGED_FLAG; in wpa_bss_compare_res()
[all …]
/freebsd/tools/test/stress2/misc/
H A Dkevent10.sh71 struct kevent changes;
79 memset(&changes, 0, sizeof(struct kevent));
81 if (kevent(0, &changes, -1, &events, 1, 0) == -1)
/freebsd/contrib/file/
H A DRELEASE-PROCEDURE8 4) Commit changes into CVS
28 ChangeLog changes. Historically we don't mention magic changes in the
29 ChangeLog or the mail message, only source changes.
/freebsd/usr.sbin/mfiutil/
H A Dmfi_volume.c118 uint8_t changes, policy; in update_cache_policy() local
124 changes = policy ^ old->default_cache_policy; in update_cache_policy()
125 if (changes & MR_LD_CACHE_ALLOW_WRITE_CACHE) in update_cache_policy()
129 if (changes & MR_LD_CACHE_ALLOW_READ_CACHE) in update_cache_policy()
133 if (changes & MR_LD_CACHE_WRITE_BACK) in update_cache_policy()
137 if (changes & (MR_LD_CACHE_READ_AHEAD | MR_LD_CACHE_READ_ADAPTIVE)) in update_cache_policy()
142 if (changes & MR_LD_CACHE_WRITE_CACHE_BAD_BBU) in update_cache_policy()
/freebsd/lib/libz/
H A DFREEBSD-upgrade2 changes were made to support build of libsa and to suppress certain
3 compiler warnings, we upstream our local changes whenever they would
12 have the required changes. Test universe and commit them.

12345678910>>...27