Home
last modified time | relevance | path

Searched full:requires (Results 1 – 25 of 4861) sorted by relevance

12345678910>>...195

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dranges90 && (is_pointer_v<_It> || requires(_It __it) { __it.operator->(); });
98 requires is_class_v<_Derived> && same_as<_Derived, remove_cv_t<_Derived>>
118 empty() requires forward_range<_Derived>
122 empty() const requires forward_range<const _Derived>
126 operator bool() requires requires { ranges::empty(_M_derived()); }
130 operator bool() const requires requires { ranges::empty(_M_derived()); }
134 data() requires contiguous_iterator<iterator_t<_Derived>>
139 requires range<const _Derived>
145 requires forward_range<_Derived>
151 requires forward_range<const _Derived>
[all …]
H A Dconcepts73 && requires(add_rvalue_reference_t<_From> (&__f)()) {
88 && requires {
128 && requires(_Lhs __lhs, _Rhs&& __rhs) {
144 && requires
175 && requires(_Tp&& __t, _Up&& __u) {
195 requires __adl_swap<_Tp, _Up>
214 requires requires(const _Swap& __swap, _Tp& __e1, _Up& __e2) {
235 = requires(_Tp& __a, _Tp& __b) { ranges::swap(__a, __b); };
239 && requires(_Tp&& __t, _Up&& __u) {
271 && requires(_Tp&& __t)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dranges90 && (is_pointer_v<_It> || requires(_It __it) { __it.operator->(); });
98 requires is_class_v<_Derived> && same_as<_Derived, remove_cv_t<_Derived>>
118 empty() requires forward_range<_Derived>
122 empty() const requires forward_range<const _Derived>
126 operator bool() requires requires { ranges::empty(_M_derived()); }
130 operator bool() const requires requires { ranges::empty(_M_derived()); }
134 data() requires contiguous_iterator<iterator_t<_Derived>>
139 requires range<const _Derived>
145 requires forward_range<_Derived>
151 requires forward_range<const _Derived>
[all …]
H A Dconcepts73 && requires(add_rvalue_reference_t<_From> (&__f)()) {
88 && requires {
128 && requires(_Lhs __lhs, _Rhs&& __rhs) {
144 && requires
175 && requires(_Tp&& __t, _Up&& __u) {
195 requires __adl_swap<_Tp, _Up>
214 requires requires(const _Swap& __swap, _Tp& __e1, _Up& __e2) {
235 = requires(_Tp& __a, _Tp& __b) { ranges::swap(__a, __b); };
239 && requires(_Tp&& __t, _Up&& __u) {
271 && requires(_Tp&& __t)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Diterator_concepts.h54 template<typename _Tp> requires is_object_v<_Tp> in _GLIBCXX_VISIBILITY()
66 concept __can_reference = requires { typename __with_ref<_Tp>; }; in _GLIBCXX_VISIBILITY()
69 concept __dereferenceable = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
87 && requires(_Tp&& __t) { iter_move(static_cast<_Tp&&>(__t)); }; in _GLIBCXX_VISIBILITY()
97 requires __adl_imove<_Tp> in _GLIBCXX_VISIBILITY()
102 requires (!__adl_imove<_Tp>) in _GLIBCXX_VISIBILITY()
144 requires requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
151 template<typename _Tp> requires is_object_v<_Tp> in _GLIBCXX_VISIBILITY()
159 template<typename _Tp> requires requires { typename _Tp::difference_type; } in _GLIBCXX_VISIBILITY()
164 requires (!requires { typename _Tp::difference_type; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dranges_uninitialized.h85 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
90 requires destructible<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
100 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
125 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
143 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
161 requires default_initializable<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
175 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
200 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
219 requires default_initializable<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
233 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_iterator.h202 * This requires that @c --current is dereferenceable. in _GLIBCXX_VISIBILITY()
204 * @warning This implementation requires that for an iterator of the in _GLIBCXX_VISIBILITY()
219 * This requires that @c --current is dereferenceable. in _GLIBCXX_VISIBILITY()
224 requires is_pointer_v<_Iterator> in _GLIBCXX_VISIBILITY()
225 || requires(const _Iterator __i) { __i.operator->(); } in _GLIBCXX_VISIBILITY()
464 requires requires { { __x.base() == __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
471 requires requires { { __x.base() != __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
478 requires requires { { __x.base() > __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
485 requires requires { { __x.base() < __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
492 requires requires { { __x.base() >= __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
[all …]
H A Drange_access.h407 requires is_array_v<remove_reference_t<_Tp>> || __member_begin<_Tp> in _GLIBCXX_VISIBILITY()
427 concept __member_end = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
438 && requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
461 requires is_bounded_array_v<remove_reference_t<_Tp>> || __member_end<_Tp> in _GLIBCXX_VISIBILITY()
494 requires requires { _Begin{}(__cust_access::__as_const((_Tp&&)__e)); } in _GLIBCXX_VISIBILITY()
506 requires requires { _End{}(__cust_access::__as_const((_Tp&&)__e)); } in _GLIBCXX_VISIBILITY()
513 concept __member_rbegin = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
523 && requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
529 concept __reversable = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
561 requires __member_rbegin<_Tp> || __adl_rbegin<_Tp> || __reversable<_Tp> in _GLIBCXX_VISIBILITY()
[all …]
H A Dranges_algo.h161 requires convertible_to<const _Iter&, _Iter2> in _GLIBCXX_VISIBILITY()
168 requires convertible_to<_Iter, _Iter2> && convertible_to<_Fp, _F2p> in _GLIBCXX_VISIBILITY()
240 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
253 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
328 requires indirectly_comparable<_Iter1, _Iter2, _Pred, _Proj1, _Proj2> in _GLIBCXX_VISIBILITY()
346 requires indirectly_comparable<iterator_t<_Range1>, iterator_t<_Range2>, in _GLIBCXX_VISIBILITY()
365 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
380 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
430 requires convertible_to<const _Iter1&, _IIter1> in _GLIBCXX_VISIBILITY()
437 requires convertible_to<_Iter1, _IIter1> in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Diterator_concepts.h54 template<typename _Tp> requires is_object_v<_Tp> in _GLIBCXX_VISIBILITY()
66 concept __can_reference = requires { typename __with_ref<_Tp>; }; in _GLIBCXX_VISIBILITY()
69 concept __dereferenceable = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
87 && requires(_Tp&& __t) { iter_move(static_cast<_Tp&&>(__t)); }; in _GLIBCXX_VISIBILITY()
97 requires __adl_imove<_Tp> in _GLIBCXX_VISIBILITY()
102 requires (!__adl_imove<_Tp>) in _GLIBCXX_VISIBILITY()
144 requires requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
151 template<typename _Tp> requires is_object_v<_Tp> in _GLIBCXX_VISIBILITY()
159 template<typename _Tp> requires requires { typename _Tp::difference_type; } in _GLIBCXX_VISIBILITY()
164 requires (!requires { typename _Tp::difference_type; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dranges_uninitialized.h85 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
90 requires destructible<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
100 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
125 requires destructible<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
143 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
161 requires default_initializable<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
175 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
200 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
219 requires default_initializable<range_value_t<_Range>> in _GLIBCXX_VISIBILITY()
233 requires default_initializable<iter_value_t<_Iter>> in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_iterator.h202 * This requires that @c --current is dereferenceable. in _GLIBCXX_VISIBILITY()
204 * @warning This implementation requires that for an iterator of the in _GLIBCXX_VISIBILITY()
219 * This requires that @c --current is dereferenceable. in _GLIBCXX_VISIBILITY()
224 requires is_pointer_v<_Iterator> in _GLIBCXX_VISIBILITY()
225 || requires(const _Iterator __i) { __i.operator->(); } in _GLIBCXX_VISIBILITY()
464 requires requires { { __x.base() == __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
471 requires requires { { __x.base() != __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
478 requires requires { { __x.base() > __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
485 requires requires { { __x.base() < __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
492 requires requires { { __x.base() >= __y.base() } -> convertible_to<bool>; } in _GLIBCXX_VISIBILITY()
[all …]
H A Drange_access.h407 requires is_array_v<remove_reference_t<_Tp>> || __member_begin<_Tp> in _GLIBCXX_VISIBILITY()
427 concept __member_end = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
438 && requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
461 requires is_bounded_array_v<remove_reference_t<_Tp>> || __member_end<_Tp> in _GLIBCXX_VISIBILITY()
494 requires requires { _Begin{}(__cust_access::__as_const((_Tp&&)__e)); } in _GLIBCXX_VISIBILITY()
506 requires requires { _End{}(__cust_access::__as_const((_Tp&&)__e)); } in _GLIBCXX_VISIBILITY()
513 concept __member_rbegin = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
523 && requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
529 concept __reversable = requires(_Tp& __t) in _GLIBCXX_VISIBILITY()
561 requires __member_rbegin<_Tp> || __adl_rbegin<_Tp> || __reversable<_Tp> in _GLIBCXX_VISIBILITY()
[all …]
H A Dranges_algo.h161 requires convertible_to<const _Iter&, _Iter2> in _GLIBCXX_VISIBILITY()
168 requires convertible_to<_Iter, _Iter2> && convertible_to<_Fp, _F2p> in _GLIBCXX_VISIBILITY()
240 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
253 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
328 requires indirectly_comparable<_Iter1, _Iter2, _Pred, _Proj1, _Proj2> in _GLIBCXX_VISIBILITY()
346 requires indirectly_comparable<iterator_t<_Range1>, iterator_t<_Range2>, in _GLIBCXX_VISIBILITY()
365 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
380 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY()
430 requires convertible_to<const _Iter1&, _IIter1> in _GLIBCXX_VISIBILITY()
437 requires convertible_to<_Iter1, _IIter1> in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/goldmont/
H A Dcache.json69 …"BriefDescription": "Requires MSR_OFFCORE_RESP[0,1] to specify request type and response. (duplica…
241 …or ownership (RFO) requests (demand & prefetch) that miss the L2 cache. Requires MSR_OFFCORE_RESP[…
254 …a snoop hit in the other processor module, data forwarding is required. Requires MSR_OFFCORE_RESP[…
267 …noop hit in the other processor module, no data forwarding is required. Requires MSR_OFFCORE_RESP[…
280 …miss for the L2 cache with a snoop miss in the other processor module. Requires MSR_OFFCORE_RESP[…
293 …for ownership (RFO) requests (demand & prefetch) that hit the L2 cache. Requires MSR_OFFCORE_RESP[…
306 …or ownership (RFO) requests (demand & prefetch) that miss the L2 cache. Requires MSR_OFFCORE_RESP[…
319 …a snoop hit in the other processor module, data forwarding is required. Requires MSR_OFFCORE_RESP[…
332 …noop hit in the other processor module, no data forwarding is required. Requires MSR_OFFCORE_RESP[…
345 …miss for the L2 cache with a snoop miss in the other processor module. Requires MSR_OFFCORE_RESP[…
[all …]
/OK3568_Linux_fs/external/mpp/tools/
H A Dmpp_doxyfile145 # This tag requires that the tag FULL_PATH_NAMES is set to YES.
668 # extension is automatically appended if omitted. This requires the bibtex tool
873 # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
936 # This tag requires that the tag SOURCE_BROWSER is set to YES.
958 # This tag requires that the tag SOURCE_BROWSER is set to YES.
984 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
992 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1009 # This tag requires that the tag GENERATE_HTML is set to YES.
1016 # This tag requires that the tag GENERATE_HTML is set to YES.
1036 # This tag requires that the tag GENERATE_HTML is set to YES.
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/tc-tests/filters/
H A Dfw.json10 "requires": "nsPlugin" string
32 "requires": "nsPlugin" string
54 "requires": "nsPlugin" string
57 "requires": "nsPlugin" string
60 "requires": "nsPlugin" string
63 "requires": "nsPlugin" string
66 "requires": "nsPlugin" string
69 "requires": "nsPlugin" string
72 "requires": "nsPlugin" string
75 "requires": "nsPlugin" string
[all …]
H A Dbasic.json10 "requires": "nsPlugin" string
32 "requires": "nsPlugin" string
54 "requires": "nsPlugin" string
76 "requires": "nsPlugin" string
98 "requires": "nsPlugin" string
120 "requires": "nsPlugin" string
142 "requires": "nsPlugin" string
164 "requires": "nsPlugin" string
186 "requires": "nsPlugin" string
208 "requires": "nsPlugin" string
[all …]
H A Du32.json10 "requires": "nsPlugin" string
32 "requires": "nsPlugin" string
54 "requires": "nsPlugin" string
77 "requires": "nsPlugin" string
99 "requires": "nsPlugin" string
121 "requires": "nsPlugin" string
144 "requires": "nsPlugin" string
167 "requires": "nsPlugin" string
189 "requires": "nsPlugin" string
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/goldmontplus/
H A Dcache.json83 …"BriefDescription": "Requires MSR_OFFCORE_RESP[0,1] to specify request type and response. (duplica…
269 …l cache lines have any transaction responses from the uncore subsystem. Requires MSR_OFFCORE_RESP[…
284 …ounts demand cacheable data reads of full cache lines hit the L2 cache. Requires MSR_OFFCORE_RESP[…
299 …miss for the L2 cache with a snoop miss in the other processor module. Requires MSR_OFFCORE_RESP[…
314 …a snoop hit in the other processor module, data forwarding is required. Requires MSR_OFFCORE_RESP[…
329 …r cycle, from the time of the L2 miss to when any response is received. Requires MSR_OFFCORE_RESP[…
344 …ta cache line have any transaction responses from the uncore subsystem. Requires MSR_OFFCORE_RESP[…
359 …requests generated by a write to full data cache line hit the L2 cache. Requires MSR_OFFCORE_RESP[…
374 …miss for the L2 cache with a snoop miss in the other processor module. Requires MSR_OFFCORE_RESP[…
389 …a snoop hit in the other processor module, data forwarding is required. Requires MSR_OFFCORE_RESP[…
[all …]
/OK3568_Linux_fs/external/xserver/hw/dmx/doxygen/
H A Ddoxygen.conf.in153 # This tag requires that the tag FULL_PATH_NAMES is set to YES.
691 # extension is automatically appended if omitted. This requires the bibtex tool
905 # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
968 # This tag requires that the tag SOURCE_BROWSER is set to YES.
990 # This tag requires that the tag SOURCE_BROWSER is set to YES.
1016 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1024 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1041 # This tag requires that the tag GENERATE_HTML is set to YES.
1048 # This tag requires that the tag GENERATE_HTML is set to YES.
1068 # This tag requires that the tag GENERATE_HTML is set to YES.
[all …]
/OK3568_Linux_fs/external/libmali/
H A Dmeson.build56 requires = [] variable
58 requires = ['libdrm'] variable
61 requires = ['libdrm', 'wayland-client', 'wayland-server'] variable
64 requires += ['libffi', 'libcrypto']
68 requires = ['libdrm', 'x11', 'xcb'] variable
71 requires += ['xfixes', 'xext', 'xau', 'xdmcp', 'xdamage']
73 requires += ['x11-xcb', 'xcb-dri2']
87 # The vendor package requires soname of wrappers.
187 requires : requires,
192 # The utgard DDK requires libMali.so
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_js_ctx_attr.h46 * Requires:
57 * Requires:
70 * Requires:
88 * Requires:
99 * Requires:
114 * Requires:
129 * Requires:
139 * Requires:
/OK3568_Linux_fs/external/security/librkcrypto/test/include/c_mode/
H A Dconfig.h47 * Requires support for asm() in compiler.
83 * Requires: MBEDTLS_HMAC_DRBG_C
94 * Requires: MBEDTLS_BIGNUM_C
114 * This feature requires zlib library and headers to be present.
136 * Requires: MBEDTLS_HAVE_ASM
210 * Requires: MBEDTLS_ECP_C
225 * Requires: MBEDTLS_ECP_C, MBEDTLS_ASN1_WRITE_C, MBEDTLS_ASN1_PARSE_C
244 * Requires: MBEDTLS_ECP_C, MBEDTLS_MD_C
258 * Requires: MBEDTLS_BIGNUM_C and at least one MBEDTLS_ECP_DP_XXX_ENABLED
/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/tc-tests/qdiscs/
H A Dred.json10 "requires": "nsPlugin" string
33 "requires": "nsPlugin" string
56 "requires": "nsPlugin" string
79 "requires": "nsPlugin" string
102 "requires": "nsPlugin" string
125 "requires": "nsPlugin" string
148 "requires": "nsPlugin" string
170 "requires": "nsPlugin" string

12345678910>>...195