Home
last modified time | relevance | path

Searched refs:short_ (Results 1 – 25 of 38) sorted by relevance

12

/third_party/boost/libs/spirit/test/qi/
Dregression_numeric_alternatives.cpp18 using boost::spirit::qi::short_; in main()
32 BOOST_TEST(test("-123", short_(0) | short_(-123))); in main()
33 BOOST_TEST(test("-123", short_(-123) | short_(0))); in main()
Dint1.cpp100 using boost::spirit::short_; in main()
104 BOOST_TEST(test("12345", short_)); in main()
105 BOOST_TEST(test_attr("12345", short_, i)); in main()
123 using boost::spirit::short_; in main()
124 BOOST_TEST(!test_attr("32769", short_, i, false)); in main()
125 BOOST_TEST(!test_attr("41234", short_, i, false)); in main()
Dint3.cpp100 using boost::spirit::short_; in main()
104 BOOST_TEST(test("12345", short_(12345))); in main()
105 BOOST_TEST(!test("12345", short_(54321))); in main()
106 BOOST_TEST(test_attr("12345", short_(12345), i)); in main()
108 BOOST_TEST(!test_attr("12345", short_(54321), i)); in main()
/third_party/boost/libs/spirit/test/x3/
Dint1.cpp104 using boost::spirit::x3::short_; in main()
108 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(short_); in main()
111 BOOST_TEST(test("12345", short_)); in main()
112 BOOST_TEST(test_attr("12345", short_, i)); in main()
132 using boost::spirit::x3::short_; in main()
133 BOOST_TEST(!test_attr("32769", short_, i, false)); in main()
134 BOOST_TEST(!test_attr("41234", short_, i, false)); in main()
/third_party/boost/boost/spirit/home/qi/numeric/
Dint.hpp55 struct use_terminal<qi::domain, tag::short_> : mpl::true_ {};
66 , terminal_ex<tag::short_, fusion::vector1<A0> > >
70 struct use_lazy_terminal<qi::domain, tag::short_, 1> : mpl::true_ {};
161 using spirit::short_;
359 struct make_primitive<tag::short_, Modifiers>
365 terminal_ex<tag::short_
/third_party/boost/libs/compute/test/
Dtest_radix_sort.cpp75 using boost::compute::short_; in BOOST_AUTO_TEST_CASE()
77 short_ data[] = { -4, 152, -94, 963, 31002, -456, 0, -2113 }; in BOOST_AUTO_TEST_CASE()
78 boost::compute::vector<short_> vector(data, data + 8, queue); in BOOST_AUTO_TEST_CASE()
84 CHECK_RANGE_EQUAL(short_, 8, vector, (-2113, -456, -94, -4, 0, 152, 963, 31002)); in BOOST_AUTO_TEST_CASE()
291 using boost::compute::short_; in BOOST_AUTO_TEST_CASE()
293 short_ data[] = { -4, 152, -94, 963, 31002, -456, 0, -2113 }; in BOOST_AUTO_TEST_CASE()
294 boost::compute::vector<short_> vector(data, data + 8, queue); in BOOST_AUTO_TEST_CASE()
298 vector.begin(), vector.end(), boost::compute::greater<short_>(), queue in BOOST_AUTO_TEST_CASE()
304 vector.begin(), vector.end(), boost::compute::greater<short_>(), queue in BOOST_AUTO_TEST_CASE()
308 short_, 8, vector, in BOOST_AUTO_TEST_CASE()
Dtest_insertion_sort.cpp54 using boost::compute::short_; in BOOST_AUTO_TEST_CASE()
56 short_ data[] = { -4, 152, -94, 963, 31002, -456, 0, -2113 }; in BOOST_AUTO_TEST_CASE()
57 boost::compute::vector<short_> vector(data, data + 8, queue); in BOOST_AUTO_TEST_CASE()
63 CHECK_RANGE_EQUAL(short_, 8, vector, (-2113, -456, -94, -4, 0, 152, 963, 31002)); in BOOST_AUTO_TEST_CASE()
Dtest_sort.cpp109 using boost::compute::short_; in BOOST_AUTO_TEST_CASE()
111 short_ data[] = { -4, 152, -94, 963, 31002, -456, 0, -2113 }; in BOOST_AUTO_TEST_CASE()
112 boost::compute::vector<short_> vector(data, data + 8, queue); in BOOST_AUTO_TEST_CASE()
118 CHECK_RANGE_EQUAL(short_, 8, vector, (-2113, -456, -94, -4, 0, 152, 963, 31002)); in BOOST_AUTO_TEST_CASE()
Dtest_lambda.cpp568 compute::short_ host_data[] = { 1, 3, 5, 7, 9 }; in BOOST_AUTO_TEST_CASE()
569 compute::vector<compute::short_> device_vector(host_data, host_data + 5, queue); in BOOST_AUTO_TEST_CASE()
577 clamp(_1, compute::short_(4), compute::short_(6)), in BOOST_AUTO_TEST_CASE()
580 CHECK_RANGE_EQUAL(compute::short_, 5, device_vector, (4, 4, 5, 6, 6)); in BOOST_AUTO_TEST_CASE()
Dtest_type_traits.cpp80 BOOST_CHECK(std::strcmp(bc::type_name<bc::short_>(), "short") == 0); in BOOST_AUTO_TEST_CASE()
/third_party/boost/boost/spirit/home/karma/numeric/
Dint.hpp65 struct use_terminal<karma::domain, tag::short_> // enables short_
104 , terminal_ex<tag::short_, fusion::vector1<A0> >
126 struct use_lazy_terminal<karma::domain, tag::short_, 1>
176 using spirit::short_;
371 struct make_primitive<tag::short_, Modifiers>
424 terminal_ex<tag::short_, fusion::vector1<A0> >, Modifiers>
/third_party/boost/libs/hana/include/boost/hana/fwd/
Dintegral_constant.hpp74 using short_ = integral_constant<short, i>; typedef
78 constexpr short_<i> short_c{};
/third_party/boost/boost/hana/fwd/
Dintegral_constant.hpp74 using short_ = integral_constant<short, i>; typedef
78 constexpr short_<i> short_c{};
/third_party/boost/boost/intrusive/detail/
Darray_initializer.hpp35 short short_; member
/third_party/boost/boost/spirit/home/x3/numeric/
Dint.hpp49 BOOST_SPIRIT_X3_INT_PARSER(short, short_)
/third_party/boost/libs/spirit/doc/karma/
Dauto.qbk74 [[`short`, `int`, `long`] [`short_`, `int_`, `long_`]]
78 [[`short`, `int`, `long`] [`short_`, `int_`, `long_`]]
/third_party/boost/boost/compute/algorithm/
Daccumulate.hpp85 (char_)(uchar_)(short_)(ushort_)(int_)(uint_)(long_)(ulong_)
/third_party/boost/libs/compute/include/boost/compute/algorithm/
Daccumulate.hpp85 (char_)(uchar_)(short_)(ushort_)(int_)(uint_)(long_)(ulong_)
/third_party/boost/boost/compute/types/
Dfundamental.hpp30 typedef cl_short short_; typedef
/third_party/boost/libs/compute/include/boost/compute/types/
Dfundamental.hpp30 typedef cl_short short_; typedef
/third_party/boost/libs/spirit/doc/qi/
Dnumeric.qbk307 [[`boost::spirit::short_ // alias: boost::spirit::qi::short_`]]
368 short_
377 short_(num)
423 short_
424 short_(num)
Dauto.qbk59 [[`short`, `int`, `long`] [`short_`, `int_`, `long_`]]
/third_party/boost/libs/spirit/doc/
Dindex.idx175 short_ "" ".*qi.reference.numeric\..*" qi_index
194 short_ "" ".*karma.reference.numeric\..*" karma_index
/third_party/boost/boost/compute/lambda/
Dcontext.hpp96 void operator()(proto::tag::terminal, const short_ &x) in operator ()()
/third_party/boost/libs/compute/include/boost/compute/lambda/
Dcontext.hpp96 void operator()(proto::tag::terminal, const short_ &x) in operator ()()

12