Home
last modified time | relevance | path

Searched refs:Compare (Results 1 – 21 of 21) sorted by relevance

/art/libartbase/base/
Dtracking_safe_map.h25 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
27 Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>> {
Dintrusive_forward_list.h326 template <typename Compare>
327 void merge(IntrusiveForwardList& other, Compare cmp) { in merge()
346 template <typename Compare>
347 void merge(IntrusiveForwardList&& other, Compare cmp) { in merge()
353 template <typename Compare>
354 void sort(Compare cmp) { in sort()
Dutils.h134 inline static int32_t Compare(T lhs, T rhs) { in Compare() function
Dvariant_map.h106 virtual bool Compare(const VariantMapKeyRaw* other) const { in Compare() function
407 return lhs->Compare(rhs); in operator()
Dbit_memory_region.h35 return Compare(lhs, rhs) < 0; in operator()
189 static int Compare(const BitMemoryRegion& lhs, const BitMemoryRegion& rhs) { in Compare() function
Dmem_map.cc53 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
55 std::multimap<Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>>;
Dbit_table.h95 BitMemoryRegion::Compare(table_data_, other.table_data_) == 0; in Equals()
/art/test/442-checker-constant-folding/smali/
DTestCmp.smali23 ## CHECK-DAG: <<Cmp:i\d+>> Compare [<<Const13>>,<<Const7>>]
33 ## CHECK-NOT: Compare
46 ## CHECK-DAG: <<Cmp:i\d+>> Compare [<<Const11>>,<<Const22>>] bias:gt
56 ## CHECK-NOT: Compare
69 ## CHECK-DAG: <<Cmp:i\d+>> Compare [<<Const33>>,<<Const44>>] bias:lt
79 ## CHECK-NOT: Compare
92 ## CHECK-DAG: <<Cmp:i\d+>> Compare [<<Const55>>,<<Const66>>] bias:gt
102 ## CHECK-NOT: Compare
115 ## CHECK-DAG: <<Cmp:i\d+>> Compare [<<Const77>>,<<Const88>>] bias:lt
125 ## CHECK-NOT: Compare
[all …]
/art/test/020-string/
Dexpected.txt3 Compare result is greater than zero
4 Compare unicode: -65302
/art/test/003-omnibus-opcodes/src/
DMain.java42 Compare.run(); in run()
DCompare.java20 public class Compare { class
/art/libartbase/base/unix_file/
Dfd_file.h127 int Compare(FdFile* other);
Dfd_file_test.cc227 TEST_F(FdFileTest, Compare) { in TEST_F() argument
237 return a.GetFile()->Compare(b.GetFile()); in TEST_F()
Dfd_file.cc617 int FdFile::Compare(FdFile* other) { in Compare() function in unix_file::FdFile
/art/compiler/optimizing/
Dscheduler_arm.h80 M(Compare , unused) \
Dnodes.h1454 M(Compare, BinaryOperation) \
3752 int32_t Compare(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } in Compare() function
3759 return std::isunordered(x, y) ? (IsGtBias() ? 1 : -1) : Compare(x, y); in CompareFP()
3790 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), in Evaluate()
3837 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3877 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3917 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3956 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
3995 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate()
4257 DECLARE_INSTRUCTION(Compare);
[all …]
/art/runtime/interpreter/
Dinterpreter_intrinsics.cc71 BINARY_II_INTRINSIC(MterpIntegerCompare, Compare, SetI);
104 BINARY_JJ_INTRINSIC(MterpLongCompare, Compare, SetI);
/art/runtime/gc/allocator/
Drosalloc.h711 template<class Key, AllocatorTag kTag, class Compare = std::less<Key>>
712 using AllocationTrackingSet = std::set<Key, Compare, TrackingAllocator<Key, kTag>>;
/art/libprofile/profile/
Dprofile_compilation_info.h642 (BitMemoryRegion::Compare(method_bitmap, other.method_bitmap) == 0);
/art/dex2oat/
Ddex2oat_image_test.cc156 return file1->Compare(file2.get()) == 0; in CompareFiles()
Ddex2oat_test.cc1345 EXPECT_EQ(unload_oat->Compare(no_unload_oat.get()), 0) in TEST_F()
1347 EXPECT_EQ(unload_vdex->Compare(no_unload_vdex.get()), 0) in TEST_F()
2070 EXPECT_EQ(temp.GetFile()->Compare(temp_dex.GetFile()), 0); in TEST_F()