Home
last modified time | relevance | path

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

12345678910>>...56

/openbsd/src/gnu/llvm/libcxx/include/
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 …]
Dmemory105 }; // since C++23
109 allocate_at_least(Allocator& a, size_t n); // since C++23
173 typedef ptrdiff_t difference_type; // since C++20
197 using uninitialized_copy_result = in_out_result<InputIterator, OutputIterator>; // since C++20
202 …copy(InputIterator ifirst, Sentinel1 ilast, OutputIterator ofirst, Sentinel2 olast); // since C++20
207 uninitialized_copy(InputRange&& in_range, OutputRange&& out_range); // since C++20
218 using uninitialized_copy_n_result = in_out_result<InputIterator, OutputIterator>; // since C++20
223 … ifirst, iter_difference_t<InputIterator> n, OutputIterator ofirst, Sentinel olast); // since C++20
234 ForwardIterator uninitialized_fill(ForwardIterator first, Sentinel last, const T& x); // since C++20
238 borrowed_iterator_t<ForwardRange> uninitialized_fill(ForwardRange&& range, const T& x); // since C+…
[all …]
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 …]
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 indirect_strict_weak_order<projected<I, Proj>> Comp = ranges::less> // since C++20
50 indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less> // since C++20
55 …max_element(I first, S last, Comp comp = {}, Proj proj = {}); // since C++20
[all …]
Dstring103 …othrow_default_constructible<allocator_type>::value); // constexpr since C++20
104 …ring(const allocator_type& a); // constexpr since C++20
105 …t basic_string& str); // constexpr since C++20
107 …othrow_move_constructible<allocator_type>::value); // constexpr since C++20
109 …t allocator_type& a = allocator_type()); // constexpr since C++20
111 …t Allocator& a = Allocator()); // constexpr since C++20
113 …ic_string&& str, size_type pos, const Allocator& a = Allocator()); // since C++23
115 …ic_string&& str, size_type pos, size_type n, const Allocator& a = Allocator()); // since C++23
117 …& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17, constexpr since C++20
119 …g(const T& t, const Allocator& a = Allocator()); // C++17, constexpr since C++20
[all …]
Dbitset45 charT zero = charT('0'), charT one = charT('1')); // constexpr since C++23
51 charT zero = charT('0'), charT one = charT('1')); // constexpr since C++23
54 bitset& operator&=(const bitset& rhs) noexcept; // constexpr since C++23
55 bitset& operator|=(const bitset& rhs) noexcept; // constexpr since C++23
56 bitset& operator^=(const bitset& rhs) noexcept; // constexpr since C++23
57 bitset& operator<<=(size_t pos) noexcept; // constexpr since C++23
58 bitset& operator>>=(size_t pos) noexcept; // constexpr since C++23
59 bitset& set() noexcept; // constexpr since C++23
60 bitset& set(size_t pos, bool val = true); // constexpr since C++23
61 bitset& reset() noexcept; // constexpr since C++23
[all …]
Dformat28 …struct basic_format_string { // since C++23, exposition only before…
38 …using format_string = // since C++23, exposition only before…
41 …using wformat_string = // since C++23, exposition only before…
117 enum class range_format { // since C++23
127 constexpr unspecified format_kind = unspecified; // since C++23
131 constexpr range_format format_kind<R> = see below; // since C++23
136 class range_formatter; // since C++23
140 struct range-default-formatter; // exposition only, since C++23
147 struct formatter<R, charT> : range-default-formatter<format_kind<R>, R, charT> { }; // since C++23
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
96 constexpr const pair& operator=(const pair& p) const; // since C++23
99 constexpr const pair& operator=(const pair<U, V>& p) const; // since C++23
102 constexpr const pair& operator=(pair&& p) const; // since C++23
105 constexpr const pair& operator=(pair<U, V>&& p) const; // since C++23
109 constexpr void swap(const pair& p) const noexcept(see below); // since C++23
113 struct basic_common_reference<pair<T1, T2>, pair<U1, U2>, TQual, UQual>; // since C++23
116 struct common_type<pair<T1, T2>, pair<U1, U2>>; // since C++23
[all …]
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
/openbsd/src/share/zoneinfo/datfiles/
Dantarctica20 # Belgrano II, Confin Coast, -770227-0343737, since 1972-02-05
21 # Carlini, Potter Cove, King George Island, -6414-0602320, since 1982-01
22 # Esperanza, Hope Bay, -6323-05659, since 1952-12-17
23 # Marambio, -6414-05637, since 1969-10-29
24 # Orcadas, Laurie I, -6016-04444, since 1904-02-22
25 # San Martín, Barry I, -6808-06706, since 1951-03-21
37 # Casey, Bailey Peninsula, -6617+11032, since 1969
38 # Davis, Vestfold Hills, -6835+07759, since 1957-01-13
40 # Mawson, Holme Bay, -6736+06253, since 1954-02-13
128 # Princess Elisabeth, Queen Maud Land, -713412+0231200, since 2007
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Unicode-Collate/t/
Dovercjk0.t53 # 9FA6..9FBB are CJK UI since UCA_Version 14 (Unicode 4.1).
54 # 9FBC..9FC3 are CJK UI since UCA_Version 18 (Unicode 5.1).
55 # 9FC4..9FCB are CJK UI since UCA_Version 20 (Unicode 5.2).
56 # 9FCC is CJK UI since UCA_Version 24 (Unicode 6.1).
57 # 9FCD..9FD5 are CJK UI since UCA_Version 32 (Unicode 8.0).
58 # 9FD6..9FEA are CJK UI since UCA_Version 36 (Unicode 10.0).
59 # 9FEB..9FEF are CJK UI since UCA_Version 38 (Unicode 11.0).
60 # 9FF0..9FFC are CJK UI since UCA_Version 43 (Unicode 13.0).
62 # 3400..4DB5 are CJK UI Ext.A since UCA_Version 8 (Unicode 3.0).
63 # 4DB6..4DBF are CJK UI Ext.A since UCA_Version 43 (Unicode 13.0).
[all …]
Dcjkrange.t40 # 9FA6..9FBB are CJK UI since UCA_Version 14 (Unicode 4.1).
41 # 9FBC..9FC3 are CJK UI since UCA_Version 18 (Unicode 5.1).
42 # 9FC4..9FCB are CJK UI since UCA_Version 20 (Unicode 5.2).
43 # 9FCC is CJK UI since UCA_Version 24 (Unicode 6.1).
44 # 9FCD..9FD5 are CJK UI since UCA_Version 32 (Unicode 8.0).
45 # 9FD6..9FEA are CJK UI since UCA_Version 36 (Unicode 10.0).
46 # 9FEB..9FEF are CJK UI since UCA_Version 38 (Unicode 11.0).
47 # 9FF0..9FFC are CJK UI since UCA_Version 43 (Unicode 13.0).
49 # 3400..4DB5 are CJK UI Ext.A since UCA_Version 8 (Unicode 3.0).
50 # 4DB6..4DBF are CJK UI Ext.A since UCA_Version 43 (Unicode 13.0).
[all …]
Dovercjk1.t59 # 9FA6..9FBB are CJK UI since UCA_Version 14 (Unicode 4.1).
60 # 9FBC..9FC3 are CJK UI since UCA_Version 18 (Unicode 5.1).
61 # 9FC4..9FCB are CJK UI since UCA_Version 20 (Unicode 5.2).
62 # 9FCC is CJK UI since UCA_Version 24 (Unicode 6.1).
63 # 9FCD..9FD5 are CJK UI since UCA_Version 32 (Unicode 8.0).
64 # 9FD6..9FEA are CJK UI since UCA_Version 36 (Unicode 10.0).
65 # 9FEB..9FEF are CJK UI since UCA_Version 38 (Unicode 11.0).
66 # 9FF0..9FFC are CJK UI since UCA_Version 43 (Unicode 13.0).
Dtangut.t51 # 17000..187EC are Tangut Ideographs since UCA_Version 34 (Unicode 9.0).
52 # 187ED..187F1 are Tangut Ideographs since UCA_Version 38 (Unicode 11.0).
53 # 187F2..187F7 are Tangut Ideographs since UCA_Version 40 (Unicode 12.0).
54 # 18800..18AF2 are Tangut Components since UCA_Version 34 (Unicode 9.0).
55 # 18AF3..18AFF are Tangut Components since UCA_Version 43 (Unicode 13.0)
56 # 18D00..18D08 are Tangut Ideographs since UCA_Version 43 (Unicode 13.0)
/openbsd/src/gnu/usr.bin/perl/Porting/
Dacknowledgements.pl32 my ( $since, $until ) = split '\.\.', $since_until;
35 unless $since_until && $since && $until;
82 my $version = version->new($since);
89 my $version = version->new($since);
97 my $first_timestamp = qx(git log -1 --pretty=format:%ct --summary $since);
/openbsd/src/gnu/llvm/llvm/lib/Target/Mips/
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
/openbsd/src/gnu/llvm/llvm/lib/Target/ARM/
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 …]
/openbsd/src/gnu/usr.bin/perl/dist/Search-Dict/
DREADME.patching3 1. Check for any changes to .pm files since dev or stable Perl release. E.g.
4 to check for changes since v5.15.8:
9 2. If you are making the first change since the last Perl release, you need to
/openbsd/src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/
DREADME.patching3 1. Check for any changes to .pm files since dev or stable Perl release. E.g.
4 to check for changes since v5.15.8:
9 2. If you are making the first change since the last Perl release, you need to
/openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/PDB/
DBUILD.gn26 # FIXME: Also, the GN way is to write this file at build time. But since
27 # there's only two uses of this, and since this is a pattern that hopefully
28 # will disappear again, and since it doesn't have any measurable performance
/openbsd/src/gnu/usr.bin/perl/dist/Storable/t/
Dtied_reify.t28 broken( thaw( freeze($x) ) ); # since 5.16 fails with "Cannot tie unreifiable array"
35 # fails since 5.16
Dthreads.t3 # pool" since it uses the same context for different threads. since
9 # just hard to catch it deterministically - since the same context is
/openbsd/src/usr.sbin/unbound/testcode/
Dperf.c89 struct timeval since; member
228 info->since = info->start; in perfsetup()
245 perf_tv_add(&info->io[i].timeout, &info->since); in perfsetup()
334 info->since = *now; in stat_printout()
362 perf_tv_subtract(&timeout, &info->since); in perfselect()
405 perf_tv_subtract(&timeout, &info->since); in perfendstats()
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/t/
Dtrap.t108 is($x, 2, 'never modified since it dies');
111 is($x, 2, 'never modified since it dies');
118 is($x, 2, 'never modified since it dies');
/openbsd/src/gnu/usr.bin/gcc/gcc/config/d30v/
Dt-d30v27 # to produce a shared library, but since we don't know ahead of time when
31 # Right now, disable, since we don't support shared libraries on d30v yet.

12345678910>>...56