Searched refs:add1 (Results 1 – 4 of 4) sorted by relevance
/art/compiler/optimizing/ |
D | scheduler_test.cc | 102 HInstruction* add1 = new (&allocator) HAdd(Primitive::kPrimInt, c1, c2); in TEST_F() local 103 HInstruction* add2 = new (&allocator) HAdd(Primitive::kPrimInt, add1, c2); in TEST_F() 104 HInstruction* mul = new (&allocator) HMul(Primitive::kPrimInt, add1, add2); in TEST_F() 106 HInstruction* div = new (&allocator) HDiv(Primitive::kPrimInt, add1, div_check, 0); in TEST_F() 107 HInstruction* array_get1 = new (&allocator) HArrayGet(array, add1, Primitive::kPrimInt, 0); in TEST_F() 108 HInstruction* array_set1 = new (&allocator) HArraySet(array, add1, add2, Primitive::kPrimInt, 0); in TEST_F() 109 HInstruction* array_get2 = new (&allocator) HArrayGet(array, add1, Primitive::kPrimInt, 0); in TEST_F() 110 HInstruction* array_set2 = new (&allocator) HArraySet(array, add1, add2, Primitive::kPrimInt, 0); in TEST_F() 116 HInstruction* block_instructions[] = {add1, in TEST_F() 150 ASSERT_FALSE(scheduling_graph.HasImmediateDataDependency(add1, c1)); in TEST_F() [all …]
|
D | induction_var_analysis_test.cc | 414 HInstruction* add1 = InsertInstruction( in TEST_F() local 419 new (&allocator_) HAdd(Primitive::kPrimInt, add1, add2), 0); in TEST_F() 423 EXPECT_STREQ("(((1) + (1)) * i + (0)):PrimInt", GetInductionInfo(add1, 0).c_str()); in TEST_F() 514 HInstruction* add1 = InsertInstruction( in TEST_F() local 517 new (&allocator_) HAdd(Primitive::kPrimInt, add1, k_header), 0); in TEST_F() 527 GetInductionInfo(add1, 0).c_str()); in TEST_F() 569 HInstruction* add1 = InsertInstruction( in TEST_F() local 587 EXPECT_STREQ("geo((1) * 2 ^ i + (1)):PrimInt", GetInductionInfo(add1, 0).c_str()); in TEST_F()
|
/art/runtime/base/ |
D | transform_iterator_test.cc | 44 auto add1 = [](const ValueHolder& h) { return h.value + 1; }; // NOLINT [readability/braces] in TEST() local 48 using vector_titer = decltype(MakeTransformIterator(input.begin(), add1)); in TEST() 55 using vector_ctiter = decltype(MakeTransformIterator(input.cbegin(), add1)); in TEST() 62 using vector_rtiter = decltype(MakeTransformIterator(input.rbegin(), add1)); in TEST() 69 using vector_crtiter = decltype(MakeTransformIterator(input.crbegin(), add1)); in TEST() 76 std::copy(MakeTransformIterator(input.begin(), add1), in TEST() 77 MakeTransformIterator(input.end(), add1), in TEST() 82 std::copy(MakeTransformIterator(input.cbegin(), add1), in TEST() 83 MakeTransformIterator(input.cend(), add1), in TEST() 88 std::copy(MakeTransformIterator(input.rbegin(), add1), in TEST() [all …]
|
D | transform_array_ref_test.cc | 41 auto add1 = [](const ValueHolder& h) { return h.value + 1; }; // NOLINT [readability/braces] in TEST() local 45 auto taref = MakeTransformArrayRef(input, add1); in TEST()
|