| /llvm-project-15.0.7/openmp/runtime/test/flush/ |
| H A D | omp_flush.c | 9 int result2; in test_omp_flush() local 13 result2 = 0; in test_omp_flush() 21 result2 = 3; in test_omp_flush() 22 #pragma omp flush (result2) in test_omp_flush() 23 dummy = result2; in test_omp_flush() 27 #pragma omp flush (result2) in test_omp_flush() 28 result1 = result2; in test_omp_flush() 31 return ((result1 == result2) && (result2 == dummy) && (result2 == 3)); in test_omp_flush()
|
| /llvm-project-15.0.7/libc/test/src/__support/ |
| H A D | uint128_test.cpp | 35 LL_UInt128 result2({0x10, 0x1}); in TEST() local 36 EXPECT_EQ(val3 + val4, result2); in TEST() 50 LL_UInt128 result2({0xffffffffffffffff, 0xffffffffffffffff}); in TEST() local 51 EXPECT_EQ((val3 * val4), result2); in TEST() 86 LL_UInt128 result2({0x02468ace00000000, 0x9abcdef013579bdf}); in TEST() local 87 EXPECT_EQ((val2 << 32), result2); in TEST() 90 EXPECT_EQ(val22, result2); in TEST() 112 LL_UInt128 result2({0x9abcdef013579bdf, 0x0000000012345678}); in TEST() local 113 EXPECT_EQ((val2 >> 32), result2); in TEST() 116 EXPECT_EQ(val22, result2); in TEST()
|
| /llvm-project-15.0.7/openmp/runtime/test/barrier/ |
| H A D | omp_barrier.c | 14 int result2; in test_omp_barrier() local 16 result2 = 0; in test_omp_barrier() 24 result2 = 3; in test_omp_barrier() 28 result1 = result2; in test_omp_barrier()
|
| /llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.filter/ |
| H A D | pred.pass.cpp | 40 std::same_as<Pred const&> decltype(auto) result2 = view.pred(); in test() 41 assert(&result == &result2); in test() 52 std::same_as<Pred const&> decltype(auto) result2 = view.pred(); in test() 53 assert(&result == &result2); in test()
|
| /llvm-project-15.0.7/libc/fuzzing/math/ |
| H A D | SingleInputSingleOutputDiff.h | 31 T result2 = func2(x); in SingleInputSingleOutputDiff() local 33 if (!ValuesEqual(result1, result2)) in SingleInputSingleOutputDiff() 52 T1 result2 = func2(x, &sideEffect2); in SingleInputSingleOutputWithSideEffectDiff() local 54 if (!ValuesEqual(result1, result2)) in SingleInputSingleOutputWithSideEffectDiff()
|
| H A D | TwoInputSingleOutputDiff.h | 34 T1 result2 = func2(x, y); in TwoInputSingleOutputDiff() local 36 if (!ValuesEqual(result1, result2)) in TwoInputSingleOutputDiff()
|
| /llvm-project-15.0.7/libclc/generic/lib/math/ |
| H A D | log1p.cl | 166 double result2 = r1 + r2; 167 result2 = x < log1p_thresh1 | x > log1p_thresh2 ? result1 : result2; 169 result2 = isinf(x) ? x : result2; 170 result2 = x < -1.0 ? as_double(QNANBITPATT_DP64) : result2; 171 result2 = x == -1.0 ? as_double(NINFBITPATT_DP64) : result2; 172 return result2;
|
| /llvm-project-15.0.7/openmp/runtime/test/tasking/ |
| H A D | omp_taskwait.c | 14 int result2 = 0; /* Stores number of wrong array elements at the end */ in test_omp_taskwait() local 62 result2++; in test_omp_taskwait() 64 return ((result1 == 0) && (result2 == 0)); in test_omp_taskwait()
|
| /llvm-project-15.0.7/mlir/test/mlir-cpu-runner/ |
| H A D | async-value.mlir | 27 %token1, %result2 = async.execute -> !async.value<f32> { 31 %3 = async.await %result2 : !async.value<f32> 42 %token2, %result2 = async.execute[%token0] -> !async.value<memref<f32>> { 48 %6 = async.await %result2 : !async.value<memref<f32>> 59 %token3 = async.execute(%result2 as %unwrapped : !async.value<memref<f32>>) {
|
| /llvm-project-15.0.7/mlir/test/mlir-pdll/Parser/ |
| H A D | rewrite.pdll | 31 // CHECK: `-UserRewriteDecl {{.*}} Name<Foo> ResultType<Tuple<result1: Value, result2: Attr>> 36 // CHECK: `-VariableDecl {{.*}} Name<result2> Type<Attr> 41 // CHECK: `-TupleExpr {{.*}} Type<Tuple<result1: Value, result2: Attr>> 46 Rewrite Foo() -> (result1: Value, result2: Attr) => (_: Value, attr<"10">);
|
| H A D | constraint.pdll | 30 // CHECK: `-UserConstraintDecl {{.*}} Name<Foo> ResultType<Tuple<result1: Value, result2: Attr>> 35 // CHECK: `-VariableDecl {{.*}} Name<result2> Type<Attr> 40 // CHECK: `-TupleExpr {{.*}} Type<Tuple<result1: Value, result2: Attr>> 45 Constraint Foo() -> (result1: Value, result2: Attr) => (_: Value, attr<"10">);
|
| H A D | expr-failure.pdll | 106 let tuple = (result1 = value: Value, result2 = value); 108 …nvalid member access `unknown_result` on expression of type `Tuple<result1: Value, result2: Value>` 117 let tuple = (result1 = value: Value, result2 = value); 119 // CHECK: invalid member access `2` on expression of type `Tuple<result1: Value, result2: Value>` 294 let foo = op<test.all_empty> -> (result1: Type, result2: Type);
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/archives/ |
| H A D | b.c | 9 int result2 = arg1 - __b_global; in bb() local 10 return result2; in bb()
|
| /llvm-project-15.0.7/libc/fuzzing/stdlib/ |
| H A D | StringParserOutputDiff.h | 29 T result2 = func2(x); in StringParserOutputDiff() local 31 if (!ValuesEqual(result1, result2)) in StringParserOutputDiff()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/map/ |
| H A D | compare.pass.cpp | 49 IterBool result2 = map.insert(std::make_pair(Key(0), 43)); in main() local 50 assert(!result2.second); in main()
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/ |
| H A D | switch-profmd.ll | 31 %result2 = call i32 @f(i32 -3) 32 ret i32 %result2
|
| /llvm-project-15.0.7/mlir/test/Conversion/MemRefToLLVM/ |
| H A D | convert-alloca-scope.mlir | 43 %result1, %result2 = memref.alloca_scope -> (f32, f32) { 49 %result = arith.addf %result1, %result2 : f32
|
| /llvm-project-15.0.7/llvm/test/Transforms/IndVarSimplify/ |
| H A D | loop_evaluate_5.ll | 17 %result2 = phi i32 [ %tmp1, %bb2 ], [ 0, %bb.nph ] ; <i32> [#uses=1] 20 %tmp1 = add i32 %tmp2, %result2 ; <i32> [#uses=2]
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | instantiate-message.mm | 17 R *result2 = [typename identity<T>::type method1:arg1]; 40 …R *result2 = [im method1:arg1]; // expected-error{{cannot initialize a variable of type 'InstanceM…
|
| /llvm-project-15.0.7/llvm/test/Transforms/WholeProgramDevirt/ |
| H A D | import-no-dominating-assume.ll | 32 %result2 = call i32 %fptr2_casted(i8* %obj, i32 1) 33 ret i32 %result2
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AVR/ |
| H A D | block-address-is-in-progmem-space.ll | 38 %result2 = load i8, i8 addrspace(1)* blockaddress(@load_from_local_label, %second) 39 ret i8 %result2
|
| /llvm-project-15.0.7/llvm/test/Transforms/Coroutines/ |
| H A D | coro-retcon-value.ll | 58 %result2 = call {i8*, i32} %cont1.cast(i8* %buffer, i8 zeroext 0) 59 %value2 = extractvalue {i8*, i32} %result2, 1 61 %cont2 = extractvalue {i8*, i32} %result2, 0
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | test_break.py | 99 result2 = unittest2.TestResult() 100 unittest2.registerResult(result2) 115 self.assertTrue(result2.shouldStop)
|
| /llvm-project-15.0.7/mlir/test/mlir-pdll-lsp-server/include/ |
| H A D | included.td | 9 let results = (outs I64:$result, I64:$result2);
|
| /llvm-project-15.0.7/mlir/test/Transforms/ |
| H A D | sccp-callgraph.mlir | 155 %result2 = call @callable(%2) : (i32) -> i32 156 return %result, %result2 : i32, i32 176 %result2 = call @callable(%arg0) : (i32) -> i32 177 return %result, %result2 : i32, i32
|