Home
last modified time | relevance | path

Searched full:since (Results 1 – 25 of 7153) sorted by relevance

12345678910>>...287

/freebsd-src/contrib/llvm-project/llvm/include/llvm-c/
H A Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
142 * \since LTO_API_VERSION=20
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
[all …]
H A DRemarks.h55 * \since REMARKS_API_VERSION=0
62 * \since REMARKS_API_VERSION=0
69 * \since REMARKS_API_VERSION=0
76 * \since REMARKS_API_VERSION=0
83 * \since REMARKS_API_VERSION=0
91 * \since REMARKS_API_VERSION=0
98 * \since REMARKS_API_VERSION=0
107 * \since REMARKS_API_VERSION=0
115 * \since REMARKS_API_VERSION=0
122 * \since REMARKS_API_VERSION=0
[all …]
/freebsd-src/contrib/llvm-project/libcxx/include/
H A Dnumeric20 constexpr T // constexpr since C++20
24 constexpr T // constexpr since C++20
28 constexpr typename iterator_traits<InputIterator>::value_type // constexpr since C++20
32 constexpr T // constexpr since C++20
36 constexpr T // constexpr since C++20
40 constexpr T // constexpr since C++20
44 constexpr T // constexpr since C++20
50 constexpr T // constexpr since C++20
55 constexpr T // constexpr since C++20
61 constexpr T // constexpr since
[all...]
H A Dmemory92 allocate_at_least(Alloc& a, size_type n); // Since C++23
110 }; // Since C++23
174 typedef ptrdiff_t difference_type; // since C++20
198 using uninitialized_copy_result = in_out_result<InputIterator, OutputIterator>; // since C++20
203 uninitialized_copy(InputIterator ifirst, Sentinel1 ilast, OutputIterator ofirst, Sentinel2 olast); // since C++20
208 uninitialized_copy(InputRange&& in_range, OutputRange&& out_range); // since C++20
219 using uninitialized_copy_n_result = in_out_result<InputIterator, OutputIterator>; // since C++20
224 uninitialized_copy_n(InputIterator ifirst, iter_difference_t<InputIterator> n, OutputIterator ofirst, Sentinel olast); // since C++20
235 ForwardIterator uninitialized_fill(ForwardIterator first, Sentinel last, const T& x); // since C++20
239 borrowed_iterator_t<ForwardRange> uninitialized_fill(ForwardRange&& range, const T& x); // since
[all...]
H A Diterator20 template<class> struct incrementable_traits; // since C++20
22 using iter_difference_t = see below; // since C++20
24 template<class> struct indirectly_readable_traits; // since C++20
26 using iter_value_t = see below; // since C++20
32 requires is_object_v<T> // since C++20
39 inline constexpr unspecified iter_move = unspecified; // since C++20, nodiscard as an extension
44 using iter_rvalue_reference_t = decltype(ranges::iter_move(declval<T&>())); // since C++20
49 concept indirectly_readable = see below; // since C++20
53 common_reference_t<iter_reference_t<T>, iter_value_t<T>&>; // since C++20
57 concept indirectly_writable = see below; // since
[all...]
H A Dalgorithm25 struct in_fun_result; // since C++20
28 struct in_in_result; // since C++20
31 struct in_out_result; // since C++20
34 struct in_in_out_result; // since C++20
37 struct in_out_out_result; // since C++20
40 struct min_max_result; // since C++20
43 struct in_found_result; // since C++20
46 struct in_value_result; // since C++23
49 indirect_strict_weak_order<projected<I, Proj>> Comp = ranges::less> // since C++20
53 indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less> // since
[all...]
H A Dstring56 using comparison_category = strong_ordering; // Since C++20 only for the specializations
105 noexcept(is_nothrow_default_constructible<allocator_type>::value); // constexpr since C++20
106 explicit basic_string(const allocator_type& a); // constexpr since C++20
107 basic_string(const basic_string& str); // constexpr since C++20
109 noexcept(is_nothrow_move_constructible<allocator_type>::value); // constexpr since C++20
111 const allocator_type& a = allocator_type()); // constexpr since C++20
113 const Allocator& a = Allocator()); // constexpr since C++20
115 basic_string&& str, size_type pos, const Allocator& a = Allocator()); // since C++23
117 basic_string&& str, size_type pos, size_type n, const Allocator& a = Allocator()); // since C++23
119 basic_string(const T& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17, constexpr since
[all...]
H A Dbitset47 charT zero = charT('0'), charT one = charT('1')); // until C++26, constexpr since C++23
51 charT zero = charT('0'), charT one = charT('1')); // since C++26
57 charT zero = charT('0'), charT one = charT('1')); // since C++26
63 charT zero = charT('0'), charT one = charT('1')); // constexpr since C++23
66 bitset& operator&=(const bitset& rhs) noexcept; // constexpr since C++23
67 bitset& operator|=(const bitset& rhs) noexcept; // constexpr since C++23
68 bitset& operator^=(const bitset& rhs) noexcept; // constexpr since C++23
69 bitset& operator<<=(size_t pos) noexcept; // constexpr since C++23
70 bitset& operator>>=(size_t pos) noexcept; // constexpr since C++23
71 bitset& set() noexcept; // constexpr since
[all...]
H A Dformat28 struct basic_format_string { // since C++23, exposition only before C++23
34 basic_format_string(runtime-format-string<charT> s) noexcept : str(s.str) {} // since C++26
39 using format_string = // since C++23, exposition only before C++23
42 using wformat_string = // since C++23, exposition only before C++23
45 template<class charT> struct runtime-format-string { // since C++26, exposition-only
136 enum class range_format { // since C++23
146 constexpr unspecified format_kind = unspecified; // since C++23
150 constexpr range_format format_kind<R> = see below; // since C++23
155 class range_formatter; // since C++23
159 struct range-default-formatter; // exposition only, since
[all...]
H A Dutility47 auto forward_like(auto&& x) noexcept -> see below; // since C++23
87 template <class U, class V> constexpr explicit(see-below) pair(pair<U, V>&); // since C++23
91 constexpr explicit(see-below) pair(const pair<U, V>&&); // since C++23
92 template <pair-like P> constexpr explicit(see-below) pair(P&&); // since C++23
97 constexpr const pair& operator=(const pair& p) const; // since C++23
100 constexpr const pair& operator=(const pair<U, V>& p) const; // since C++23
103 constexpr const pair& operator=(pair&& p) const; // since C++23
106 constexpr const pair& operator=(pair<U, V>&& p) const; // since C++23
107 template <pair-like P> constexpr pair& operator=(P&&); // since C++23
108 template <pair-like P> constexpr const pair& operator=(P&&) const; // since
[all...]
H A Dcharconv30 friend bool operator==(const to_chars_result&, const to_chars_result&) = default; // since C++20
31 constexpr explicit operator bool() const noexcept { return ec == errc{}; } // since C++26
35 int base = 10); // constexpr since C++23
61 friend bool operator==(const from_chars_result&, const from_chars_result&) = default; // since C++20
62 constexpr explicit operator bool() const noexcept { return ec == errc{}; } // since C++26
66 see below& value, int base = 10); // constexpr since C++23
/freebsd-src/contrib/tzdata/
H A Dantarctica19 # Belgrano II, Confin Coast, -770227-0343737, since 1972-02-05
20 # Carlini, Potter Cove, King George Island, -6414-0602320, since 1982-01
21 # Esperanza, Hope Bay, -6323-05659, since 1952-12-17
22 # Marambio, -6414-05637, since 1969-10-29
23 # Orcadas, Laurie I, -6016-04444, since 1904-02-22
24 # San Martín, Barry I, -6808-06706, since 1951-03-21
36 # Casey, Bailey Peninsula, -6617+11032, since 1969
37 # Davis, Vestfold Hills, -6835+07759, since 1957-01-13
39 # Mawson, Holme Bay, -6736+06253, since 1954-02-13
127 # Princess Elisabeth, Queen Maud Land, -713412+0231200, since 200
[all...]
/freebsd-src/crypto/openssl/include/openssl/
H A Dmacros.h39 * MSVC supports __declspec(deprecated) since MSVC 2003 (13.10),
40 * and __declspec(deprecated(message)) since MSVC 2005 (14.00)
43 # define OSSL_DEPRECATED(since) \ argument
44 __declspec(deprecated("Since OpenSSL " # since))
45 # define OSSL_DEPRECATED_FOR(since, message) \ argument
46 __declspec(deprecated("Since OpenSSL " # since ";" message))
48 # define OSSL_DEPRECATED(since) __declspec(deprecated) argument
49 # define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated) argument
57 # define OSSL_DEPRECATED(since) \ argument
58 __attribute__((deprecated("Since OpenSSL " # since)))
[all …]
/freebsd-src/contrib/bmake/unit-tests/
H A Dopt-debug-lint.mk8 # Since 2020-09-13, undefined variables that are used on the left-hand side
14 # Since 2020-09-13, the "Malformed conditional" error message is not printed
26 # sense to expand them in the global scope since they will never be defined
38 # Since 2020-09-13, Var_Parse properly reports errors for undefined variables,
49 # Since 2020-09-14, dependency lines may contain undefined variables.
55 # may assume that the variable is defined since they will only be evaluated
63 # Since 2020-10-03, in lint mode the variable modifier must be separated
73 # since make always fell back trying to parse the indirect modifier as a
97 # This only happened in lint mode since in default mode the early check for
H A Ddirective-endif.mk5 # Since 2020-12-15, the .endif directive no longer accepts arguments.
14 # Since 2020-12-15:
19 # Since 2020-12-15:
30 # Since 2020-12-15:
37 # Since 2020-12-15:
H A Ddirective-for-if.mk6 # loop, their values were placed verbatim in the expanded body. Since then,
29 # Since bare words were not allowed at the left-hand side of a condition,
30 # make complained about a "Malformed conditional", which was surprising since
39 # Since cond.c 1.68 from 2015-05-05, bare words are allowed on the left-hand
57 # '=' and '"0"'. Since that line is not interpreted as an '.if' directive,
75 # has been allowed since cond.c 1.23 from 2004-04-13. Between that commit and
81 # of the comparison resulted in a "Malformed conditional". Since the .for
H A Dopt-no-action-touch.mk18 # .PHONY targets are not touched since they do not represent actual files.
23 # .JOIN targets are not touched since they do not represent actual files.
28 # .USE targets are not touched since they do not represent actual files.
39 # Since the option -n is stronger than the option -t, this target is not
44 # Since none of the above targets are actually touched, the following command
H A Ddirective-undef.mk14 # Since var.c 1.761 from 2020-12-22, .undef handles multiple variable names
27 # varname-empty.mk. Since var.c 1.737 from 2020-12-19, .undef complains
34 # ever do anything since that variable is never defined.
69 # A variable named "$" can be undefined since the argument to .undef is
82 # Since var.c 1.762 from 2020-12-22, parse errors in the argument should be
124 # exported yet since it refers to another variable.
136 # Since var.c 1.570 from 2020-10-06 and before var.c 1.1014 from 2022-03-26,
H A Dvarmod-ifelse.mk20 # fine since the condition would be:
85 # returns AMR_CLEANUP as result, Var_Parse returns varUndefined since the
87 # then supposed to do proper error handling, but since varUndefined is local
94 # done since there is no well-formed comparison in the condition at all.
112 # This hack does not work for variables from .for loops since these are
157 # Since cond.c 1.262 from 2021-04-20, make reports a more specific error
183 # "true" since "+" is not the empty string.
186 # "false" since the variable named "*" is not defined.
189 # syntax error since the condition is completely blank.
195 # Since th
[all...]
H A Dvarmod-to-separator.mk37 # anything since neither of these modifiers is related to how the string is
49 # Since there is a single character before it, that character is taken as
56 # since it is followed by a colon. Or it could be the colon since that
83 # After the modifier ':ts/', the expression value is a single word since all
91 # word since all spaces have been replaced with x. Because of this single
152 # Since 2020-11-01, these out-of-bounds values are rejected.
168 # Since 2020-11-01, these out-of-bounds values are rejected.
255 # Since 2003.07.23.18.06.46 and before 2016.03.07.20.20.35, the modifier ':ts'
261 # Since th
[all...]
H A Dvar-eval-short.mk42 # Since var.c 1.907 from 2021-04-04, a '$' is no longer allowed in the
54 # which failed since '$' is not a valid range character.
68 # unexpanded text as a regular expression, which is unnecessary since the
85 # error message 'Invalid time value: ${FAIL}}' since it did not expand its
100 # error message 'Invalid time value: ${FAIL}}' since it did not expand its
155 # necessary. Since the return value from Var_Parse is supposed to be ignored
156 # anyway, and since it is actually ignored in an overly complicated way,
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMSA.txt18 It is not possible to emit bclri.b since andi.b covers exactly the
24 constant since shf.w covers exactly the same cases. shf.w is used
36 It is not possible to emit ilvl.d, or pckev.d since ilvev.d covers the
40 It is not possible to emit ilvr.d, or pckod.d since ilvod.d covers the
48 It is not possible to emit splati.w since shf.w covers the same cases.
53 copy_u.w. This is semantically equivalent since the general-purpose
66 It is (currently) not possible to emit bmz.v, or bsel.v since bmnz.v is
/freebsd-src/contrib/bmake/
H A DREADME5 Since 1993 I have run it on AIX, BSDi, Darwin, FreeBSD, HP-UX, IRIX,
11 Since 2003 bmake switched to a date based version (first was 20030714)
13 make. Since then, NetBSD's make is imported within a week of any
31 For folk that hate to read anything, since 20121212 you can also use
41 portable *.mk macros which are included with bmake since 20121212
/freebsd-src/lib/libpmc/pmu-events/arch/x86/amdzen3/
H A Dfloating-point.json6 …epresents a one- cycle dispatch event. This event is a speculative event. Since this event include…
13 …represents a one-cycle dispatch event. This event is a speculative event. Since this event include…
20 …epresents a one- cycle dispatch event. This event is a speculative event. Since this event include…
27 …epresents a one- cycle dispatch event. This event is a speculative event. Since this event include…
34 …epresents a one- cycle dispatch event. This event is a speculative event. Since this event include…
46 …ycle can vary from 0 to 64. This event requires the use of the MergeEvent since it can count above…
52 …ycle can vary from 0 to 64. This event requires the use of the MergeEvent since it can count above…
58 …ycle can vary from 0 to 64. This event requires the use of the MergeEvent since it can count above…
64 …ycle can vary from 0 to 64. This event requires the use of the MergeEvent since it can count above…
/freebsd-src/sys/dev/ice/
H A Dice_iflib_recovery_txrx.c78 * Since the Tx queues are not initialized during recovery mode, this function
95 * Since the Tx queues are not initialized during recovery mode, this function
111 * Since the Tx queues are not initialized during recovery mode, this function
130 * Since the Rx queues are not initialized during recovery mode, this function
147 * Since the Rx queues are not initialized during recovery mode this function
163 * Since the Rx queues are not initialized during Recovery mode, this function
179 * Since the Rx queues are not initialized during Recovery mode, this function

12345678910>>...287