/art/test/442-checker-constant-folding/smali/ |
D | TestCmp.smali | 23 ## 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/ |
D | tracking_safe_map.h | 25 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>> 27 Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>> {
|
D | intrusive_forward_list.h | 325 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()
|
D | variant_map.h | 106 virtual bool Compare(const VariantMapKeyRaw* other) const { in Compare() function 414 return lhs->Compare(rhs); in operator()
|
D | utils.h | 151 inline static int32_t Compare(T lhs, T rhs) { in Compare() function
|
D | mem_map.cc | 53 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>>;
|
D | bit_memory_region.h | 230 static int Compare(const BitMemoryRegion& lhs, const BitMemoryRegion& rhs) { in Compare() function
|
/art/test/020-string/ |
D | expected-stdout.txt | 3 Compare result is greater than zero 4 Compare unicode: -65302
|
/art/libdexfile/dex/ |
D | signature.h | 59 int Compare(const Signature& rhs) const;
|
D | signature-inl.h | 71 inline int Signature::Compare(const Signature& rhs) const { in Compare() function
|
/art/test/003-omnibus-opcodes/src/ |
D | Main.java | 42 Compare.run(); in run()
|
D | Compare.java | 20 public class Compare { class
|
/art/test/2245-checker-smali-instance-of-comparison/smali/ |
D | b_252804549.smali | 28 # Compare instance-of with 2 (i.e. neither 0 nor 1)
|
/art/libartbase/base/unix_file/ |
D | fd_file.h | 135 int Compare(FdFile* other);
|
D | fd_file_test.cc | 241 TEST_F(FdFileTest, Compare) { in TEST_F() argument 251 return a.GetFile()->Compare(b.GetFile()); in TEST_F()
|
D | fd_file.cc | 618 int FdFile::Compare(FdFile* other) { in Compare() function in unix_file::FdFile
|
/art/compiler/optimizing/ |
D | scheduler_arm.h | 78 M(Compare, unused) \
|
D | nodes.h | 1530 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/ |
D | rosalloc.h | 711 template<class Key, AllocatorTag kTag, class Compare = std::less<Key>> 712 using AllocationTrackingSet = std::set<Key, Compare, TrackingAllocator<Key, kTag>>;
|
/art/runtime/mirror/ |
D | class.cc | 688 template <typename Compare> 692 Compare&& cmp) in BinarySearch() 802 return signature.Compare(dex_file.GetMethodSignature(method_id)); in FindDeclaredClassMethod()
|
/art/dex2oat/ |
D | dex2oat_image_test.cc | 156 return file1->Compare(file2.get()) == 0; in CompareFiles()
|
D | dex2oat_test.cc | 1236 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()
|