/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 | stringpiece.h | 201 int Compare(const StringPiece& rhs) const { in Compare() function 267 return x.Compare(y) < 0;
|
D | variant_map.h | 106 virtual bool Compare(const VariantMapKeyRaw* other) const { in Compare() function 407 return lhs->Compare(rhs); in operator()
|
D | utils.h | 228 inline static int32_t Compare(T lhs, T rhs) { in Compare() function
|
/art/test/020-string/ |
D | expected.txt | 3 Compare result is greater than zero 4 Compare unicode: -65302
|
/art/libdexfile/dex/ |
D | dex_cache_resolved_classes.h | 41 int Compare(const DexCacheResolvedClasses& other) const { in Compare() function 88 return a.Compare(b) < 0;
|
/art/test/567-checker-compare/smali/ |
D | Smali.smali | 32 ## CHECK-DAG: <<Result:i\d+>> Compare [<<PhiX>>,<<PhiY>>] 45 ## CHECK-DAG: <<Result:i\d+>> Compare [<<SelX>>,<<SelY>>] 54 ## CHECK-DAG: <<Result:i\d+>> Compare [<<ArgX>>,<<ArgY>>]
|
/art/compiler/utils/ |
D | intrusive_forward_list.h | 326 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()
|
/art/test/003-omnibus-opcodes/src/ |
D | Main.java | 42 Compare.run(); in run()
|
D | Compare.java | 20 public class Compare { class
|
/art/libartbase/base/unix_file/ |
D | fd_file.h | 152 int Compare(FdFile* other);
|
D | fd_file_test.cc | 223 TEST_F(FdFileTest, Compare) { in TEST_F() argument 233 return a.GetFile()->Compare(b.GetFile()); in TEST_F()
|
D | fd_file.cc | 453 int FdFile::Compare(FdFile* other) { in Compare() function in unix_file::FdFile
|
/art/compiler/optimizing/ |
D | scheduler_arm.h | 80 M(Compare , unused) \
|
D | nodes.h | 1355 M(Compare, BinaryOperation) \ 3619 int32_t Compare(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } in Compare() function 3626 return std::isunordered(x, y) ? (IsGtBias() ? 1 : -1) : Compare(x, y); in CompareFP() 3657 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), in Evaluate() 3704 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3744 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3784 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3823 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 3862 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc()); in Evaluate() 4126 DECLARE_INSTRUCTION(Compare); [all …]
|
/art/runtime/mirror/ |
D | string.h | 157 int Compare(int32_t utf16_length, const char* utf8_data_in);
|
D | class.cc | 840 int result = StringPiece(field.GetName()).Compare(name); in FindFieldByNameAndType() 842 result = StringPiece(field.GetTypeDescriptor()).Compare(type); in FindFieldByNameAndType()
|
/art/runtime/interpreter/ |
D | interpreter_intrinsics.cc | 71 BINARY_II_INTRINSIC(MterpIntegerCompare, Compare, SetI); 104 BINARY_JJ_INTRINSIC(MterpLongCompare, Compare, SetI);
|
/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/ |
D | mem_map.cc | 52 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>> 54 std::multimap<Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>>;
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1291 EXPECT_EQ(unload_oat->Compare(no_unload_oat.get()), 0) in TEST_F() 1293 EXPECT_EQ(unload_vdex->Compare(no_unload_vdex.get()), 0) in TEST_F() 2021 EXPECT_EQ(temp.GetFile()->Compare(temp_dex.GetFile()), 0); in TEST_F()
|