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>> {
Dstringpiece.h201 int Compare(const StringPiece& rhs) const { in Compare() function
267 return x.Compare(y) < 0;
Dvariant_map.h106 virtual bool Compare(const VariantMapKeyRaw* other) const { in Compare() function
407 return lhs->Compare(rhs); in operator()
Dutils.h228 inline static int32_t Compare(T lhs, T rhs) { in Compare() function
/art/test/020-string/
Dexpected.txt3 Compare result is greater than zero
4 Compare unicode: -65302
/art/libdexfile/dex/
Ddex_cache_resolved_classes.h41 int Compare(const DexCacheResolvedClasses& other) const { in Compare() function
88 return a.Compare(b) < 0;
/art/test/567-checker-compare/smali/
DSmali.smali32 ## 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/
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()
/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.h152 int Compare(FdFile* other);
Dfd_file_test.cc223 TEST_F(FdFileTest, Compare) { in TEST_F() argument
233 return a.GetFile()->Compare(b.GetFile()); in TEST_F()
Dfd_file.cc453 int FdFile::Compare(FdFile* other) { in Compare() function in unix_file::FdFile
/art/compiler/optimizing/
Dscheduler_arm.h80 M(Compare , unused) \
Dnodes.h1355 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/
Dstring.h157 int Compare(int32_t utf16_length, const char* utf8_data_in);
Dclass.cc840 int result = StringPiece(field.GetName()).Compare(name); in FindFieldByNameAndType()
842 result = StringPiece(field.GetTypeDescriptor()).Compare(type); in FindFieldByNameAndType()
/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/runtime/
Dmem_map.cc52 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/
Ddex2oat_test.cc1291 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()