Searched defs:rhs (Results 1 - 25 of 55) sorted by relevance

123

/art/compiler/
H A Doutput_stream.cc21 std::ostream& operator<<(std::ostream& os, const Whence& rhs) { argument
22 switch (rhs) {
H A Dcfi_test.h128 static bool CompareByAddress(const std::string& lhs, const std::string& rhs) { argument
130 EXPECT_EQ(rhs[10], ':');
131 return strncmp(lhs.c_str(), rhs.c_str(), 10) < 0;
/art/compiler/dex/
H A Dreg_storage_eq.h28 inline bool operator==(const RegStorage& lhs, const RegStorage& rhs) { argument
29 return lhs.ExactlyEquals(rhs);
32 inline bool operator!=(const RegStorage& lhs, const RegStorage& rhs) { argument
33 return lhs.NotExactlyEquals(rhs);
/art/runtime/arch/arm/
H A Dregisters_arm.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
29 if (rhs >= R0 && rhs <= PC) {
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
37 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) { argument
38 if (rhs >= S0 && rhs < kNumberOfSRegisters) {
39 os << "s" << static_cast<int>(rhs);
41 os << "SRegister[" << static_cast<int>(rhs) << "]";
[all...]
/art/runtime/arch/arm64/
H A Dregisters_arm64.cc38 std::ostream& operator<<(std::ostream& os, const XRegister& rhs) { argument
39 if (rhs >= X0 && rhs < kNumberOfXRegisters) {
40 os << kRegisterNames[rhs];
42 os << "XRegister[" << static_cast<int>(rhs) << "]";
47 std::ostream& operator<<(std::ostream& os, const WRegister& rhs) { argument
48 if (rhs >= W0 && rhs < kNumberOfWRegisters) {
49 os << kWRegisterNames[rhs];
51 os << "WRegister[" << static_cast<int>(rhs) << "]";
56 operator <<(std::ostream& os, const DRegister& rhs) argument
65 operator <<(std::ostream& os, const SRegister& rhs) argument
[all...]
/art/runtime/arch/mips/
H A Dregisters_mips.cc30 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
31 if (rhs >= ZERO && rhs <= RA) {
32 os << kRegisterNames[rhs];
34 os << "Register[" << static_cast<int>(rhs) << "]";
39 std::ostream& operator<<(std::ostream& os, const FRegister& rhs) { argument
40 if (rhs >= F0 && rhs < kNumberOfFRegisters) {
41 os << "f" << static_cast<int>(rhs);
43 os << "FRegister[" << static_cast<int>(rhs) << "]";
[all...]
/art/runtime/arch/mips64/
H A Dregisters_mips64.cc31 std::ostream& operator<<(std::ostream& os, const GpuRegister& rhs) { argument
32 if (rhs >= ZERO && rhs < kNumberOfGpuRegisters) {
33 os << kRegisterNames[rhs];
35 os << "GpuRegister[" << static_cast<int>(rhs) << "]";
40 std::ostream& operator<<(std::ostream& os, const FpuRegister& rhs) { argument
41 if (rhs >= F0 && rhs < kNumberOfFpuRegisters) {
42 os << "f" << static_cast<int>(rhs);
44 os << "FpuRegister[" << static_cast<int>(rhs) << "]";
[all...]
/art/runtime/arch/x86/
H A Dregisters_x86.cc27 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
28 if (rhs >= EAX && rhs <= EDI) {
29 os << kRegisterNames[rhs];
31 os << "Register[" << static_cast<int>(rhs) << "]";
/art/runtime/arch/x86_64/
H A Dregisters_x86_64.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
29 if (rhs >= RAX && rhs <= R15) {
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
37 std::ostream& operator<<(std::ostream& os, const FloatRegister& rhs) { argument
38 if (rhs >= XMM0 && rhs <= XMM15) {
39 os << "xmm" << static_cast<int>(rhs);
41 os << "Register[" << static_cast<int>(rhs) << "]";
[all...]
/art/runtime/
H A Dclass_reference.h30 inline bool operator<(const ClassReference& lhs, const ClassReference& rhs) { argument
31 if (lhs.second < rhs.second) {
33 } else if (lhs.second > rhs.second) {
36 return (lhs.first < rhs.first);
H A Dutf.cc139 const uint16_t rhs = *utf16++; local
141 if (lhs != rhs) {
142 return lhs > rhs ? 1 : -1;
/art/compiler/utils/arm/
H A Dassembler_arm.cc38 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
39 if (rhs >= R0 && rhs <= PC) {
40 os << kRegisterNames[rhs];
42 os << "Register[" << static_cast<int>(rhs) << "]";
48 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) { argument
49 if (rhs >= S0 && rhs < kNumberOfSRegisters) {
50 os << "s" << static_cast<int>(rhs);
52 os << "SRegister[" << static_cast<int>(rhs) << "]";
58 operator <<(std::ostream& os, const DRegister& rhs) argument
67 operator <<(std::ostream& os, const Condition& rhs) argument
[all...]
/art/test/083-compiler-regressions/src/
H A DZeroTests.java42 private static long longDiv(long lhs, long rhs) { argument
43 return lhs / rhs;
46 private static long longMod(long lhs, long rhs) { argument
47 return lhs % rhs;
/art/runtime/base/
H A Ddumpable.h48 std::ostream& operator<<(std::ostream& os, const Dumpable<T>& rhs) { argument
49 rhs.Dump(os);
H A Dhex_dump.h48 inline std::ostream& operator<<(std::ostream& os, const HexDump& rhs) { argument
49 rhs.Dump(os);
H A Darena_containers.h181 const ArenaAllocatorAdapter<U>& rhs);
186 const ArenaAllocatorAdapter<T>& rhs) {
187 return lhs.arena_allocator_ == rhs.arena_allocator_;
192 const ArenaAllocatorAdapter<T>& rhs) {
193 return !(lhs == rhs);
185 operator ==(const ArenaAllocatorAdapter<T>& lhs, const ArenaAllocatorAdapter<T>& rhs) argument
191 operator !=(const ArenaAllocatorAdapter<T>& lhs, const ArenaAllocatorAdapter<T>& rhs) argument
H A Dscoped_arena_containers.h178 const ScopedArenaAllocatorAdapter<U>& rhs);
183 const ScopedArenaAllocatorAdapter<T>& rhs) {
184 return lhs.arena_stack_ == rhs.arena_stack_;
189 const ScopedArenaAllocatorAdapter<T>& rhs) {
190 return !(lhs == rhs);
182 operator ==(const ScopedArenaAllocatorAdapter<T>& lhs, const ScopedArenaAllocatorAdapter<T>& rhs) argument
188 operator !=(const ScopedArenaAllocatorAdapter<T>& lhs, const ScopedArenaAllocatorAdapter<T>& rhs) argument
/art/runtime/verifier/
H A Dreg_type-inl.h64 inline bool RegType::AssignableFrom(const RegType& lhs, const RegType& rhs, bool strict) { argument
65 if (lhs.Equals(rhs)) {
69 return rhs.IsBooleanTypes();
71 return rhs.IsByteTypes();
73 return rhs.IsShortTypes();
75 return rhs.IsCharTypes();
77 return rhs.IsIntegralTypes();
79 return rhs.IsFloatTypes();
81 return rhs.IsLongTypes();
83 return rhs
90 << lhs << "' := '" << rhs << "'"; local
[all...]
/art/test/137-cfi/src/
H A DMain.java149 public int compare(Main lhs, Main rhs) { argument
/art/compiler/optimizing/
H A Dboolean_simplifier.cc71 HInstruction* rhs = cond->InputAt(1); local
73 return new (allocator) HNotEqual(lhs, rhs);
75 return new (allocator) HEqual(lhs, rhs);
77 return new (allocator) HGreaterThanOrEqual(lhs, rhs);
79 return new (allocator) HGreaterThan(lhs, rhs);
81 return new (allocator) HLessThanOrEqual(lhs, rhs);
84 return new (allocator) HLessThan(lhs, rhs);
H A Dcodegen_test.cc641 int rhs[] = {2, 1, 2, -1, 0xabc}; local
663 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
675 RunCodeOptimized(graph, hook_before_codegen, true, lhs[i] < rhs[i]);
686 int rhs[] = {2, 1, 2, -1, 0xabc}; local
718 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
741 RunCodeOptimized(graph, hook_before_codegen, true, lhs[i] < rhs[i]);
H A Dgraph_checker.cc545 HInstruction* rhs = op->InputAt(1); local
546 if (PrimitiveKind(lhs->GetType()) != PrimitiveKind(rhs->GetType())) {
551 Primitive::PrettyDescriptor(rhs->GetType())));
558 } else if (rhs->GetType() == Primitive::kPrimNot) {
/art/runtime/arch/
H A Dinstruction_set_features.cc298 std::ostream& operator<<(std::ostream& os, const InstructionSetFeatures& rhs) { argument
299 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString();
/art/runtime/jdwp/
H A Dobject_registry.cc26 std::ostream& operator<<(std::ostream& os, const ObjectRegistryEntry& rhs) { argument
27 os << "ObjectRegistryEntry[" << rhs.jni_reference_type
28 << ",reference=" << rhs.jni_reference
29 << ",count=" << rhs.reference_count
30 << ",id=" << rhs.id << "]";
/art/cmdline/
H A Dcmdline_parser_test.cc32 bool operator==(const TestProfilerOptions& lhs, const TestProfilerOptions& rhs) { argument
33 return lhs.enabled_ == rhs.enabled_ &&
34 lhs.output_file_name_ == rhs.output_file_name_ &&
35 lhs.period_s_ == rhs.period_s_ &&
36 lhs.duration_s_ == rhs.duration_s_ &&
37 lhs.interval_us_ == rhs.interval_us_ &&
38 UsuallyEquals(lhs.backoff_coefficient_, rhs.backoff_coefficient_) &&
39 UsuallyEquals(lhs.start_immediately_, rhs.start_immediately_) &&
40 UsuallyEquals(lhs.top_k_threshold_, rhs.top_k_threshold_) &&
41 UsuallyEquals(lhs.top_k_change_threshold_, rhs
[all...]

Completed in 864 milliseconds

123