Home
last modified time | relevance | path

Searched refs:since (Results 1 – 25 of 1092) sorted by relevance

12345678910>>...44

/freebsd/contrib/llvm-project/libcxx/include/
H A Dtype_traits21 typedef integral_constant<bool, true> true_type; // since C++11
22 typedef integral_constant<bool, false> false_type; // since C++11
25 using bool_constant = integral_constant<bool, B>; // since C++17
33 template <class T> struct is_null_pointer; // since C++14
52 template <class T> struct is_scoped_enum; // since C++23
76 template<class T> struct type_identity; // since C++20
78 using type_identity_t = typename type_identity<T>::type; // since C++20
92 template <class T> struct is_bounded_array; // since C++20
93 template <class T> struct is_unbounded_array; // since C++20
104 template <class T> struct is_final; // since C++14
[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 struct out_value_result; // since C++23
52 …eak_order<projected<I, Proj>> Comp = ranges::less> // since C++20
[all …]
H A Dmemory174 typedef ptrdiff_t difference_type; // since C++20
198 using uninitialized_copy_result = in_out_result<InputIterator, OutputIterator>; // since C++20
203 …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 … 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 C+…
251 …r uninitialized_fill_n(ForwardIterator first, iter_difference_t<ForwardIterator> n); // since C++20
256 constexpr T* construct_at(T* location, Args&& ...args); // since C++20
[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 C++20
[all …]
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 C++20
[all …]
H A Datomic71 constexpr atomic() noexcept(is_nothrow_default_constructible_v<T>); // since C++20
104 void wait(T, memory_order = memory_order::seq_cst) const volatile noexcept; // since C++20
105 void wait(T, memory_order = memory_order::seq_cst) const noexcept; // since C++20
106 void notify_one() volatile noexcept; // since C++20
107 void notify_one() noexcept; // since C++20
108 void notify_all() volatile noexcept; // since C++20
109 void notify_all() noexcept; // since C++20
187 … void wait(integral, memory_order = memory_order::seq_cst) const volatile noexcept; // since C++20
188 … void wait(integral, memory_order = memory_order::seq_cst) const noexcept; // since C++20
189 … void notify_one() volatile noexcept; // since C++20
[all …]
H A Dostream134 …, traits>& operator<<(basic_ostream<char, traits>&, wchar_t) = delete; // since C++20
136 …, traits>& operator<<(basic_ostream<char, traits>&, char8_t) = delete; // since C++20
138 …, traits>& operator<<(basic_ostream<char, traits>&, char16_t) = delete; // since C++20
140 …, traits>& operator<<(basic_ostream<char, traits>&, char32_t) = delete; // since C++20
142 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char8_t) = delete; // since C++20
144 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char16_t) = delete; // since C++20
146 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char32_t) = delete; // since C++20
148 …, traits>& operator<<(basic_ostream<char, traits>&, const wchar_t*) = delete; // since C++20
150 …, traits>& operator<<(basic_ostream<char, traits>&, const char8_t*) = delete; // since C++20
152 …, traits>& operator<<(basic_ostream<char, traits>&, const char16_t*) = delete; // since C++20
[all …]
H A Dstring105 …othrow_default_constructible<allocator_type>::value); // constexpr since C++20
106 …ring(const allocator_type& a); // constexpr since C++20
107 …t basic_string& str); // constexpr since C++20
109 …othrow_move_constructible<allocator_type>::value); // constexpr since C++20
111 …t allocator_type& a = allocator_type()); // constexpr since C++20
113 …t Allocator& a = Allocator()); // constexpr since C++20
115 …ic_string&& str, size_type pos, const Allocator& a = Allocator()); // since C++23
117 …ic_string&& str, size_type pos, size_type n, const Allocator& a = Allocator()); // since C++23
119 …& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17, constexpr since C++20
121 …g(const T& t, const Allocator& a = Allocator()); // C++17, constexpr since C++20
[all …]
H A Dformat28 …struct basic_format_string { // since C++23, exposition only before…
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…
42 …using wformat_string = // since C++23, exposition only before…
45 template<class charT> struct runtime-format-string { // since C++26, exposition-only
130 constexpr bool enable_nonlocking_formatter_optimization = false; // since C++23
139 enum class range_format { // since C++23
149 constexpr unspecified format_kind = unspecified; // since C++23
153 constexpr range_format format_kind<R> = see below; // since C++23
158 class range_formatter; // since C++23
[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++…
62 …constexpr explicit operator bool() const noexcept { return ec == errc{}; } // since C++…
66 … see below& value, int base = 10); // constexpr since C++23
H A Dbitset47 …'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 …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 C++23
[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 C++23
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Dmacros.h42 #define OSSL_DEPRECATED(since) \ argument
43 __declspec(deprecated("Since OpenSSL " #since))
44 #define OSSL_DEPRECATED_FOR(since, message) \ argument
45 __declspec(deprecated("Since OpenSSL " #since ";" message))
47 #define OSSL_DEPRECATED(since) __declspec(deprecated) argument
48 #define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated) argument
56 #define OSSL_DEPRECATED(since) \ argument
57 __attribute__((deprecated("Since OpenSSL " #since)))
58 #define OSSL_DEPRECATED_FOR(since, message) \ argument
59 __attribute__((deprecated("Since OpenSSL " #since ";" message)))
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dmemory174 typedef ptrdiff_t difference_type; // since C++20
198 using uninitialized_copy_result = in_out_result<InputIterator, OutputIterator>; // since C++20
203 …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 … 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 C+…
251 …r uninitialized_fill_n(ForwardIterator first, iter_difference_t<ForwardIterator> n); // since C++20
256 constexpr T* construct_at(T* location, Args&& ...args); // since C++20
[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 C++20
[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 …eak_order<projected<I, Proj>> Comp = ranges::less> // since C++20
53 …eak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less> // since C++20
[all …]
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 C++20
[all …]
H A Dostream134 …, traits>& operator<<(basic_ostream<char, traits>&, wchar_t) = delete; // since C++20
136 …, traits>& operator<<(basic_ostream<char, traits>&, char8_t) = delete; // since C++20
138 …, traits>& operator<<(basic_ostream<char, traits>&, char16_t) = delete; // since C++20
140 …, traits>& operator<<(basic_ostream<char, traits>&, char32_t) = delete; // since C++20
142 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char8_t) = delete; // since C++20
144 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char16_t) = delete; // since C++20
146 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char32_t) = delete; // since C++20
148 …, traits>& operator<<(basic_ostream<char, traits>&, const wchar_t*) = delete; // since C++20
150 …, traits>& operator<<(basic_ostream<char, traits>&, const char8_t*) = delete; // since C++20
152 …, traits>& operator<<(basic_ostream<char, traits>&, const char16_t*) = delete; // since C++20
[all …]
H A Dstring105 …othrow_default_constructible<allocator_type>::value); // constexpr since C++20
106 …ring(const allocator_type& a); // constexpr since C++20
107 …t basic_string& str); // constexpr since C++20
109 …othrow_move_constructible<allocator_type>::value); // constexpr since C++20
111 …t allocator_type& a = allocator_type()); // constexpr since C++20
113 …t Allocator& a = Allocator()); // constexpr since C++20
115 …ic_string&& str, size_type pos, const Allocator& a = Allocator()); // since C++23
117 …ic_string&& str, size_type pos, size_type n, const Allocator& a = Allocator()); // since C++23
119 …& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17, constexpr since C++20
121 …g(const T& t, const Allocator& a = Allocator()); // C++17, constexpr since C++20
[all …]
H A Dbitset47 …'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 …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 C++23
[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 C++23
[all …]
H A Dstack44 template <class InputIterator> stack(InputIterator first, InputIterator last); // since C++23
45 template<container-compatible-range<T> R> stack(from_range_t, R&& rg); // since C++23
52 stack(InputIterator first, InputIterator last, const Alloc&); // since C++23
54 stack(from_range_t, R&& rg, const Alloc&); // since C++23
75 stack(InputIterator, InputIterator) -> stack<iter-value-type<InputIterator>>; // since C++23
78 stack(from_range_t, R&&) -> stack<ranges::range_value_t<R>>; // since C++23
86 deque<iter-value-type<InputIterator>, Allocator>>; // since C++23
90 -> stack<ranges::range_value_t<R>, deque<ranges::range_value_t<R>, Allocator>>; // since C++23
106 operator<=>(const stack<T, Container>& x, const stack<T, Container>& y); // since C++20
/freebsd/contrib/tzdata/
H A Dantarctica16 # Belgrano II, Confin Coast, -770227-0343737, since 1972-02-05
17 # Carlini, Potter Cove, King George Island, -6414-0602320, since 1982-01
18 # Esperanza, Hope Bay, -6323-05659, since 1952-12-17
19 # Marambio, -6414-05637, since 1969-10-29
20 # Orcadas, Laurie I, -6016-04444, since 1904-02-22
21 # San Martín, Barry I, -6808-06706, since 1951-03-21
33 # Casey, Bailey Peninsula, -6617+11032, since 1969
34 # Davis, Vestfold Hills, -6835+07759, since 1957-01-13
36 # Mawson, Holme Bay, -6736+06253, since 1954-02-13
124 # Princess Elisabeth, Queen Maud Land, -713412+0231200, since 2007
[all …]
/freebsd/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/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMScheduleA9.td468 // Extra latency cycles since wbck is 2 cycles
477 // Extra latency cycles since wbck is 2 cycles
487 // Extra latency cycles since wbck is 4 cycles
496 // Extra latency cycles since wbck is 4 cycles
668 // Extra 1 latency cycle since wbck is 2 cycles
677 // Extra 1 latency cycle since wbck is 2 cycles
880 // Extra latency cycles since wbck is 7 cycles
908 // Extra latency cycles since wbck is 7 cycles
1279 // Extra latency cycles since wbck is 6 cycles
1288 // Extra latency cycles since wbc
[all...]

12345678910>>...44