Home
last modified time | relevance | path

Searched refs:test1 (Results 1 – 25 of 2493) sorted by relevance

12345678910>>...100

/llvm-project/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/
H A Ddefault.pass.cpp24 test1() in test1()
42 test1<T, 0, 0, 0>(); in test()
43 test1<T, A, 0, 0>(); in test()
44 test1<T, 0, 1, 0>(); in test()
45 test1<T, A, 1, 0>(); in test()
48 test1<T, 0, 0, 256>(); in test()
49 test1<T, 5, 0, 256>(); in test()
50 test1<T, 0, 1, 256>(); in test()
51 test1<T, 5, 1, 256>(); in test()
54 test1< in test()
23 test1() test1() function
[all...]
H A Dcopy.pass.cpp24 test1() in test1()
44 test1<T, 0, 0, 0>(); in test()
45 test1<T, A, 0, 0>(); in test()
46 test1<T, 0, 1, 0>(); in test()
47 test1<T, A, 1, 0>(); in test()
50 test1<T, 0, 0, 256>(); in test()
51 test1<T, 5, 0, 256>(); in test()
52 test1<T, 0, 1, 256>(); in test()
53 test1<T, 5, 1, 256>(); in test()
56 test1< in test()
23 test1() test1() function
[all...]
H A Dassign.pass.cpp24 test1() in test1() function
44 test1<T, 0, 0, 0>(); in test()
45 test1<T, A, 0, 0>(); in test()
46 test1<T, 0, 1, 0>(); in test()
47 test1<T, A, 1, 0>(); in test()
50 test1<T, 0, 0, 256>(); in test()
51 test1<T, 5, 0, 256>(); in test()
52 test1<T, 0, 1, 256>(); in test()
53 test1<T, 5, 1, 256>(); in test()
56 test1<T, 0, 0, M>(); in test()
[all …]
H A Dvalues.pass.cpp35 test1() in test1()
75 test1<T, 0, 0, 0>(); in test()
76 test1<T, A, 0, 0>(); in test()
77 test1<T, 0, 1, 0>(); in test()
78 test1<T, A, 1, 0>(); in test()
81 test1<T, 0, 0, 256>(); in test()
82 test1<T, 5, 0, 256>(); in test()
83 test1<T, 0, 1, 256>(); in test()
84 test1<T, 5, 1, 256>(); in test()
87 test1< in test()
34 test1() test1() function
[all...]
/llvm-project/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/
H A Dpointer_string.pass.cpp33 TEST_CONSTEXPR_CXX20 void test1(const typename S::value_type* lhs, S&& rhs, const S& x) { in test1() function
58 test1("", S(""), S("")); in test_string()
59 test1("", S("12345"), S("12345")); in test_string()
60 test1("", S("1234567890"), S("1234567890")); in test_string()
61 test1("", S("12345678901234567890"), S("12345678901234567890")); in test_string()
62 test1("abcde", S(""), S("abcde")); in test_string()
63 test1("abcde", S("12345"), S("abcde12345")); in test_string()
64 test1("abcde", S("1234567890"), S("abcde1234567890")); in test_string()
65 test1("abcde", S("12345678901234567890"), S("abcde12345678901234567890")); in test_string()
66 test1("abcdefghij", S(""), S("abcdefghij")); in test_string()
[all …]
H A Dstring_pointer.pass.cpp35 TEST_CONSTEXPR_CXX20 void test1(S&& lhs, const typename S::value_type* rhs, const S& x) { in test1() function
59 test1(S(""), "", S("")); in test_string()
60 test1(S(""), "12345", S("12345")); in test_string()
61 test1(S(""), "1234567890", S("1234567890")); in test_string()
62 test1(S(""), "12345678901234567890", S("12345678901234567890")); in test_string()
63 test1(S("abcde"), "", S("abcde")); in test_string()
64 test1(S("abcde"), "12345", S("abcde12345")); in test_string()
65 test1(S("abcde"), "1234567890", S("abcde1234567890")); in test_string()
66 test1(S("abcde"), "12345678901234567890", S("abcde12345678901234567890")); in test_string()
67 test1(S("abcdefghij"), "", S("abcdefghij")); in test_string()
[all …]
H A Dstring_string.pass.cpp47 TEST_CONSTEXPR_CXX20 void test1(S&& lhs, const S& rhs, const S& x) { in test1() function
81 test1(S(""), S(""), S("")); in test_string()
82 test1(S(""), S("12345"), S("12345")); in test_string()
83 test1(S(""), S("1234567890"), S("1234567890")); in test_string()
84 test1(S(""), S("12345678901234567890"), S("12345678901234567890")); in test_string()
85 test1(S("abcde"), S(""), S("abcde")); in test_string()
86 test1(S("abcde"), S("12345"), S("abcde12345")); in test_string()
87 test1(S("abcde"), S("1234567890"), S("abcde1234567890")); in test_string()
88 test1(S("abcde"), S("12345678901234567890"), S("abcde12345678901234567890")); in test_string()
89 test1(S("abcdefghij"), S(""), S("abcdefghij")); in test_string()
[all …]
/llvm-project/libcxx/test/std/strings/string.view/string.view.ops/
H A Dsubstr.pass.cpp28 void test1(std::basic_string_view<CharT> sv, std::size_t n, size_t pos) { in test1()
55 test1(sv1, 0, 0); in test()
56 test1(sv1, 1, 0); in test()
57 test1(sv1, 20, 0); in test()
58 test1(sv1, sv1.size(), 0); in test()
60 test1(sv1, 0, 3); in test()
61 test1(sv1, 2, 3); in test()
62 test1(sv1, 100, 3); in test()
64 test1(sv1, 0, string_view_t::npos); in test()
65 test1(sv in test()
27 void test1(std::basic_string_view<CharT> sv, std::size_t n, size_t pos) { test1() function
[all...]
H A Dcopy.pass.cpp30 void test1(std::basic_string_view<CharT> sv, std::size_t n, size_t pos) { in test1()
64 test1(sv1, 0, 0); in test()
65 test1(sv1, 1, 0); in test()
66 test1(sv1, 20, 0); in test()
67 test1(sv1, sv1.size(), 0); in test()
68 test1(sv1, 20, string_view_t::npos); in test()
70 test1(sv1, 0, 3); in test()
71 test1(sv1, 2, 3); in test()
72 test1(sv1, 100, 3); in test()
73 test1(sv in test()
29 void test1(std::basic_string_view<CharT> sv, std::size_t n, size_t pos) { test1() function
[all...]
/llvm-project/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
H A Dnotify_one.pass.cpp54 std::atomic_int test1(0); variable
62 assert(test1 == 0); in f1()
64 while (test1 == 0) in f1()
67 assert(test1 == 1); in f1()
68 test1 = 2; in f1()
94 test1 = 1; in main()
103 if (test1 == 2) { in main()
106 test1 = 0; in main()
108 assert(test1 == 1); in main()
120 if (test1 == 2) { in main()
[all …]
H A Dnotify_all.pass.cpp30 int test1 = 0;
38 assert(test1 == 0); in f1()
40 while (test1 == 0) in f1()
42 assert(test1 == 1); in f2()
43 test1 = 2; in f2()
66 test1 = 1; in main()
76 assert(test1 == 2);
29 int test1 = 0; global() variable
/llvm-project/libcxx/test/std/algorithms/alg.modifying.operations/alg.swap/
H A Dswap_ranges.pass.cpp43 test1() in test1() function
147 test1<forward_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >(); in main()
148test1<forward_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*> >(); in main()
149test1<forward_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*> >(); in main()
150 test1<forward_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>(); in main()
152test1<bidirectional_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >(); in main()
153test1<bidirectional_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*>… in main()
154test1<bidirectional_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*>… in main()
155 test1<bidirectional_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>(); in main()
157test1<random_access_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >(); in main()
[all …]
/llvm-project/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
H A Dnotify_one.pass.cpp34 int test1 = 0; variable
40 assert(test1 == 0); in f1()
41 while (test1 == 0) in f1()
43 assert(test1 == 1); in f1()
44 test1 = 2; in f1()
64 test1 = 1; in main()
72 if (test1 == 2) in main()
75 test1 = 0; in main()
89 if (test1 == 2) in main()
92 test1 = 0; in main()
/llvm-project/libcxx/test/std/algorithms/alg.nonmodifying/alg.none_of/
H A Dnone_of.pass.cpp21 struct test1 struct
33 return !std::none_of(std::begin(ia), std::end(ia), test1()) in test_constexpr() argument
34 && std::none_of(std::begin(ib), std::end(ib), test1()) in test_constexpr()
45 cpp17_input_iterator<const int*>(ia + sa), test1()) == false); in main()
47 cpp17_input_iterator<const int*>(ia), test1()) == true); in main()
53 cpp17_input_iterator<const int*>(ia + sa), test1()) == false); in main()
55 cpp17_input_iterator<const int*>(ia), test1()) == true); in main()
61 cpp17_input_iterator<const int*>(ia + sa), test1()) == true); in main()
63 cpp17_input_iterator<const int*>(ia), test1()) == true); in main()
/llvm-project/libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/
H A Dany_of.pass.cpp21 struct test1 struct
33 return std::any_of(std::begin(ia), std::end(ia), test1()) in test_constexpr() argument
34 && !std::any_of(std::begin(ib), std::end(ib), test1()) in test_constexpr()
45 cpp17_input_iterator<const int*>(ia + sa), test1()) == true); in main()
47 cpp17_input_iterator<const int*>(ia), test1()) == false); in main()
53 cpp17_input_iterator<const int*>(ia + sa), test1()) == true); in main()
55 cpp17_input_iterator<const int*>(ia), test1()) == false); in main()
61 cpp17_input_iterator<const int*>(ia + sa), test1()) == false); in main()
63 cpp17_input_iterator<const int*>(ia), test1()) == false); in main()
/llvm-project/llvm/test/Analysis/DDG/
H A Droot-node.ll3 ; CHECK-LABEL: 'DDG' for loop 'test1.for.body':
11 ; CHECK: %i1.02 = phi i64 [ 0, %for.body.lr.ph ], [ %inc, %test1.for.body ]
14 ; CHECK: %i2.03 = phi i64 [ 0, %for.body.lr.ph ], [ %inc2, %test1.for.body ]
17 ;; void test1(unsigned long n, ptr restrict a, ptr restrict b) {
24 define void @test1(i64 %n, ptr noalias %a, ptr noalias %b) {
30 br label %test1.for.body
32 test1.for.body: ; preds = %for.body.lr.ph, %test1.for.body
33 %i2.03 = phi i64 [ 0, %for.body.lr.ph ], [ %inc2, %test1.for.body ]
34 %i1.02 = phi i64 [ 0, %for.body.lr.ph ], [ %inc, %test1.for.body ]
42 br i1 %cmp, label %test1.for.body, label %for.cond.for.end_crit_edge
[all …]
/llvm-project/lld/test/wasm/Inputs/
H A Dsignature-mismatch-debug-info-b.s2 .functype test1 () -> ()
11 .section .text.test1,"",@
12 .globl test1 symbol
13 .type test1,@function
14 test1: label
15 .functype test1 () -> ()
23 .int32 test1
/llvm-project/mlir/test/Dialect/Builtin/Bytecode/
H A Dtypes.mlir20 // CHECK: bytecode.test1 = f16,
26 bytecode.test1 = f16,
76 // CHECK: bytecode.test1 = memref<2xi8, 1>
78 bytecode.test1 = memref<2xi8, 1>
98 // CHECK: bytecode.test1 = tensor<16xf64, "sparse">
100 bytecode.test1 = tensor<16xf64, "sparse">
110 // CHECK: bytecode.test1 = tuple<i32, i1, f32>
112 bytecode.test1 = tuple<i32, i1, f32>
122 // CHECK: bytecode.test1 = memref<*xi8, 1>
124 bytecode.test1 = memref<*xi8, 1>
[all …]
/llvm-project/libcxx/test/std/utilities/meta/meta.unary.prop.query/
H A Dvoid_t.pass.cpp20 void test1() in test1() function
57 test1<void>(); in main()
58 test1<int>(); in main()
59 test1<double>(); in main()
60 test1<int&>(); in main()
61 test1<Class>(); in main()
62 test1<Class[]>(); in main()
63 test1<Class[5]>(); in main()
/llvm-project/llvm/test/Transforms/IndirectBrExpand/
H A Dbasic.ll8 @test1.targets = constant [4 x ptr] [ptr blockaddress(@test1, %bb0),
9 ptr blockaddress(@test1, %bb1),
10 ptr blockaddress(@test1, %bb2),
11 ptr blockaddress(@test1, %bb3)]
12 ; CHECK-LABEL: @test1.targets = constant [4 x ptr]
16 ; CHECK: ptr blockaddress(@test1, %bb3)]
18 define void @test1(ptr readonly %p, ptr %sink) #0 {
19 ; CHECK-LABEL: define void @test1(
22 %target.i0 = getelementptr [4 x ptr], ptr @test1.targets, i64 0, i64 %i0
48 %target.i.next = getelementptr [4 x ptr], ptr @test1.targets, i64 0, i64 %i.next
/llvm-project/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/
H A Dall_of.pass.cpp21 struct test1 struct
33 return std::all_of(std::begin(ia), std::end(ia), test1()) in test_constexpr() argument
34 && !std::all_of(std::begin(ib), std::end(ib), test1()) in test_constexpr()
45 cpp17_input_iterator<const int*>(ia + sa), test1()) == true); in main()
47 cpp17_input_iterator<const int*>(ia), test1()) == true); in main()
53 cpp17_input_iterator<const int*>(ia + sa), test1()) == false); in main()
55 cpp17_input_iterator<const int*>(ia), test1()) == true); in main()
/llvm-project/llvm/utils/rsp_bisect_test/
H A Dtest.py17 test1 = os.path.join(cur_dir, "test_script.py") variable
50 run_bisect(False, test1)
56 run_bisect(False, test1)
62 output = run_bisect(True, test1)
69 output = run_bisect(True, test1)
76 output = run_bisect(True, test1)
82 output = run_bisect(True, test1)
88 output = run_bisect(True, test1)
/llvm-project/polly/test/ScopInfo/
H A Dinfeasible-rtc.ll9 ; DETECT: Valid Region for Scop: test1.header => test1.exit
10 ; SCOPS-NOT: Region: %test1.header---%test1.exit
17 br label %test1.header
19 test1.header:
20 %i = phi i56 [ 0, %preheader ], [ %i.1, %test1.header ]
29 br i1 %exitcond, label %test1.exit, label %test1.header
31 test1.exit:
/llvm-project/llvm/test/CodeGen/WebAssembly/
H A Dindirectbr.ll9 @test1.targets = constant [4 x ptr] [ptr blockaddress(@test1, %bb0),
10 ptr blockaddress(@test1, %bb1),
11 ptr blockaddress(@test1, %bb2),
12 ptr blockaddress(@test1, %bb3)]
15 ; CHECK-LABEL: test1:
31 ; CHECK: test1.targets:
37 define void @test1(ptr readonly %p, ptr %sink) #0 {
41 %target.i0 = getelementptr [4 x ptr], ptr @test1.targets, i32 0, i32 %i0
65 %target.i.next = getelementptr [4 x ptr], ptr @test1.targets, i32 0, i32 %i.next
/llvm-project/llvm/test/Transforms/IROutliner/
H A Dincluded-phi-nodes-begin.ll13 br label %test1
16 test1:
17 %1 = phi i32 [ %e, %test1 ], [ %y, %entry ]
18 %2 = phi i32 [ %e, %test1 ], [ %y, %entry ]
21 br i1 true, label %test, label %test1
34 br label %test1
37 test1:
38 %1 = phi i32 [ %e, %test1 ], [ %y, %entry ]
39 %2 = phi i32 [ %e, %test1 ], [ %y, %entry ]
42 br i1 true, label %test, label %test1
[all …]

12345678910>>...100