/freebsd/crypto/openssl/include/openssl/ |
H A D | macros.h | 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))) 59 # define OSSL_DEPRECATED_FOR(since, message) \ argument 60 __attribute__((deprecated("Since OpenSSL " # since ";" message))) [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | memory | 174 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 D | iterator | 20 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 D | numeric | 20 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 D | algorithm | 25 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 D | ostream | 134 …, 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 D | charconv | 30 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 D | string | 105 …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 D | bitset | 47 …'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 D | format | 28 …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 D | utility | 47 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 D | cuchar | 14 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 D | functional | 46 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 54 constexpr operator T& () const noexcept; // constexpr since C++20 55 constexpr T& get() const noexcept; // constexpr since C++20 59 constexpr typename result_of<T&(ArgTypes&&...)>::type // 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 [all …]
|
H A D | stack | 44 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 D | antarctica | 19 # 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 2007 [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MSA.txt | 18 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 D | ARMScheduleA9.td | 468 // 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...] |
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
H A D | rk3399pro.dtsi | 10 /* 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 D | OSSL_DEPRECATED.pod | 11 #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 D | RSA_print.pod | 13 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 D | RAND_cleanup.pod | 11 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 D | ERR_remove_state.pod | 9 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
|
H A D | MD5.pod | 10 The following functions have been deprecated since OpenSSL 3.0, and can be 23 The following functions have been deprecated since OpenSSL 3.0, and can be 35 The following functions have been deprecated since OpenSSL 3.0, and can be
|
/freebsd/usr.sbin/cron/doc/ |
H A D | CHANGES | 31 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/ee/ |
H A D | Changes | 9 - changed the licensing since the Artistic License is now considered 32 location (since some distributions move the file)
|