Home
last modified time | relevance | path

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

/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/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.h325 template <typename Compare>
326 void merge(IntrusiveForwardList& other, Compare cmp) { in merge()
345 template <typename Compare>
346 void merge(IntrusiveForwardList&& other, Compare cmp) { in merge()
352 template <typename Compare>
353 void sort(Compare cmp) { in sort()
Dvariant_map.h106 virtual bool Compare(const VariantMapKeyRaw* other) const { in Compare() function
414 return lhs->Compare(rhs); in operator()
Dutils.h151 inline static int32_t Compare(T lhs, T 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_memory_region.h230 static int Compare(const BitMemoryRegion& lhs, const BitMemoryRegion& rhs) { in Compare() function
/art/test/020-string/
Dexpected-stdout.txt3 Compare result is greater than zero
4 Compare unicode: -65302
/art/libdexfile/dex/
Dsignature.h59 int Compare(const Signature& rhs) const;
Dsignature-inl.h71 inline int Signature::Compare(const Signature& rhs) const { in Compare() function
/art/test/003-omnibus-opcodes/src/
DMain.java42 Compare.run(); in run()
DCompare.java20 public class Compare { class
/art/test/2245-checker-smali-instance-of-comparison/smali/
Db_252804549.smali28 # Compare instance-of with 2 (i.e. neither 0 nor 1)
/art/libartbase/base/unix_file/
Dfd_file.h135 int Compare(FdFile* other);
Dfd_file_test.cc241 TEST_F(FdFileTest, Compare) { in TEST_F() argument
251 return a.GetFile()->Compare(b.GetFile()); in TEST_F()
Dfd_file.cc618 int FdFile::Compare(FdFile* other) { in Compare() function in unix_file::FdFile
/art/compiler/optimizing/
Dscheduler_arm.h78 M(Compare, unused) \
Dnodes.h1530 M(Compare, BinaryOperation) \
4025 int32_t Compare(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); }
4032 return std::isunordered(x, y) ? (IsGtBias() ? 1 : -1) : Compare(x, y);
4063 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0),
4110 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
4150 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
4190 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
4229 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
4268 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
4530 DECLARE_INSTRUCTION(Compare);
[all …]
/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/runtime/mirror/
Dclass.cc688 template <typename Compare>
692 Compare&& cmp) in BinarySearch()
802 return signature.Compare(dex_file.GetMethodSignature(method_id)); in FindDeclaredClassMethod()
/art/dex2oat/
Ddex2oat_image_test.cc156 return file1->Compare(file2.get()) == 0; in CompareFiles()
Ddex2oat_test.cc1236 EXPECT_EQ(unload_oat->Compare(no_unload_oat.get()), 0) in TEST_F()
1238 EXPECT_EQ(unload_vdex->Compare(no_unload_vdex.get()), 0) in TEST_F()