Searched refs:Compute (Results 1 - 5 of 5) sorted by relevance

/art/compiler/optimizing/
H A Dnodes.h3651 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3657 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0),
3661 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3664 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3681 template <typename T> static bool Compute(T x, T y) { return x == y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL
3698 return MakeConstantCondition(Compute(x->GetValue(), y->GetValue()), GetDexPc());
3704 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3707 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3710 return MakeConstantCondition(Compute(CompareFP(x->GetValue(), y->GetValue()), 0), GetDexPc());
3727 template <typename T> static bool Compute( function in class:art::FINAL::FINAL::ComparisonBias::FINAL
3767 template <typename T> static bool Compute(T x, T y) { return x < y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL
3807 template <typename T> static bool Compute(T x, T y) { return x <= y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL
3846 template <typename T> static bool Compute(T x, T y) { return x > y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL
3885 template <typename T> static bool Compute(T x, T y) { return x >= y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL
3925 template <typename T> static bool Compute(T x, T y) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL
3967 template <typename T> static bool Compute(T x, T y) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL
4009 template <typename T> static bool Compute(T x, T y) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL
4051 template <typename T> static bool Compute(T x, T y) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL
4080 int32_t Compute(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } function in class:art::FINAL::FINAL::ComparisonBias::FINAL
4763 template <typename T> static T Compute(T x) { return -x; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
4828 template <typename T> static T Compute(T x, T y) { return x + y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
4862 template <typename T> static T Compute(T x, T y) { return x - y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
4898 template <typename T> static T Compute(T x, T y) { return x * y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5057 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5103 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5149 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5196 template <typename T> static T Compute(T x, T y) { return x & y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5234 template <typename T> static T Compute(T x, T y) { return x | y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5272 template <typename T> static T Compute(T x, T y) { return x ^ y; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5308 static T Compute(T value, int32_t distance, int32_t max_shift_value) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5406 template <typename T> static T Compute(T x) { return ~x; } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5440 template <typename T> static bool Compute(T x) { function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
[all...]
H A Dnodes_shared.h83 auto Compute(T x, U y) const -> decltype(x & ~y) {
102 Compute(x->GetValue(), y->GetValue()), GetDexPc());
106 Compute(x->GetValue(), y->GetValue()), GetDexPc());
H A Dinstruction_simplifier.cc2597 // Use the Compute() method for consistency with TryStaticEvaluation().
2599 return HAdd::Compute<int32_t>(x, y);
2602 return HAdd::Compute<int64_t>(x, y);
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S1772 # Compute the rosalloc bracket index from the size. Since the size is already aligned we can
1845 subu $a3, $a2, $v0 # Compute the remaining buffer size.
1909 subu $t2, $t1, $v0 # Compute the remaining buffer size.
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1697 # Compute the rosalloc bracket index from the size. Since the size is already aligned we can
1832 dsubu $t2, $t1, $v0 # Compute the remaining buffer size.

Completed in 27 milliseconds