Home
last modified time | relevance | path

Searched refs:test_impl (Results 1 – 25 of 68) sorted by relevance

123

/aosp_15_r20/external/rust/android-crates-io/crates/protobuf-json-mapping/src/
Drfc_3339.rs475 fn test_impl(expected: &str, secs: i64, nanos: u32, subsec_digits: u32) { in test_fmt() function
487 test_impl("1970-01-01T00:00:00Z", 0, 0, 0); in test_fmt()
488 test_impl("2018-08-29T23:26:19Z", 1535585179, 0, 0); in test_fmt()
489 test_impl("2018-08-29T23:26:19.123Z", 1535585179, 123456789, 3); in test_fmt()
490 test_impl("1646-04-01T03:45:44Z", -10216613656, 0, 0); in test_fmt()
491 test_impl("1970-01-01T00:00:00.000000001000Z", 0, 1, 12); in test_fmt()
492 test_impl("5138-11-16T09:46:40Z", 100000000000, 0, 0); in test_fmt()
493 test_impl("+33658-09-27T01:46:41Z", 1000000000001, 0, 0); in test_fmt()
495 test_impl("0000-12-31T00:00:00Z", -62135683200, 0, 0); in test_fmt()
497 test_impl("-0003-10-30T14:13:20Z", -62235683200, 0, 0); in test_fmt()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/classic/test/
Dposition_iterator_tests.cpp32 namespace test_impl { namespace
80 mpl::for_each<iter_list_t>(test_impl::InstanciateTest()); in CheckInstantiation()
97 namespace test_impl { namespace
420 test_impl::CheckConstructors in CheckConstructors()
426 test_impl::CheckConstructors in CheckConstructors()
438 test_impl::CheckIncrement(position_iterator<iter_t>(a, a+10, "")); in CheckBasicFunctionality()
439 test_impl::CheckIncrement(position_iterator2<iter_t>(a, a+10, "")); in CheckBasicFunctionality()
440 test_impl::CheckIncrement(position_iterator<iter_t, file_position_without_column>(a, a+10, "")); in CheckBasicFunctionality()
441test_impl::CheckIncrement(position_iterator2<iter_t, file_position_without_column>(a, a+10, "")); in CheckBasicFunctionality()
445 test_impl::CheckLineCounting(position_iterator<iter_t>(b, b+16, "")); in CheckBasicFunctionality()
[all …]
Dtree_tests.cpp154 namespace test_impl { namespace
221 test_impl::fold_node<T>()(t, p); in fold()
229 test_impl::fold_child<T1>()(t, p1, 0); in fold()
230 test_impl::fold_child<T2>()(t, p2, 1); in fold()
231 test_impl::fold_child<T3>()(t, p3, 2); in fold()
232 test_impl::fold_child<T4>()(t, p4, 3); in fold()
233 test_impl::fold_child<T5>()(t, p5, 4); in fold()
234 test_impl::fold_child<T6>()(t, p6, 5); in fold()
235 test_impl::fold_child<T7>()(t, p7, 6); in fold()
236 test_impl::fold_child<T8>()(t, p8, 7); in fold()
[all …]
Ddirectives_tests.cpp29 char const* cpx_last = cpx + test_impl::string_length(cpx); in directives_test1()
46 char const* cp_last = cp + test_impl::string_length(cp); in directives_test1()
83 char const* cpy_last = cpy + test_impl::string_length(cpy); in directives_test1()
98 char const* cpz_last = cpz + test_impl::string_length(cpz); in directives_test1()
/aosp_15_r20/external/libaom/test/
H A Dcomp_mask_pred_test.cc120 void RunCheckOutput(comp_mask_pred_func test_impl, BLOCK_SIZE bsize, int inv);
121 void RunSpeedTest(comp_mask_pred_func test_impl, BLOCK_SIZE bsize);
124 void AV1CompMaskPredTest::RunCheckOutput(comp_mask_pred_func test_impl, in RunCheckOutput() argument
134 test_impl(comp_pred2_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, inv); in RunCheckOutput()
141 void AV1CompMaskPredTest::RunSpeedTest(comp_mask_pred_func test_impl, in RunSpeedTest() argument
150 comp_mask_pred_func funcs[2] = { aom_comp_mask_pred_c, test_impl }; in RunSpeedTest()
223 void RunCheckOutput(upsampled_pred_func test_impl, BLOCK_SIZE bsize);
224 void RunSpeedTest(upsampled_pred_func test_impl, BLOCK_SIZE bsize,
228 void AV1UpsampledPredTest::RunCheckOutput(upsampled_pred_func test_impl, in RunCheckOutput() argument
242 test_impl(nullptr, nullptr, 0, 0, nullptr, comp_pred2_, w, h, subx, suby, in RunCheckOutput()
[all …]
H A Dhash_test.cc40 void RunCheckOutput(get_crc32c_value_func test_impl);
41 void RunSpeedTest(get_crc32c_value_func test_impl);
43 void RunZeroTest(get_crc32c_value_func test_impl);
69 void AV1Crc32cHashTest::RunCheckOutput(get_crc32c_value_func test_impl) { in RunCheckOutput() argument
72 uint32_t crc0 = test_impl(&calc_, buffer_, length_); in RunCheckOutput()
73 uint32_t crc1 = test_impl(&calc_, buffer_, length_); in RunCheckOutput()
79 uint32_t crc3 = test_impl(&calc_, buffer_, length_); in RunCheckOutput()
85 void AV1Crc32cHashTest::RunSpeedTest(get_crc32c_value_func test_impl) { in RunSpeedTest() argument
86 get_crc32c_value_func impls[] = { av1_get_crc32c_value_c, test_impl }; in RunSpeedTest()
103 void AV1Crc32cHashTest::RunZeroTest(get_crc32c_value_func test_impl) { in RunZeroTest() argument
[all …]
H A Dav1_k_means_test.cc53 void RunCheckOutput(av1_calc_indices_dim1_func test_impl, BLOCK_SIZE bsize,
55 void RunSpeedTest(av1_calc_indices_dim1_func test_impl, BLOCK_SIZE bsize,
88 void AV1KmeansTest1::RunCheckOutput(av1_calc_indices_dim1_func test_impl, in RunCheckOutput() argument
95 test_impl(data_, centroids_, indices2_, &total_dist_impl, n, k); in RunCheckOutput()
102 void AV1KmeansTest1::RunSpeedTest(av1_calc_indices_dim1_func test_impl, in RunSpeedTest() argument
109 av1_calc_indices_dim1_func funcs[2] = { av1_calc_indices_dim1_c, test_impl }; in RunSpeedTest()
155 void RunCheckOutput(av1_calc_indices_dim2_func test_impl, BLOCK_SIZE bsize,
157 void RunSpeedTest(av1_calc_indices_dim2_func test_impl, BLOCK_SIZE bsize,
194 void AV1KmeansTest2::RunCheckOutput(av1_calc_indices_dim2_func test_impl, in RunCheckOutput() argument
201 test_impl(data_, centroids_, indices2_, &total_dist_impl, n, k); in RunCheckOutput()
[all …]
H A Dav1_round_shift_array_test.cc49 void RunCheckOutput(comp_round_shift_array_func test_impl, BLOCK_SIZE bsize,
51 void RunSpeedTest(comp_round_shift_array_func test_impl, BLOCK_SIZE bsize,
61 comp_round_shift_array_func test_impl, BLOCK_SIZE bsize, int bit) { in RunCheckOutput() argument
71 test_impl(pred_, w, bit); in RunCheckOutput()
78 void AV1CompRoundShiftTest::RunSpeedTest(comp_round_shift_array_func test_impl, in RunSpeedTest() argument
89 comp_round_shift_array_func funcs[2] = { av1_round_shift_array_c, test_impl }; in RunSpeedTest()
H A Dreconinter_test.cc55 void RunTest(BuildCompDiffWtdMaskFunc test_impl, bool is_speed, in RunTest() argument
78 test_impl(mask_test, type, src0, width, src1, width, height, width); in RunTest()
149 void RunTest(BuildCompDiffWtdMaskHighbdFunc test_impl, bool is_speed, in RunTest() argument
180 test_impl(mask_test, type, src0_8, width, src1_8, width, height, width, in RunTest()
255 void RunCheckOutput(BuildCompDiffWtdMaskD16Func test_impl) { in RunCheckOutput() argument
281 test_impl(mask_test, (DIFFWTD_MASK_TYPE)mask_type, src0, width, src1, in RunCheckOutput()
296 void RunSpeedTest(BuildCompDiffWtdMaskD16Func test_impl, in RunSpeedTest() argument
333 test_impl(mask, mask_type, src0, width, src1, width, height, width, in RunSpeedTest()
H A Dcomp_avg_pred_test.cc99 void RunCheckOutput(distwtdcompavg_func test_impl) { in RunCheckOutput() argument
129 test_impl(output2, pred8 + offset_r * w + offset_c, in_w, in_h, in RunCheckOutput()
144 void RunSpeedTest(distwtdcompavg_func test_impl) { in RunSpeedTest() argument
184 test_impl(output2, pred8, in_w, in_h, ref8, in_w, &dist_wtd_comp_params); in RunSpeedTest()
406 void RunCheckOutput(distwtdcompavg_func test_impl) { in RunCheckOutput() argument
438 test_impl(CONVERT_TO_BYTEPTR(output2), in RunCheckOutput()
455 void RunSpeedTest(distwtdcompavg_func test_impl) { in RunSpeedTest() argument
496 test_impl(CONVERT_TO_BYTEPTR(output2), CONVERT_TO_BYTEPTR(pred8), in_w, in RunSpeedTest()
517 void RunCheckOutput(highbddistwtdcompavgupsampled_func test_impl) { in RunCheckOutput() argument
557 test_impl(nullptr, nullptr, 0, 0, nullptr, in RunCheckOutput()
[all …]
H A Dhiprec_convolve_test_util.h51 void RunCheckOutput(hiprec_convolve_func test_impl);
52 void RunSpeedTest(hiprec_convolve_func test_impl);
80 void RunCheckOutput(highbd_hiprec_convolve_func test_impl);
81 void RunSpeedTest(highbd_hiprec_convolve_func test_impl);
H A Dhiprec_convolve_test_util.cc126 void AV1HiprecConvolveTest::RunCheckOutput(hiprec_convolve_func test_impl) { in RunCheckOutput() argument
161 test_impl(input + offset_r * w + offset_c, w, output2.get(), out_w, in RunCheckOutput()
172 void AV1HiprecConvolveTest::RunSpeedTest(hiprec_convolve_func test_impl) { in RunSpeedTest() argument
220 test_impl(input + j * w + k, w, output2.get(), out_w, hkernel, 16, in RunSpeedTest()
259 highbd_hiprec_convolve_func test_impl) { in RunCheckOutput() argument
298 test_impl(input_ptr + offset_r * w + offset_c, w, output2_ptr, out_w, in RunCheckOutput()
310 highbd_hiprec_convolve_func test_impl) { in RunSpeedTest() argument
362 test_impl(input_ptr + j * w + k, w, output2_ptr, out_w, hkernel, 16, in RunSpeedTest()
H A Dwarp_filter_test_util.h57 void RunCheckOutput(warp_affine_func test_impl);
58 void RunSpeedTest(warp_affine_func test_impl);
91 void RunCheckOutput(highbd_warp_affine_func test_impl);
92 void RunSpeedTest(highbd_warp_affine_func test_impl);
H A Dwarp_filter_test_util.cc136 void AV1WarpFilterTest::RunSpeedTest(warp_affine_func test_impl) { in RunSpeedTest() argument
187 test_impl(mat, input, w, h, stride, output.get(), 32, 32, out_w, out_h, in RunSpeedTest()
196 void AV1WarpFilterTest::RunCheckOutput(warp_affine_func test_impl) { in RunCheckOutput() argument
275 test_impl(mat, input, w, h, stride, output2.get(), 32, 32, out_w, in RunCheckOutput()
328 void AV1HighbdWarpFilterTest::RunSpeedTest(highbd_warp_affine_func test_impl) { in RunSpeedTest() argument
382 test_impl(mat, input, w, h, stride, output.get(), 32, 32, out_w, out_h, in RunSpeedTest()
393 highbd_warp_affine_func test_impl) { in RunCheckOutput() argument
478 test_impl(mat, input, w, h, stride, output2.get(), 32, 32, out_w, in RunCheckOutput()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.lazy.split/range.lazy.split.inner/
H A Dctor.outer_iterator.pass.cpp20 constexpr void test_impl() { in test_impl() function
27 test_impl<InnerIterForward, OuterIterForward>(); in test()
28 test_impl<InnerIterInput, OuterIterInput>(); in test()
30 test_impl<InnerIterConst, OuterIterConst>(); in test()
32 test_impl<InnerIterConst, OuterIterNonConst>(); in test()
33 test_impl<InnerIterNonConst, OuterIterNonConst>(); in test()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/lex/
Dregression_wide.cpp58 struct test_impl struct
81 std::size_t test_impl::sequence_counter = 0; argument
83 phoenix::function<test_impl> const test = test_impl();
128 BOOST_TEST(test_impl::sequence_counter == sizeof(data)/sizeof(data[0])); in main()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/
H A Daltivec.rs789 test_impl! { vec_floor(a: vector_float) -> vector_float [ vfloor, vrfim / xvrspim ] }
791 test_impl! { vec_vexptefp(a: vector_float) -> vector_float [ vexptefp, vexptefp ] }
793test_impl! { vec_vcmpgtub(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
794test_impl! { vec_vcmpgtuh(a: vector_unsigned_short, b: vector_unsigned_short) -> vector_bool_short…
795test_impl! { vec_vcmpgtuw(a: vector_unsigned_int, b: vector_unsigned_int) -> vector_bool_int [ vcm…
797test_impl! { vec_vcmpgtsb(a: vector_signed_char, b: vector_signed_char) -> vector_bool_char [ vcmp…
798test_impl! { vec_vcmpgtsh(a: vector_signed_short, b: vector_signed_short) -> vector_bool_short [ v…
799test_impl! { vec_vcmpgtsw(a: vector_signed_int, b: vector_signed_int) -> vector_bool_int [ vcmpgts…
809test_impl! { vec_vcmpgefp(a: vector_float, b: vector_float) -> vector_bool_int [ vcmpgefp, vcmpgef…
811test_impl! { vec_vcmpequb(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/
H A Daltivec.rs789 test_impl! { vec_floor(a: vector_float) -> vector_float [ vfloor, vrfim / xvrspim ] }
791 test_impl! { vec_vexptefp(a: vector_float) -> vector_float [ vexptefp, vexptefp ] }
793test_impl! { vec_vcmpgtub(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
794test_impl! { vec_vcmpgtuh(a: vector_unsigned_short, b: vector_unsigned_short) -> vector_bool_short…
795test_impl! { vec_vcmpgtuw(a: vector_unsigned_int, b: vector_unsigned_int) -> vector_bool_int [ vcm…
797test_impl! { vec_vcmpgtsb(a: vector_signed_char, b: vector_signed_char) -> vector_bool_char [ vcmp…
798test_impl! { vec_vcmpgtsh(a: vector_signed_short, b: vector_signed_short) -> vector_bool_short [ v…
799test_impl! { vec_vcmpgtsw(a: vector_signed_int, b: vector_signed_int) -> vector_bool_int [ vcmpgts…
809test_impl! { vec_vcmpgefp(a: vector_float, b: vector_float) -> vector_bool_int [ vcmpgefp, vcmpgef…
811test_impl! { vec_vcmpequb(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/
H A Daltivec.rs789 test_impl! { vec_floor(a: vector_float) -> vector_float [ vfloor, vrfim / xvrspim ] }
791 test_impl! { vec_vexptefp(a: vector_float) -> vector_float [ vexptefp, vexptefp ] }
793test_impl! { vec_vcmpgtub(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
794test_impl! { vec_vcmpgtuh(a: vector_unsigned_short, b: vector_unsigned_short) -> vector_bool_short…
795test_impl! { vec_vcmpgtuw(a: vector_unsigned_int, b: vector_unsigned_int) -> vector_bool_int [ vcm…
797test_impl! { vec_vcmpgtsb(a: vector_signed_char, b: vector_signed_char) -> vector_bool_char [ vcmp…
798test_impl! { vec_vcmpgtsh(a: vector_signed_short, b: vector_signed_short) -> vector_bool_short [ v…
799test_impl! { vec_vcmpgtsw(a: vector_signed_int, b: vector_signed_int) -> vector_bool_int [ vcmpgts…
809test_impl! { vec_vcmpgefp(a: vector_float, b: vector_float) -> vector_bool_int [ vcmpgefp, vcmpgef…
811test_impl! { vec_vcmpequb(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/
H A Daltivec.rs789 test_impl! { vec_floor(a: vector_float) -> vector_float [ vfloor, vrfim / xvrspim ] }
791 test_impl! { vec_vexptefp(a: vector_float) -> vector_float [ vexptefp, vexptefp ] }
793test_impl! { vec_vcmpgtub(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
794test_impl! { vec_vcmpgtuh(a: vector_unsigned_short, b: vector_unsigned_short) -> vector_bool_short…
795test_impl! { vec_vcmpgtuw(a: vector_unsigned_int, b: vector_unsigned_int) -> vector_bool_int [ vcm…
797test_impl! { vec_vcmpgtsb(a: vector_signed_char, b: vector_signed_char) -> vector_bool_char [ vcmp…
798test_impl! { vec_vcmpgtsh(a: vector_signed_short, b: vector_signed_short) -> vector_bool_short [ v…
799test_impl! { vec_vcmpgtsw(a: vector_signed_int, b: vector_signed_int) -> vector_bool_int [ vcmpgts…
809test_impl! { vec_vcmpgefp(a: vector_float, b: vector_float) -> vector_bool_int [ vcmpgefp, vcmpgef…
811test_impl! { vec_vcmpequb(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/powerpc/
H A Daltivec.rs789 test_impl! { vec_floor(a: vector_float) -> vector_float [ vfloor, vrfim / xvrspim ] }
791 test_impl! { vec_vexptefp(a: vector_float) -> vector_float [ vexptefp, vexptefp ] }
793test_impl! { vec_vcmpgtub(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
794test_impl! { vec_vcmpgtuh(a: vector_unsigned_short, b: vector_unsigned_short) -> vector_bool_short…
795test_impl! { vec_vcmpgtuw(a: vector_unsigned_int, b: vector_unsigned_int) -> vector_bool_int [ vcm…
797test_impl! { vec_vcmpgtsb(a: vector_signed_char, b: vector_signed_char) -> vector_bool_char [ vcmp…
798test_impl! { vec_vcmpgtsh(a: vector_signed_short, b: vector_signed_short) -> vector_bool_short [ v…
799test_impl! { vec_vcmpgtsw(a: vector_signed_int, b: vector_signed_int) -> vector_bool_int [ vcmpgts…
809test_impl! { vec_vcmpgefp(a: vector_float, b: vector_float) -> vector_bool_int [ vcmpgefp, vcmpgef…
811test_impl! { vec_vcmpequb(a: vector_unsigned_char, b: vector_unsigned_char) -> vector_bool_char [ …
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/lexical_cast/test/
Dwchars_test.cpp29 void test_impl(const CharT* wc_arr) in test_impl() function
53 test_impl(L"Test array of chars"); in test_char_types_conversions_wchar_t()
79 test_impl(u"Test array of chars"); in test_char_types_conversions_char16_t()
105 test_impl(U"Test array of chars"); in test_char_types_conversions_char32_t()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/atomics/atomics.types.generic/atomics.types.float/
H A Doperator.float.pass.cpp23 void test_impl() { in test_impl() function
45 test_impl<T>(); in test()
47 test_impl<T, std::add_volatile_t>(); in test()
H A Dassign.pass.cpp26 void test_impl() { in test_impl() function
49 test_impl<T>(); in test()
51 test_impl<T, std::add_volatile_t>(); in test()
H A Dnotify_one.pass.cpp30 void test_impl() { in test_impl() function
70 test_impl<T>(); in test()
72 test_impl<T, std::add_volatile_t>(); in test()

123