Searched refs:vec_t (Results 1 – 10 of 10) sorted by relevance
/third_party/boost/libs/range/test/ |
D | std_container.cpp | 29 typedef std::vector<int> vec_t; in check_std_container() typedef 30 vec_t vec; in check_std_container() 32 const vec_t cvec( vec ); in check_std_container() 34 …BOOST_STATIC_ASSERT(( boost::is_same< boost::range_value<vec_t>::type, vec_t::value_type >::value … in check_std_container() 35 …BOOST_STATIC_ASSERT(( boost::is_same< boost::range_iterator<vec_t>::type, vec_t::iterator >::value… in check_std_container() 36 …BOOST_STATIC_ASSERT(( boost::is_same< boost::range_iterator<const vec_t>::type, vec_t::const_itera… in check_std_container() 37 …BOOST_STATIC_ASSERT(( boost::is_same< boost::range_difference<vec_t>::type, vec_t::difference_type… in check_std_container() 38 …BOOST_STATIC_ASSERT(( boost::is_same< boost::range_size<vec_t>::type, vec_t::size_type >::value )); in check_std_container() 39 …BOOST_STATIC_ASSERT(( boost::is_same< boost::range_iterator<vec_t>::type, vec_t::iterator >::value… in check_std_container() 40 …BOOST_STATIC_ASSERT(( boost::is_same< boost::range_iterator<const vec_t>::type, vec_t::const_itera… in check_std_container() [all …]
|
D | reversible_range.cpp | 32 typedef std::vector<int> vec_t; in check_iterator() typedef 33 typedef vec_t::iterator iterator; in check_iterator() 38 vec_t vec; in check_iterator() 43 BOOST_CHECK( boost::rbegin( vec ) == boost::range_reverse_iterator<vec_t>::type( vec.end() ) ); in check_iterator() 44 BOOST_CHECK( boost::rend( vec ) == boost::range_reverse_iterator<vec_t>::type( vec.begin() ) ); in check_iterator()
|
D | iterator_pair.cpp | 30 typedef std::vector<int> vec_t; in check_iterator_pair() typedef 31 vec_t vec; in check_iterator_pair() 33 typedef std::pair<vec_t::iterator,vec_t::iterator> in check_iterator_pair() 35 typedef std::pair<vec_t::const_iterator,vec_t::const_iterator> in check_iterator_pair()
|
D | sub_range.cpp | 249 typedef std::vector<int> vec_t; in ticket_10514() typedef 250 typedef boost::sub_range<vec_t> range_t; in ticket_10514() 251 vec_t v(10); in ticket_10514()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrSIMD.td | 51 foreach vec_t = [v16i8, v8i16, v4i32, v2i64, v4f32, v2f64] in { 52 def : LoadPatNoOffset<vec_t, load, LOAD_V128>; 53 def : LoadPatImmOff<vec_t, load, regPlusImm, LOAD_V128>; 54 def : LoadPatImmOff<vec_t, load, or_is_add, LOAD_V128>; 55 def : LoadPatOffsetOnly<vec_t, load, LOAD_V128>; 56 def : LoadPatGlobalAddrOffOnly<vec_t, load, LOAD_V128>; 103 multiclass SIMDLoadExtend<ValueType vec_t, string name, bits<32> simdop> { 106 defm LOAD_EXTEND_S_#vec_t : 111 defm LOAD_EXTEND_U_#vec_t : 149 foreach vec_t = [v16i8, v8i16, v4i32, v2i64, v4f32, v2f64] in { [all …]
|
/third_party/boost/libs/graph/example/ |
D | put-get-helper-eg.cpp | 53 typedef std::vector< std::string > vec_t; in main() typedef 54 typedef foo::iterator_property_map< vec_t::iterator, in main()
|
D | canonical_ordering.cpp | 55 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef 56 std::vector< vec_t > embedding(num_vertices(g)); in main()
|
D | planar_face_traversal.cpp | 82 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef 83 std::vector< vec_t > embedding(num_vertices(g)); in main()
|
D | make_biconnected_planar.cpp | 51 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef 52 std::vector< vec_t > embedding(num_vertices(g)); in main()
|
D | make_maximal_planar.cpp | 70 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef 71 std::vector< vec_t > embedding(num_vertices(g)); in main()
|