Home
last modified time | relevance | path

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

12345678910>>...41

/freebsd/crypto/openssl/include/openssl/
H A Dmacros.h43 # define OSSL_DEPRECATED(since) \
44 __declspec(deprecated("Since OpenSSL " # since))
45 # define OSSL_DEPRECATED_FOR(since, message) \
48 # define OSSL_DEPRECATED(since) __declspec(deprecated)
57 # define OSSL_DEPRECATED(since) \
58 __attribute__((deprecated("Since OpenSSL " # since)))
59 # define OSSL_DEPRECATED_FOR(since, message) \
62 # define OSSL_DEPRECATED(since) __attribute__((deprecated))
67 # define OSSL_DEPRECATED(since) __attribute__ ((deprecated))
79 # define OSSL_DEPRECATED(since) extern
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmemory107 }; // since C++23
111 allocate_at_least(Allocator& a, size_t n); // since C++23
175 typedef ptrdiff_t difference_type; // since C++20
257 constexpr T* construct_at(T* location, Args&& ...args); // since C++20
261 constexpr T* construct_at(T* location, Args&&... args); // since C++20
269 constexpr void destroy_at(T* location) noexcept; // since C++20
589 typedef remove_extent_t<T> element_type; // since C++17
710 shared_ptr<T> make_shared(size_t N); // T is U[] (since C++20)
715 shared_ptr<T> make_shared(); // T is U[N] (since C++20)
744 typedef remove_extent_t<T> element_type; // since C++17
[all …]
H A Dnumeric20 constexpr T // constexpr since C++20
24 constexpr T // 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
66 constexpr OutputIterator // constexpr 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
229 using iterator_concept = see below; // since C++20
231 using iterator_category = see below; // since C++20
370 typedef ptrdiff_t difference_type; // since C++20
525 istream_iterator(); // constexpr since C++11
526 constexpr istream_iterator(default_sentinel_t); // 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
221 …ng copy_result = in_out_result<I, O>; // since C++20
224 …ng copy_n_result = in_out_result<I, O>; // since C++20
[all …]
H A Dstring115 …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
130 …expr basic_string(from_range_t, R&& rg, const Allocator& a = Allocator()); // since C++23
175 constexpr void resize_and_overwrite(size_type n, Operation op); // since C++23
281 …tring substr(size_type pos = 0, size_type n = npos) const&; // since C++23
282 …pr basic_string substr(size_type pos = 0, size_type n = npos) &&; // since C++23
470 …ass charT, class traits, class Allocator> // since C++20
474 …ass charT, class traits, class Allocator> // since C++20
559 …char> operator""s( const char *str, size_t len ); // C++14, constexpr since C++20
776 // This does not impact the short string representation, since we never need the MSB
[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 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
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 C++23
[all …]
H A Dbitset66 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
81 reference operator[](size_t pos); // constexpr since C++23
82 unsigned long to_ulong() const; // constexpr since C++23
83 unsigned long long to_ullong() const; // constexpr since C++23
86 template <class charT, class traits> // 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 Dcuchar14 cuchar synopsis // since C++11
28 size_t mbrtoc8(char8_t* pc8, const char* s, size_t n, mbstate_t* ps); // since C++20
29 size_t c8rtomb(char* s, char8_t c8, mbstate_t* ps); // since C++20
H A Dfunctional46 constexpr reference_wrapper(U&&); // constexpr since C++20
47 constexpr reference_wrapper(const reference_wrapper<T>& x) noexcept; // constexpr since C++20
51 operator=(const reference_wrapper<T>& x) noexcept; // constexpr since C++20
61 noexcept(is_nothrow_invocable_v<T&, ArgTypes...>); // noexcept since C++17
75 template <class T> struct unwrap_reference; // since C++20
76 template <class T> struct unwrap_ref_decay : unwrap_reference<decay_t<T>> { }; // since C++20
77 template <class T> using unwrap_reference_t = typename unwrap_reference<T>::type; // since C++20
78 template <class T> using unwrap_ref_decay_t = typename unwrap_ref_decay<T>::type; // since C++20
449 function(R(*)(Args...)) -> function<R(Args...)>; // since C++17
452 function(F) -> function<see-below>; // since C++17
[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 Dantarctica21 # 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
36 # Casey, Bailey Peninsula, -6617+11032, since 1969
39 # Mawson, Holme Bay, -6736+06253, since 1954-02-13
176 # Concordia, -750600+1232000, since 2005
179 # Neumayer III, -704080-0081602, since 2009
182 # Bharati, -692428+0761114, since 2012
183 # Maitri, -704558+0114356, since 1989
200 # Scott Base, Ross Island, since 1957-01.
[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 wbck is 6 cycles
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/
H A Drk3399pro.dtsi10 /* Default to enabled since AP talk to NPU part over pcie */
15 /* Default to enabled since AP talk to NPU part over pcie */
/freebsd/crypto/openssl/doc/internal/man3/
H A DOSSL_DEPRECATED.pod11 #define OSSL_DEPRECATED(since)
12 #define OSSL_DEPRECATED_FOR(since, msg)
18 I<since> that should be set to the OpenSSL version where the symbol was
/freebsd/crypto/openssl/doc/man3/
H A DRSA_print.pod13 The following functions have been deprecated since OpenSSL 3.0, and can be
22 The following functions have been deprecated since OpenSSL 3.0, and can be
33 The following functions have been deprecated since OpenSSL 3.0, and can be
H A DRAND_cleanup.pod11 The following function has been deprecated since OpenSSL 1.1.0, and can be
21 since no explicit initialisation or de-initialisation is necessary. See
H A DERR_remove_state.pod9 The following function has been deprecated since OpenSSL 1.0.0, and can be
15 The following function has been deprecated since OpenSSL 1.1.0, and can be
/freebsd/usr.sbin/cron/doc/
H A DCHANGES31 shell scripts since "sh" and "csh" have traditionally used hidden file
51 there, since the real bug was that it should have been open in the parent.
63 executing it; this turned out to be a horribly bad idea since finding the
84 not generate a Date: at all (since Sendmail will do it), or folks will use
107 job_runqueue() was using storage after freeing it, since Jordan told me back
132 call to make sure the mtime of the dir changes, since the filename/inode will
143 since the sysv naming for this depends on 'at' using the same
153 14-Apr-90: (actually, changes since December 1989)
/freebsd/contrib/bmake/
H A Dimport.sh96 echo Intersting/relevant changes since $last; echo
103 echo $C since $last
/freebsd/contrib/ee/
H A DChanges9 - changed the licensing since the Artistic License is now considered
32 location (since some distributions move the file)
/freebsd/sys/contrib/device-tree/Bindings/iommu/
H A Dapple,sart.yaml16 special support in the consumer driver is required since not all DMA
19 SART1 has first been used since at least the A11 (iPhone 8 and iPhone X)

12345678910>>...41