/third_party/skia/tests/ |
D | BitSetTest.cpp | 14 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/ |
D | BitSetTest.cpp | 14 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/ |
D | plurals.txt | 19 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/ |
D | plurals.txt | 21 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/ |
D | plurals.txt | 21 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/ |
D | func_integer_simd.inl | 16 __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);
|
D | func_geometric_simd.inl | 43 __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_/ |
D | iterator.hpp | 61 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<> >
|
D | set0.hpp | 53 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* );
|
D | clear_impl.hpp | 29 typedef set0<> type;
|
D | begin_end_impl.hpp | 37 typedef s_iter< Set,set0<> > type;
|
/third_party/boost/boost/parameter/aux_/ |
D | set.hpp | 16 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/ |
D | no_duplicate_tags.hpp | 55 mpl::set0<>, 83 mpl::set0<>,
|
/third_party/boost/boost/type_erasure/ |
D | register_binding.hpp | 102 …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()
|
D | deduced.hpp | 41 ::boost::mpl::set0<>
|
/third_party/boost/libs/mpl/test/ |
D | set.cpp | 43 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/ |
D | cnstr.default.cpp | 54 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/ |
D | binding-model.txt | 4840 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/ |
D | check_map.hpp | 45 ::boost::mpl::set0<>, 58 ::boost::mpl::set0<>,
|
D | dynamic_vtable.hpp | 64 …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…
|
D | normalize.hpp | 284 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/ |
D | set0_c.hpp | 24 : set0<>
|
/third_party/boost/boost/geometry/util/ |
D | combine_if.hpp | 84 Sequence1, boost::mpl::set0<>, combine
|
/third_party/boost/boost/mpl/set/aux_/preprocessed/plain/ |
D | set10.hpp | 21 , typename set0< >::item_
|
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_peephole.cpp | 2042 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 …]
|