Home
last modified time | relevance | path

Searched refs:vec_t (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/range/test/
Dstd_container.cpp29 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 …]
Dreversible_range.cpp32 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()
Diterator_pair.cpp30 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()
Dsub_range.cpp249 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/
DWebAssemblyInstrSIMD.td51 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/
Dput-get-helper-eg.cpp53 typedef std::vector< std::string > vec_t; in main() typedef
54 typedef foo::iterator_property_map< vec_t::iterator, in main()
Dcanonical_ordering.cpp55 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef
56 std::vector< vec_t > embedding(num_vertices(g)); in main()
Dplanar_face_traversal.cpp82 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef
83 std::vector< vec_t > embedding(num_vertices(g)); in main()
Dmake_biconnected_planar.cpp51 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef
52 std::vector< vec_t > embedding(num_vertices(g)); in main()
Dmake_maximal_planar.cpp70 typedef std::vector< graph_traits< graph >::edge_descriptor > vec_t; in main() typedef
71 std::vector< vec_t > embedding(num_vertices(g)); in main()