Searched refs:equal (Results 1 - 21 of 21) sorted by relevance

/art/compiler/utils/
H A Ddedupe_set_test.cc68 ASSERT_TRUE(std::equal(test1.begin(), test1.end(), array1->begin()));
77 ASSERT_TRUE(std::equal(test2.begin(), test2.end(), array2->begin()));
87 ASSERT_TRUE(std::equal(test3.begin(), test3.end(), array3->begin()));
H A Ddedupe_set-inl.h172 std::equal(lhs.Key()->begin(), lhs.Key()->end(), rhs.Key()->begin());
H A Dassembler_test_base.h109 // Driver() assembles and compares the results. If the results are not equal and we have a
133 "is equal: this implies sub-optimal encoding! Our code size=" << data.size() <<
367 bool result = std::equal(std::istreambuf_iterator<char>(f1_in),
H A Dintrusive_forward_list_test.cc47 ASSERT_TRUE(std::equal((expected).begin(), (expected).end(), (value).begin())); \
/art/runtime/interpreter/mterp/arm/
H A Dop_cmpg_double.S32 moveq r0, #0 @ (equal) r1<- 0
H A Dop_cmpg_float.S32 moveq r0, #0 @ (equal) r1<- 0
H A Dop_cmpl_double.S32 moveq r0, #0 @ (equal) r1<- 0
H A Dop_cmpl_float.S32 moveq r0, #0 @ (equal) r1<- 0
/art/cmdline/
H A Dtoken_range.h171 // Does this token range equal the other range?
173 // each corresponding token being equal.
183 return std::equal(begin(), end(), other.begin());
205 return std::equal(smaller.begin(), smaller.end(), greater.begin());
386 return std::equal(smaller.begin(), smaller.end(), larger.begin());
/art/compiler/optimizing/
H A Dinstruction_simplifier.cc69 void VisitEqual(HEqual* equal) OVERRIDE;
70 void VisitNotEqual(HNotEqual* equal) OVERRIDE;
72 void VisitInstanceFieldSet(HInstanceFieldSet* equal) OVERRIDE;
73 void VisitStaticFieldSet(HStaticFieldSet* equal) OVERRIDE;
74 void VisitArraySet(HArraySet* equal) OVERRIDE;
633 void InstructionSimplifierVisitor::VisitEqual(HEqual* equal) { argument
634 HInstruction* input_const = equal->GetConstantRight();
636 HInstruction* input_value = equal->GetLeastConstantLeft();
637 if (CmpHasBoolType(input_value, equal) && input_const->IsIntConstant()) {
638 HBasicBlock* block = equal
1983 HEqual* equal = new (GetGraph()->GetArena()) HEqual(length, zero, dex_pc); local
[all...]
H A Dgraph_test.cc31 HInstruction* equal = new (allocator) HEqual(instr, instr); local
32 if_block->AddInstruction(equal);
33 instr = new (allocator) HIf(equal);
H A Dcodegen_test.cc431 HEqual* equal = new (&allocator) HEqual(constant0, constant0); local
432 first_block->AddInstruction(equal);
433 first_block->AddInstruction(new (&allocator) HIf(equal));
452 ASSERT_FALSE(equal->IsEmittedAtUseSite());
455 ASSERT_TRUE(equal->IsEmittedAtUseSite());
H A Dstack_map_stream.cc508 if (!std::equal(a_begin, a_begin + number_of_live_dex_registers, b_begin)) {
/art/compiler/
H A Dcompiled_method.cc43 return std::equal(quick_code_->begin(), quick_code_->end(), rhs.quick_code_->begin());
/art/runtime/base/
H A Darray_ref.h189 return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin());
H A Dtransform_array_ref.h165 return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin());
H A Ddchecked_vector.h203 return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin());
/art/runtime/
H A Druntime_callbacks_test.cc232 if (!std::equal(cb_.data.begin(), cb_.data.end(), list.begin())) {
H A Dclass_linker.cc1814 bool equal = image_count == loader_dex_file_names.size(); local
1815 if (equal) {
1818 for (size_t i = 0; equal && i < image_count; ++i, ++it1, ++it2) {
1819 equal = equal && (*it1)->Equals(*it2);
1822 if (!equal) {
7611 // by name and for equal names by type id index.
/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc415 bool equal = true; local
418 equal = false;
422 EXPECT_EQ(equal, true);
/art/runtime/interpreter/mterp/out/
H A Dmterp_arm.S1265 moveq r0, #0 @ (equal) r1<- 0
1304 moveq r0, #0 @ (equal) r1<- 0
1343 moveq r0, #0 @ (equal) r1<- 0
1382 moveq r0, #0 @ (equal) r1<- 0

Completed in 465 milliseconds