Home
last modified time | relevance | path

Searched refs:set0 (Results 1 – 25 of 49) sorted by relevance

12

/third_party/skia/tests/
DBitSetTest.cpp14 SkBitSet set0(65536); in DEF_TEST() local
15 REPORTER_ASSERT(reporter, set0.size() == 65536); in DEF_TEST()
16 REPORTER_ASSERT(reporter, set0.test(0) == false); in DEF_TEST()
17 REPORTER_ASSERT(reporter, set0.test(32767) == false); in DEF_TEST()
18 REPORTER_ASSERT(reporter, set0.test(65535) == false); in DEF_TEST()
19 REPORTER_ASSERT(reporter, !set0.findFirst()); in DEF_TEST()
21 set0.set(22); in DEF_TEST()
22 REPORTER_ASSERT(reporter, set0.test(22) == true); in DEF_TEST()
23 REPORTER_ASSERT(reporter, set0.findFirst()); in DEF_TEST()
24 REPORTER_ASSERT(reporter, *set0.findFirst() == 22); in DEF_TEST()
[all …]
/third_party/flutter/skia/tests/
DBitSetTest.cpp14 SkBitSet set0(65536); in DEF_TEST() local
15 REPORTER_ASSERT(reporter, set0.has(0) == false); in DEF_TEST()
16 REPORTER_ASSERT(reporter, set0.has(32767) == false); in DEF_TEST()
17 REPORTER_ASSERT(reporter, set0.has(65535) == false); in DEF_TEST()
19 set0.set(22); in DEF_TEST()
20 REPORTER_ASSERT(reporter, set0.has(22) == true); in DEF_TEST()
21 set0.set(24); in DEF_TEST()
22 REPORTER_ASSERT(reporter, set0.has(24) == true); in DEF_TEST()
23 set0.set(35); // on a different DWORD in DEF_TEST()
24 REPORTER_ASSERT(reporter, set0.has(35) == true); in DEF_TEST()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/misc/
Dplurals.txt19 bm{"set0"}
21 bo{"set0"}
36 dz{"set0"}
68 id{"set0"}
69 ig{"set0"}
70 ii{"set0"}
71 in{"set0"}
77 ja{"set0"}
78 jbo{"set0"}
82 jv{"set0"}
[all …]
/third_party/icu/icu4c/source/data/misc/
Dplurals.txt21 bm{"set0"}
23 bo{"set0"}
40 dz{"set0"}
72 id{"set0"}
73 ig{"set0"}
74 ii{"set0"}
75 in{"set0"}
81 ja{"set0"}
82 jbo{"set0"}
86 jv{"set0"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/misc/
Dplurals.txt21 bm{"set0"}
23 bo{"set0"}
40 dz{"set0"}
72 id{"set0"}
73 ig{"set0"}
74 ii{"set0"}
75 in{"set0"}
81 ja{"set0"}
82 jbo{"set0"}
86 jv{"set0"}
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_integer_simd.inl16 __m128i const set0 = v.data; local
19 __m128i const and1 = _mm_and_si128(set0, set1);
22 __m128i const set2 = _mm_andnot_si128(set0, _mm_set1_epi32(-1));
23 __m128i const and2 = _mm_and_si128(set0, set2);
37 __m128i const set0 = v.data; local
40 __m128i const and0 = _mm_and_si128(set0, set1);
41 __m128i const sft0 = _mm_slli_epi32(set0, Shift);
Dfunc_geometric_simd.inl43 __m128 const set0 = _mm_set_ps(0.0f, a.z, a.y, a.x); local
45 __m128 const xpd0 = glm_vec4_cross(set0, set1);
/third_party/boost/boost/mpl/set/aux_/
Diterator.hpp61 struct next< s_iter<Set,set0<> > >
63 typedef s_iter<Set,set0<> > type;
71 template< typename Set > struct s_iter<Set, set0<> >
82 typedef s_iter<Set,set0<> > next;
87 is_same< Tail,set0<> >
Dset0.hpp53 template< typename Dummy = na > struct set0 struct
55 typedef set0<> item_; argument
63 BOOST_MPL_AUX_SET0_OVERLOAD( aux::no_tag, ORDER_BY_KEY, set0<>, void const volatile* );
64 BOOST_MPL_AUX_SET0_OVERLOAD( aux::yes_tag, IS_MASKED, set0<>, void const volatile* );
Dclear_impl.hpp29 typedef set0<> type;
Dbegin_end_impl.hpp37 typedef s_iter< Set,set0<> > type;
/third_party/boost/boost/parameter/aux_/
Dset.hpp16 typedef ::boost::mp11::mp_list<> set0; typedef
55 typedef ::boost::mpl::list0<> set0; typedef
93 typedef ::boost::mpl::set0<> set0; typedef
/third_party/boost/boost/multi_index/detail/
Dno_duplicate_tags.hpp55 mpl::set0<>,
83 mpl::set0<>,
/third_party/boost/boost/type_erasure/
Dregister_binding.hpp102 …typedef typename ::boost::type_erasure::detail::get_placeholders<F, ::boost::mpl::set0<> >::type p… in operator ()()
152 ::boost::mpl::set0<>, in register_binding()
161 ::boost::mpl::set0<>, in register_binding()
Ddeduced.hpp41 ::boost::mpl::set0<>
/third_party/boost/libs/mpl/test/
Dset.cpp43 MPL_ASSERT(( is_same< BOOST_DEDUCED_TYPENAME clear<s>::type, set0<> > )); in empty_set_test()
73 MPL_ASSERT(( is_same< BOOST_DEDUCED_TYPENAME clear<s>::type, set0<> > )); in int_set_test()
105 MPL_ASSERT(( is_same< BOOST_DEDUCED_TYPENAME clear<s>::type, set0<> > )); in int_char_set_test()
134 MPL_ASSERT(( is_same< BOOST_DEDUCED_TYPENAME clear<s>::type, set0<> > )); in int_char_long_set_test()
227 typedef mpl::set0<> s01; in MPL_TEST_CASE()
/third_party/boost/libs/hana/test/set/
Dcnstr.default.cpp54 auto set0 = hana::make_set(); in main() local
55 static_assert(std::is_default_constructible<decltype(set0)>{}, ""); in main()
/third_party/vk-gl-cts/android/cts/master/vk-master-2020-03-01/
Dbinding-model.txt4840 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.single.std140.comp
4841 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.single.std140.frag
4842 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.single.std140.vert
4843 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.multi.std140.comp
4844 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.multi.std140.frag
4845 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.multi.std140.vert
4846 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.replay.std140.comp
4847 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.replay.std140.frag
4848 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.nostore.replay.std140.vert
4849 dEQP-VK.binding_model.buffer_device_address.set0.depth1.baseubo.load.store.single.std140.comp
[all …]
/third_party/boost/boost/type_erasure/detail/
Dcheck_map.hpp45 ::boost::mpl::set0<>,
58 ::boost::mpl::set0<>,
Ddynamic_vtable.hpp64 …typedef typename ::boost::type_erasure::detail::get_placeholders<F, ::boost::mpl::set0<> >::type p… in lookup()
139 …typedef typename ::boost::type_erasure::detail::get_placeholders<F, ::boost::mpl::set0<> >::type p…
Dnormalize.hpp284 template<class Concept, class Out = ::boost::mpl::pair< ::boost::mpl::set0<>, ::boost::mpl::map0<> …
312 ::boost::mpl::set0<>,
344 ::boost::mpl::set0<>,
374 class Out = ::boost::mpl::set0<>
/third_party/boost/boost/mpl/set/
Dset0_c.hpp24 : set0<>
/third_party/boost/boost/geometry/util/
Dcombine_if.hpp84 Sequence1, boost::mpl::set0<>, combine
/third_party/boost/boost/mpl/set/aux_/preprocessed/plain/
Dset10.hpp21 , typename set0< >::item_
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_peephole.cpp2042 Instruction *set0 = src0->getInsn(); in handleLOGOP() local
2045 if (!set0 || set0->fixed || !set1 || set1->fixed) in handleLOGOP()
2048 Instruction *xchg = set0; in handleLOGOP()
2049 set0 = set1; in handleLOGOP()
2058 if (set0->op != OP_SET && in handleLOGOP()
2059 set0->op != OP_SET_AND && in handleLOGOP()
2060 set0->op != OP_SET_OR && in handleLOGOP()
2061 set0->op != OP_SET_XOR) in handleLOGOP()
2063 if (set0->getDef(0)->refCount() > 1 && in handleLOGOP()
2066 if (set0->getPredicate() || set1->getPredicate()) in handleLOGOP()
[all …]

12