/third_party/boost/libs/endian/test/ |
D | endian_reverse_test.cpp | 15 template<class T, std::size_t N = sizeof(T)> struct test_value struct 19 template<class T> struct test_value<T, 1> struct 28 template<class T> T const test_value<T, 1>::v1; argument 29 template<class T> T const test_value<T, 1>::w1; 30 template<class T> T const test_value<T, 1>::v2; 31 template<class T> T const test_value<T, 1>::w2; 33 template<class T> struct test_value<T, 2> struct 42 template<class T> T const test_value<T, 2>::v1; argument 43 template<class T> T const test_value<T, 2>::w1; 44 template<class T> T const test_value<T, 2>::v2; [all …]
|
/third_party/boost/libs/icl/test/ |
D | test_value_maker.hpp | 53 struct test_value; 56 struct test_value<std::string> struct 71 struct test_value<Type*> struct 78 values[idx] = test_value<Type>::make(idx - offset); in map_integers() 108 struct test_value struct 138 return segment_type(inter_val, test_value<codomain_type>::make(val)); in mk_segment() 156 return domain_mapping_type(test_value< domain_type>::make(key), in map_pair() 157 test_value<codomain_type>::make(val)); in map_pair() 162 return std_pair_type(test_value< domain_type>::make(key), in std_pair() 163 test_value<codomain_type>::make(val)); in std_pair() [all …]
|
/third_party/boost/libs/math/test/ |
D | test_next_decimal.cpp | 36 void test_value(const T& val, const char* name) in test_value() function 125 test_value(a, name); in test_values() 126 test_value(T(-a), name); in test_values() 127 test_value(b, name); in test_values() 128 test_value(T(-b), name); in test_values() 129 test_value(T(b / 3), name); in test_values() 130 test_value(T(-b / 3), name); in test_values() 131 test_value(boost::math::tools::epsilon<T>(), name); in test_values() 132 test_value(T(-boost::math::tools::epsilon<T>()), name); in test_values() 133 test_value(boost::math::tools::min_value<T>(), name); in test_values() [all …]
|
D | test_difference.cpp | 17 void test_value(const T& val, const char* name) in test_value() function 85 test_value(a, name); in test_values() 86 test_value(-a, name); in test_values() 87 test_value(b, name); in test_values() 88 test_value(-b, name); in test_values() 89 test_value(boost::math::tools::epsilon<T>(), name); in test_values() 90 test_value(-boost::math::tools::epsilon<T>(), name); in test_values() 91 test_value(boost::math::tools::min_value<T>(), name); in test_values() 92 test_value(-boost::math::tools::min_value<T>(), name); in test_values() 95 test_value(z, name); in test_values() [all …]
|
D | test_next.cpp | 33 void test_value(const T& val, const char* name) in test_value() function 117 test_value(a, name); in test_values() 118 test_value(-a, name); in test_values() 119 test_value(b, name); in test_values() 120 test_value(-b, name); in test_values() 121 test_value(boost::math::tools::epsilon<T>(), name); in test_values() 122 test_value(-boost::math::tools::epsilon<T>(), name); in test_values() 123 test_value(boost::math::tools::min_value<T>(), name); in test_values() 124 test_value(-boost::math::tools::min_value<T>(), name); in test_values() 127 test_value(z, name); in test_values() [all …]
|
/third_party/musl/libc-test/src/functional/ |
D | string_memset.c | 42 static void test_value(int c) in test_value() function 64 test_value('c'); in main() 65 test_value(0); in main() 66 test_value(-1); in main() 67 test_value(-5); in main() 68 test_value(0xab); in main()
|
/third_party/boost/libs/thread/test/ |
D | test_2741.cpp | 21 int test_value; variable 29 test_value = 999; in simple_thread() 66 test_value = 0; in do_test_creation_with_attrs() 71 BOOST_CHECK_EQUAL(test_value, 999); in do_test_creation_with_attrs()
|
D | test_thread.cpp | 26 int test_value; variable 30 test_value = 999; in simple_thread() 57 test_value = 0; in do_test_creation() 60 BOOST_CHECK_EQUAL(test_value, 999); in do_test_creation()
|
/third_party/ltp/testcases/commands/sysctl/ |
D | sysctl02.sh | 46 local test_value="$1" 49 tst_res TINFO "trying to set $sys_name=$test_value" 50 sysctl -w -q $sys_name=$test_value 2>/dev/null
|
D | sysctl01.sh | 31 local test_value=$(cat "$dir""$name") 33 if [ ${test_value} -eq ${orig_value} ]; then
|
/third_party/python/Lib/distutils/tests/ |
D | test_msvccompiler.py | 39 test_value = '₃⁴₅' 43 os.environ[test_var] = test_value 47 self.assertEqual(test_value, env[test_var.lower()])
|
/third_party/node/test/js-native-api/test_reference/ |
D | test_reference.c | 6 static int test_value = 1; variable 18 NAPI_ASSERT_RETURN_VOID(env, actual_value == &test_value, in FinalizeExternal() 24 int* data = &test_value; in CreateExternal() 57 &test_value, in CreateExternalWithFinalize() 81 NAPI_ASSERT(env, data != NULL && *(int*)data == test_value, in CheckExternal()
|
/third_party/boost/libs/multiprecision/test/ |
D | test_cpp_int_left_shift.cpp | 64 void test_value(const T& val) in test_value() function 88 test_value(mp); in test() 91 test_value(generate_random<mp_type>(std::numeric_limits<mp_type>::digits)); in test()
|
/third_party/grpc/test/core/compression/ |
D | message_compress_test.cc | 33 typedef enum { ONE_A = 0, ONE_KB_A, ONE_MB_A, TEST_VALUE_COUNT } test_value; typedef 117 test_value id, grpc_message_compression_algorithm algorithm) { in get_compressability() 132 static grpc_slice create_test_value(test_value id) { in create_test_value() 330 grpc_slice slice = create_test_value(static_cast<test_value>(m)); in main() 336 static_cast<test_value>(m), in main()
|
/third_party/boost/libs/sort/test/ |
D | integer_sort_test.cpp | 118 const int test_value = 42; in corner_test() local 119 test_vec.push_back(test_value); in corner_test() 122 BOOST_CHECK(test_vec[0] == test_value); in corner_test()
|
D | float_sort_test.cpp | 140 const float test_value = -0.0; in corner_test() local 141 test_vec.push_back(test_value); in corner_test() 144 BOOST_CHECK(test_vec[0] == test_value); in corner_test()
|
/third_party/boost/libs/geometry/index/test/rtree/ |
D | rtree_non_cartesian.cpp | 78 void test_value() in test_value() function 110 test_value<Point>(); in test_cs() 111 test_value<bg::model::box<Point> >(); in test_cs()
|
/third_party/boost/libs/type_traits/test/ |
D | check_integral_constant.hpp | 23 template <long test_value> 26 static long value() { return test_value; } in value()
|
/third_party/boost/libs/io/test/ |
D | ostream_joiner_test.cpp | 94 void test_value() in test_value() function 115 test_value(); in main()
|
/third_party/boost/libs/type_erasure/test/ |
D | test_increment.cpp | 30 BOOST_AUTO_TEST_CASE(test_value) in BOOST_AUTO_TEST_CASE() argument
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gstmessage.c | 523 const gint test_value = 12345; in GST_START_TEST() local 532 test_value, NULL); in GST_START_TEST() 586 &value) && (value == test_value)); in GST_START_TEST() 604 &value) && (value == test_value)); in GST_START_TEST()
|
/third_party/boost/libs/lexical_cast/test/ |
D | lexical_cast_float_types_test.cpp | 339 test_value = VAL + boost::math::tools::epsilon<test_t>() * i ; \ 340 converted_val = lexical_cast<test_t>( lexical_cast<STRING_TYPE>(test_value) ); \ 342 test_value, \ 370 test_t test_value; in test_converion_from_to_float_types() local
|
/third_party/python/Lib/unittest/test/testmock/ |
D | testsealable.py | 62 m = mock.Mock(test_value=1) 65 self.assertEqual(m.test_value, 1)
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jdmerge.c | 470 int test_value = 1; in is_big_endian() local 471 if (*(char *)&test_value != 1) in is_big_endian()
|
/third_party/libjpeg-turbo/ |
D | jdmerge.c | 471 int test_value = 1; in is_big_endian() local 472 if (*(char *)&test_value != 1) in is_big_endian()
|