Home
last modified time | relevance | path

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

12345678910>>...30

/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/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/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/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/crypto/openssl/doc/designs/ddd/
H A DREPORT.md5 requirement to develop a QUIC API that required only minimal changes to existing
12 diffs were the expected changes which would be needed to the baseline demos to
14 able to support QUIC. This analysis concluded that the changes needed to
22 This document discusses the planned changes and the actual changes for each demo
26 unplanned changes have been folded into the original baseline demo files guarded
29 QUIC. (The originally planned changes, and the final changes, are added in
30 separate, clearly-labelled commits; to view the originally planned changes only,
39 ### Originally planned changes
49 ### Actual changes
51 The following additional changes needed to be made:
[all …]
/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/contrib/lyaml/
H A DNEWS.md1 # lyaml NEWS - User visible changes
3 ## Noteworthy changes in release 6.2.8 (2022-10-22) [stable]
14 ## Noteworthy changes in release 6.2.7 (2020-11-27) [stable]
21 ## Noteworthy changes in release 6.2.6 (2020-08-28) [stable]
29 ## Noteworthy changes in release 6.2.5 (2020-04-15) [stable]
38 ## Noteworthy changes in release 6.2.4 (2019-07-20) [stable]
46 ## Noteworthy changes in release 6.2.3 (2018-09-16) [stable]
53 ## Noteworthy changes in release 6.2.2 (2018-03-28) [stable]
61 ## Noteworthy changes in release 6.2.1 (2018-02-20) [stable]
71 ## Noteworthy changes in release 6.2 (2017-11-26) [stable]
[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/crypto/openssl/
H A DNEWS.md4 This file gives a brief overview of the major changes between each OpenSSL
26 ### Major changes between OpenSSL 3.5.3 and OpenSSL 3.5.4 [30 Sep 2025]
46 ### Major changes between OpenSSL 3.5.2 and OpenSSL 3.5.3 [16 Sep 2025]
59 ### Major changes between OpenSSL 3.5.1 and OpenSSL 3.5.2 [5 Aug 2025]
67 ### Major changes between OpenSSL 3.5.0 and OpenSSL 3.5.1 [1 Jul 2025]
77 ### Major changes between OpenSSL 3.4 and OpenSSL 3.5.0 [8 Apr 2025]
83 changes:
132 ### Major changes between OpenSSL 3.4.0 and OpenSSL 3.4.1 [11 Feb 2025]
145 ### Major changes between OpenSSL 3.3 and OpenSSL 3.4.0 [22 Oct 2024]
151 changes:
[all …]
/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/crypto/openssh/
H A D.skipped-commit-ids3 a337e886a49f96701ccbc4832bed086a68abfa85 Makefile changes
29 1e0a2692b7e20b126dda60bf04999d1d30d959d8 sshd relinking makefile changes
32 ef9341d5a50f0d33e3a6fbe995e92964bc7ef2d3 Makefile relinking changes
34 866cfcc1955aef8f3fc32da0b70c353a1b859f2e ssh-agent relink changes
40 a959fc45ea3431b36f52eda04faefc58bcde00db groupaccess.c changes
67 e39b3902fe1d6c4a7ba6a3c58e072219f3c1e604 Makefile changes
/freebsd/contrib/jemalloc/
H A DFREEBSD-upgrade
/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.c710 u64 changes) in iwl_mvm_mld_link_info_changed_station() argument
729 if (changes & BSS_CHANGED_QOS && vif->cfg.assoc && link_conf->qos) in iwl_mvm_mld_link_info_changed_station()
732 if (changes & BSS_CHANGED_ERP_SLOT) in iwl_mvm_mld_link_info_changed_station()
740 if ((changes & BSS_CHANGED_BANDWIDTH) && in iwl_mvm_mld_link_info_changed_station()
766 iwl_mvm_bss_info_changed_station_common(mvm, vif, link_conf, changes); in iwl_mvm_mld_link_info_changed_station()
783 u64 changes) in iwl_mvm_mld_vif_cfg_changed_station() argument
794 if (changes == BSS_CHANGED_IDLE) in iwl_mvm_mld_vif_cfg_changed_station()
803 if (changes & BSS_CHANGED_ASSOC) { in iwl_mvm_mld_vif_cfg_changed_station()
873 iwl_mvm_bss_info_changed_station_assoc(mvm, vif, changes); in iwl_mvm_mld_vif_cfg_changed_station()
876 if (changes & BSS_CHANGED_PS) { in iwl_mvm_mld_vif_cfg_changed_station()
[all …]
/freebsd/contrib/tzdata/
H A DCONTRIBUTING16 ## Contributing technical changes
18 To email small changes, please run a POSIX shell command like
22 For more-elaborate or possibly controversial changes,
32 For changes that fix sensitive security-related bugs, please see the
35 Please submit changes against either the latest release
53 * Switch to a new branch for the changes. Choose a different
65 changes by citing reliable sources.
67 * 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)

12345678910>>...30