Home
last modified time | relevance | path

Searched full:changes (Results 1 – 25 of 4180) sorted by relevance

12345678910>>...168

/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/crypto/heimdal/
H A DNEWS93 API changes
173 Changes in release 1.1
187 Changes in release 1.0.2
193 Changes in release 1.0.1
209 Changes in release 1.0
231 Changes in release 0.8.1
244 Changes in release 0.8
284 Changes in release 0.7.2
306 Changes in release 0.7.1
310 Changes in release 0.7
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp60 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange, in replaceWhitespace()
70 Changes.push_back(Change(Tok, /*CreateReplacement=*/false, in addUntouchableToken()
95 Changes.push_back( in replaceWhitespaceInToken()
104 if (Changes.empty()) in generateReplacements()
107 llvm::sort(Changes, Change::IsBeforeInFile(SourceMgr)); in generateReplacements()
130 Changes[0].PreviousEndOfTokenColumn = 0; in calculateLineBreakInformation()
131 Change *LastOutsideTokenChange = &Changes[0]; in calculateLineBreakInformation()
132 for (unsigned I = 1, e = Changes.size(); I != e; ++I) { in calculateLineBreakInformation()
133 auto &C = Changes[I]; in calculateLineBreakInformation()
134 auto &P = Changes[I - 1]; in calculateLineBreakInformation()
[all …]
H A DWhitespaceManager.h90 /// Functor to sort changes in original source order.
122 // Changes might be in the middle of a token, so we cannot just keep the
215 /// Align consecutive C/C++ preprocessor macros over all \c Changes.
218 /// Align consecutive assignments over all \c Changes.
221 /// Align consecutive bitfields over all \c Changes.
229 /// Align consecutive declarations over all \c Changes.
232 /// Align consecutive declarations over all \c Changes.
235 /// Align consecutive short case statements over all \c Changes.
238 /// Align consecutive TableGen DAGArg colon over all \c Changes.
241 /// Align consecutive TableGen cond operator colon over all \c Changes.
[all …]
/freebsd/contrib/tzdata/
H A DNEWS10 Changes to future timestamps
23 Changes to past timestamps
41 Other data changes
43 The temporary hacks used for North American timekeeping changes
50 Changes to code
79 Changes to documentation
92 Changes to future timestamps
116 Changes to code
138 Changes to commentary
147 Changes t
[all...]
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,
29 Changes should contain commentary citing reliable sources.
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/tzcode/
H A DNEWS10 Changes to future timestamps
23 Changes to past timestamps
41 Other data changes
43 The temporary hacks used for North American timekeeping changes
50 Changes to code
79 Changes to documentation
92 Changes to future timestamps
116 Changes to code
138 Changes to commentary
147 Changes t
[all...]
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,
29 Changes should contain commentary citing reliable sources.
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/llvm-project/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp115 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument
118 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState()
136 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes,
141 /// GetTestResult - Get the test result for the active set \p Changes with
142 /// \p Required changes from the cache, executing the test if necessary.
144 /// \param Changes - The set of active changes being minimized, which should
146 /// \param Required - The set of changes which have previously been
149 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
152 /// Helper object for minimizing an active set of changes.
159 /// UpdatedSearchState - Callback used when the search state changes.
[all …]
H A DDeltaAlgorithm.cpp16 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { in GetTestResult() argument
17 if (FailedTestsCache.count(Changes)) in GetTestResult()
20 bool Result = ExecuteOneTest(Changes); in GetTestResult()
22 FailedTestsCache.insert(Changes); in GetTestResult()
43 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() argument
45 // Invariant: union(Res) == Changes in Delta()
46 UpdatedSearchState(Changes, Sets); in Delta()
50 return Changes; in Delta()
54 if (Search(Changes, Sets, Res)) in Delta()
62 return Changes; in Delta()
[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/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDeltaAlgorithm.h29 /// (2) If the predicate returns true for a set of changes, it should return
48 /// GetTestResult - Get the test result for the \p Changes from the
51 /// \param Changes - The change set to test.
53 bool GetTestResult(const changeset_ty &Changes);
55 /// Split - Partition a set of changes \p S into one or two subsets.
58 /// Delta - Minimize a set of \p Changes which has been partitioned into
60 changeset_ty Delta(const changeset_ty &Changes,
64 /// removed from \p Changes while still satisfying the predicate.
66 /// \param Res - On success, a subset of Changes which satisfies the
69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
[all …]
H A DDAGDeltaAlgorithm.h27 /// The DAG should be used to represent dependencies in the changes which are
34 /// eagerly prune large subsets of changes. As with \see DeltaAlgorithm, the DAG
53 /// Run - Minimize the DAG formed by the \p Changes vertices and the
55 /// changes and returning the smallest set which still satisfies the test
58 /// \param Changes The list of changes.
60 /// \param Dependencies The list of dependencies amongst changes. For each
61 /// (x,y) in \p Dependencies, both x and y must be in \p Changes. The
65 changeset_ty Run(const changeset_ty &Changes,
68 /// UpdatedSearchState - Callback used when the search state changes.
69 virtual void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument
/freebsd/contrib/pkgconf/
H A DNEWS1 Changes from previous version of pkgconf
4 Changes from 2.5.1 to 3.0.0:
29 time, and no longer embeds the pkgconf version in its output. Both changes
97 * CLI changes:
114 * pkg.m4 changes:
162 Changes from 2.5.0 to 2.5.1:
167 Changes from 2.4.3 to 2.5.0:
202 Changes from 2.4.2 to 2.4.3:
208 Changes from 2.4.1 to 2.4.2:
217 Changes from 2.4.0 to 2.4.1:
[all …]
/freebsd/crypto/openssl/
H A DNEWS.md4 This file gives a brief overview of the major changes between each OpenSSL
5 release. For more details please read the CHANGES file.
26 ### Major changes between OpenSSL 3.5.7 and OpenSSL 3.5.8 [25 Aug 2026]
70 ### Major changes between OpenSSL 3.5.6 and OpenSSL 3.5.7 [9 Jun 2026]
127 ### Major changes between OpenSSL 3.5.5 and OpenSSL 3.5.6 [7 Apr 2026]
157 ### Major changes between OpenSSL 3.5.4 and OpenSSL 3.5.5 [27 Jan 2026]
203 ### Major changes between OpenSSL 3.5.3 and OpenSSL 3.5.4 [30 Sep 2025]
223 ### Major changes between OpenSSL 3.5.2 and OpenSSL 3.5.3 [16 Sep 2025]
236 ### Major changes between OpenSSL 3.5.1 and OpenSSL 3.5.2 [5 Aug 2025]
244 ### Major changes between OpenSSL 3.5.0 and OpenSSL 3.5.1 [1 Jul 2025]
[all …]
/freebsd/contrib/lutok/
H A DNEWS1 # Major changes between releases
3 ## Changes in version 0.6.2
9 ## Changes in version 0.6.1
15 ## Changes in version 0.6
31 ## Changes in version 0.5
43 ## Changes in version 0.4
54 Interface changes:
68 ## Changes in version 0.3
75 However, because of incompatible changes to the Lua API, this release
81 Interface changes:
[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...]
/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 …]
/freebsd/
H A DCONTRIBUTING.md19 changes where the contributor already has a GitHub account.
30 _src_ repository. Pull Requests are accepted for **small, low-risk** changes
33 For complex, controversial, security-related, or discussion-heavy changes, use
42 * Affects roughly **10 or fewer files** and **fewer than 200 lines of changes**.
48 * Security-related changes.
50 * Changes that require design discussion, or are likely to be controversial.
52 * Changes needing specialized or cross-subsystem review.
53 * Large refactors or mechanical tree-wide changes.
54 * Changes generated by AI tools without substantial human review and validation.
62 * The changes follow FreeBSD's style guide. See [Style](#Style).
[all …]
/freebsd/usr.sbin/ppp/
H A Dslcompress.c166 register u_int changes = 0; in sl_compress_tcp() local
283 * changes in the order: urgent, window, ack, seq (the order minimizes the in sl_compress_tcp()
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()
341 * actual changes match one of our special case encodings -- send packet in sl_compress_tcp()
350 changes = SPECIAL_I; in sl_compress_tcp()
358 changes = SPECIAL_D; in sl_compress_tcp()
[all …]
/freebsd/sys/net/
H A Dslcompress.c159 u_int changes = 0; in sl_compress_tcp() local
270 * receiver expects changes in the order: urgent, window, in sl_compress_tcp()
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()
326 * actual changes match one of our special case encodings -- in sl_compress_tcp()
335 changes = SPECIAL_I; in sl_compress_tcp()
343 changes = SPECIAL_D; in sl_compress_tcp()
[all …]
/freebsd/share/doc/papers/relengr/
H A D3.t147 Further changes are requested in a change log rather than
154 changes to the distribution are no longer made by people outside
222 to concentrate on tracking the changes being made to the system
230 they accurately reflect any changes to the programs that
260 begins a careful review of all the changes to the
267 All the changes are checked to ensure that they are reasonable,
269 The process often turns up questionable changes.
283 the changes were removed from the source before final distribution.
286 changes to the system.
292 changes to every user-level command
[all …]
/freebsd/crypto/openssh/
H A D.skipped-commit-ids5 a337e886a49f96701ccbc4832bed086a68abfa85 Makefile changes
31 1e0a2692b7e20b126dda60bf04999d1d30d959d8 sshd relinking makefile changes
34 ef9341d5a50f0d33e3a6fbe995e92964bc7ef2d3 Makefile relinking changes
36 866cfcc1955aef8f3fc32da0b70c353a1b859f2e ssh-agent relink changes
42 a959fc45ea3431b36f52eda04faefc58bcde00db groupaccess.c changes
50 eb4169949bf61188fb7336b11b73833019d10d7b Makefile changes
51 df5c950444e208b320265fa8a1afd676e2edfa6e Makefile changes
77 e39b3902fe1d6c4a7ba6a3c58e072219f3c1e604 Makefile changes
/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/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 …]

12345678910>>...168