Home
last modified time | relevance | path

Searched refs:test_size (Results 1 – 25 of 1817) sorted by relevance

12345678910>>...73

/dports/devel/hyperscan/hyperscan-5.4.0/unit/internal/
H A Dmulti_bit.cpp77 const u32 test_size = 32; in TEST() local
377 ASSERT_EQ(i, mmbit_iterate_bounded(ba, test_size, 0, test_size)); in TEST_P()
383 ASSERT_EQ(i, mmbit_iterate_bounded(ba, test_size, i, test_size)); in TEST_P()
392 mmbit_iterate_bounded(ba, test_size, i + 1, test_size)); in TEST_P()
409 ASSERT_EQ(i, mmbit_iterate_bounded(ba, test_size, i, test_size)); in TEST_P()
427 ASSERT_EQ(i, mmbit_iterate_bounded(ba, test_size, i, test_size)); in TEST_P()
439 ASSERT_EQ(i+2, mmbit_iterate_bounded(ba, test_size, i+1, test_size)); in TEST_P()
459 ASSERT_EQ(i+1, mmbit_iterate_bounded(ba, test_size, i, test_size)); in TEST_P()
472 ASSERT_EQ(i+1, mmbit_iterate_bounded(ba, test_size, i+1, test_size)); in TEST_P()
617 mmbit_unset_range(ba, test_size, 0, test_size); in TEST_P()
[all …]
H A Dmulti_bit_compress.cpp180 mmbit_set(ba, test_size, test_size / 2); in TEST()
181 mmbit_set(ba, test_size, test_size - 1); in TEST()
204 mmbit_unset(ba, test_size, test_size / 2); in TEST()
205 mmbit_unset(ba, test_size, test_size - 1); in TEST()
236 mmbit_init_range(ba, test_size, 0, test_size); in TEST()
264 mmbit_unset(ba, test_size, test_size / 2); in TEST()
265 mmbit_unset(ba, test_size, test_size - 1); in TEST()
270 mmbit_unset_range(ba, test_size, 0, test_size); in TEST()
297 end = test_size / 2; in TEST_P()
305 end = test_size / 3; in TEST_P()
[all …]
/dports/devel/gdb/gdb-11.1/gdb/testsuite/gdb.fortran/
H A Dsize.f9035 call test_size (size (array_1d))
36 call test_size (size (array_1d, 1))
38 call test_size (size (array_1d (1:10:s1)))
64 call test_size (size (allocatable_array_1d))
89 call test_size (size (array_1d_p))
90 call test_size (size (array_1d_p, 1))
93 call test_size (size (array_2d_p))
94 call test_size (size (array_2d_p, 1))
95 call test_size (size (array_2d_p, 2))
112 subroutine test_size (answer) subroutine
[all …]
/dports/security/nettle/nettle-3.7.3/testsuite/
H A Dbignum-test.c53 test_size(0, 1); in test_main()
54 test_size(1, 1); in test_main()
55 test_size(0x7f, 1); in test_main()
56 test_size(0x80, 2); in test_main()
57 test_size(0x81, 2); in test_main()
58 test_size(0xff, 2); in test_main()
59 test_size(0x100, 2); in test_main()
60 test_size(0x101, 2); in test_main()
61 test_size(0x1111, 2); in test_main()
62 test_size(0x7fff, 2); in test_main()
[all …]
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/nettle-src-3.5.1-2/nettle/testsuite/
H A Dbignum-test.c53 test_size(0, 1); in test_main()
54 test_size(1, 1); in test_main()
55 test_size(0x7f, 1); in test_main()
56 test_size(0x80, 2); in test_main()
57 test_size(0x81, 2); in test_main()
58 test_size(0xff, 2); in test_main()
59 test_size(0x100, 2); in test_main()
60 test_size(0x101, 2); in test_main()
61 test_size(0x1111, 2); in test_main()
62 test_size(0x7fff, 2); in test_main()
[all …]
/dports/x11-toolkits/gtk30/gtk+-3.24.31/testsuite/gtk/
H A Dscrolledwindow.c14 test_size (gboolean overlay, in test_size() function
122 test_size (TRUE, GTK_POLICY_AUTOMATIC, GTK_ORIENTATION_VERTICAL, MINIMUM_CONTENT); in overlay_automatic_height_min()
134 test_size (TRUE, GTK_POLICY_AUTOMATIC, GTK_ORIENTATION_VERTICAL, MAXIMUM_CONTENT); in overlay_automatic_height_max()
190 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MINIMUM_CONTENT); in overlay_always_width_min()
196 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_VERTICAL, MINIMUM_CONTENT); in overlay_always_height_min()
202 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MAXIMUM_CONTENT); in overlay_always_width_max()
208 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_VERTICAL, MAXIMUM_CONTENT); in overlay_always_height_max()
227 test_size (FALSE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MINIMUM_CONTENT); in nonoverlay_always_width_min()
233 test_size (FALSE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_VERTICAL, MINIMUM_CONTENT); in nonoverlay_always_height_min()
239 test_size (FALSE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MAXIMUM_CONTENT); in nonoverlay_always_width_max()
[all …]
/dports/www/mod_php81/php-8.1.1/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/lang/php81/php-8.1.1/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/devel/php81-ffi/php-8.1.1/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/misc/thrill/thrill-12c5b59bca66df93b66628b3829027bd0f110dd9/tests/api/
H A Dzip_node_test.cpp42 ctx, test_size, in TEST()
75 ctx, test_size, in TEST()
111 ctx, test_size, in TEST()
124 [](size_t i) { return i >= 2 * test_size - test_size / 10; }); in TEST()
144 ASSERT_EQ(static_cast<long>(2 * test_size - test_size / 10 + i), res[i].b); in TEST()
163 ctx, test_size, in TEST()
201 ctx, test_size, in TEST()
236 ctx, test_size, in TEST()
309 ctx, test_size, in TEST()
319 ctx, test_size, in TEST()
[all …]
H A Doperations_test.cpp218 ctx, test_size, in TEST()
249 ASSERT_EQ(i < test_size ? i : i - test_size, out_vec[i]); in TEST()
275 i < 3 * test_size ? i - test_size : in TEST()
276 i < 6 * test_size ? i - 3 * test_size : in TEST()
303 ASSERT_EQ(i < 2 * test_size ? i / 2 : i - test_size, in TEST()
370 ASSERT_EQ(i < 2 * test_size ? i / 2 : i - test_size, in TEST()
612 ctx, test_size, in TEST()
665 ctx, test_size, in TEST()
737 ctx, test_size, in TEST()
745 << test_size - (test_size % window_size); in TEST()
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/lib/kokkos/containers/unit_tests/
H A DTestErrorReporter.hpp106 EXPECT_EQ(test_size / 2, num_attempts); in check_expectations()
156 : driver_base(reporter_capacity, test_size) { in ErrorReporterDriver()
157 execute(reporter_capacity, test_size); in ErrorReporterDriver()
160 if (reporter_capacity < test_size) { in ErrorReporterDriver()
162 driver_base::m_errorReporter.resize(test_size); in ErrorReporterDriver()
163 execute(test_size, test_size); in ErrorReporterDriver()
167 void execute(int reporter_capacity, int test_size) { in execute()
194 : driver_base(reporter_capacity, test_size) { in ErrorReporterDriverUseLambda()
195 execute(reporter_capacity, test_size); in ErrorReporterDriverUseLambda()
198 void execute(int reporter_capacity, int test_size) { in execute()
[all …]
/dports/devel/kokkos/kokkos-3.4.01/containers/unit_tests/
H A DTestErrorReporter.hpp106 EXPECT_EQ(test_size / 2, num_attempts); in check_expectations()
156 : driver_base(reporter_capacity, test_size) { in ErrorReporterDriver()
157 execute(reporter_capacity, test_size); in ErrorReporterDriver()
160 if (reporter_capacity < test_size) { in ErrorReporterDriver()
162 driver_base::m_errorReporter.resize(test_size); in ErrorReporterDriver()
163 execute(test_size, test_size); in ErrorReporterDriver()
167 void execute(int reporter_capacity, int test_size) { in execute()
194 : driver_base(reporter_capacity, test_size) { in ErrorReporterDriverUseLambda()
195 execute(reporter_capacity, test_size); in ErrorReporterDriverUseLambda()
198 void execute(int reporter_capacity, int test_size) { in execute()
[all …]
/dports/science/sparta/sparta-20Oct2021/lib/kokkos/containers/unit_tests/
H A DTestErrorReporter.hpp106 EXPECT_EQ(test_size / 2, num_attempts); in check_expectations()
156 : driver_base(reporter_capacity, test_size) { in ErrorReporterDriver()
157 execute(reporter_capacity, test_size); in ErrorReporterDriver()
160 if (reporter_capacity < test_size) { in ErrorReporterDriver()
162 driver_base::m_errorReporter.resize(test_size); in ErrorReporterDriver()
163 execute(test_size, test_size); in ErrorReporterDriver()
167 void execute(int reporter_capacity, int test_size) { in execute()
194 : driver_base(reporter_capacity, test_size) { in ErrorReporterDriverUseLambda()
195 execute(reporter_capacity, test_size); in ErrorReporterDriverUseLambda()
198 void execute(int reporter_capacity, int test_size) { in execute()
[all …]
/dports/x11-toolkits/gtk40/gtk-4.4.1/testsuite/gtk/
H A Dscrolledwindow.c14 test_size (gboolean overlay, in test_size() function
130 test_size (TRUE, GTK_POLICY_AUTOMATIC, GTK_ORIENTATION_VERTICAL, MINIMUM_CONTENT); in overlay_automatic_height_min()
142 test_size (TRUE, GTK_POLICY_AUTOMATIC, GTK_ORIENTATION_VERTICAL, MAXIMUM_CONTENT); in overlay_automatic_height_max()
198 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MINIMUM_CONTENT); in overlay_always_width_min()
204 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_VERTICAL, MINIMUM_CONTENT); in overlay_always_height_min()
210 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MAXIMUM_CONTENT); in overlay_always_width_max()
216 test_size (TRUE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_VERTICAL, MAXIMUM_CONTENT); in overlay_always_height_max()
235 test_size (FALSE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MINIMUM_CONTENT); in nonoverlay_always_width_min()
241 test_size (FALSE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_VERTICAL, MINIMUM_CONTENT); in nonoverlay_always_height_min()
247 test_size (FALSE, GTK_POLICY_ALWAYS, GTK_ORIENTATION_HORIZONTAL, MAXIMUM_CONTENT); in nonoverlay_always_width_max()
[all …]
/dports/lang/php80/php-8.0.15/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/lang/php74/php-7.4.27/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/devel/php80-ffi/php-8.0.15/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/devel/php74-ffi/php-7.4.27/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/www/mod_php80/php-8.0.15/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/www/mod_php74/php-7.4.27/ext/ffi/tests/
H A D022.phpt9 function test_size($size, $type) {
21 test_size(8, "struct {uint32_t a; uint32_t b;}");
22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
23 test_size(8, "struct {char a; uint32_t b;}");
24 test_size(8, "struct {uint32_t a; char b;}");
25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}");
26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}");
28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
30 test_size(16, "struct {char a; uint32_t b;}[2]");
[all …]
/dports/devel/wasm3/wasm3-0.5.0/_deps/uvwasi-src/test/
H A Dtest-einval-input-validation.c12 uvwasi_size_t test_size = 5; in main() local
33 CHECK(uvwasi_args_sizes_get(NULL, &test_size, &test_size)); in main()
34 CHECK(uvwasi_args_sizes_get(&uvw, NULL, &test_size)); in main()
35 CHECK(uvwasi_args_sizes_get(&uvw, &test_size, NULL)); in main()
47 CHECK(uvwasi_environ_sizes_get(NULL, &test_size, &test_size)); in main()
48 CHECK(uvwasi_environ_sizes_get(&uvw, NULL, &test_size)); in main()
49 CHECK(uvwasi_environ_sizes_get(&uvw, &test_size, NULL)); in main()
78 CHECK(uvwasi_fd_pread(&uvw, 3, NULL, 2, 10, &test_size)); in main()
88 CHECK(uvwasi_fd_pwrite(&uvw, 3, NULL, 2, 10, &test_size)); in main()
92 CHECK(uvwasi_fd_read(&uvw, 3, NULL, 2, &test_size)); in main()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dsize.pass.cpp17 void test_size() { in test_size() function
23 test_size<0>(); in main()
24 test_size<1>(); in main()
25 test_size<31>(); in main()
26 test_size<32>(); in main()
27 test_size<33>(); in main()
28 test_size<63>(); in main()
29 test_size<64>(); in main()
30 test_size<65>(); in main()
31 test_size<1000>(); in main()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dsize.pass.cpp17 void test_size() in test_size() function
25 test_size<0>(); in main()
26 test_size<1>(); in main()
27 test_size<31>(); in main()
28 test_size<32>(); in main()
29 test_size<33>(); in main()
30 test_size<63>(); in main()
31 test_size<64>(); in main()
32 test_size<65>(); in main()
33 test_size<1000>(); in main()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dsize.pass.cpp17 void test_size() { in test_size() function
23 test_size<0>(); in main()
24 test_size<1>(); in main()
25 test_size<31>(); in main()
26 test_size<32>(); in main()
27 test_size<33>(); in main()
28 test_size<63>(); in main()
29 test_size<64>(); in main()
30 test_size<65>(); in main()
31 test_size<1000>(); in main()

12345678910>>...73