HomeSort by relevance Sort by last modified time
    Searched refs:rhs (Results 1 - 25 of 1977) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
blocks-seq.c 3 // CHECK: call i32 (...)* @rhs()
6 // CHECK: call i32 (...)* @rhs()
10 int rhs();
14 i = rhs();
15 i += rhs();
arm-neon-fma.c 11 float32x2_t test_fma_order(float32x2_t accum, float32x2_t lhs, float32x2_t rhs) {
12 return vfma_f32(accum, lhs, rhs);
13 // CHECK: call <2 x float> @llvm.fma.v2f32(<2 x float> %lhs, <2 x float> %rhs, <2 x float> %accum)
16 float32x4_t test_fmaq_order(float32x4_t accum, float32x4_t lhs, float32x4_t rhs) {
17 return vfmaq_f32(accum, lhs, rhs);
18 // CHECK: call <4 x float> @llvm.fma.v4f32(<4 x float> %lhs, <4 x float> %rhs, <4 x float> %accum)
  /abi/cpp/src/
type_info.cc 47 type_info::operator==(const type_info& rhs) const
52 return strcmp(this->__type_name, rhs.__type_name) == 0;
54 return this == &rhs;
59 type_info::operator!=(const type_info& rhs) const
61 return !this->operator==(rhs);
65 type_info::before(const type_info& rhs) const
70 return strcmp(this->__type_name, rhs.__type_name) < 0;
72 return this < &rhs;
  /art/runtime/arch/arm64/
registers_arm64.cc 38 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
39 if (rhs >= X0 && rhs <= XZR) {
40 os << kRegisterNames[rhs];
42 os << "XRegister[" << static_cast<int>(rhs) << "]";
47 std::ostream& operator<<(std::ostream& os, const WRegister& rhs) {
48 if (rhs >= W0 && rhs <= WZR) {
49 os << kWRegisterNames[rhs];
51 os << "WRegister[" << static_cast<int>(rhs) << "]";
    [all...]
  /art/runtime/arch/arm/
registers_arm.cc 28 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
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) {
38 if (rhs >= S0 && rhs < kNumberOfSRegisters) {
39 os << "s" << static_cast<int>(rhs);
41 os << "SRegister[" << static_cast<int>(rhs) << "]";
    [all...]
  /art/runtime/arch/mips/
registers_mips.cc 30 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
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) {
40 if (rhs >= F0 && rhs < kNumberOfFRegisters) {
41 os << "f" << static_cast<int>(rhs);
43 os << "FRegister[" << static_cast<int>(rhs) << "]";
    [all...]
  /art/runtime/arch/x86_64/
registers_x86_64.cc 28 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
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) {
38 if (rhs >= XMM0 && rhs <= XMM15) {
39 os << "xmm" << static_cast<int>(rhs);
41 os << "Register[" << static_cast<int>(rhs) << "]";
    [all...]
  /external/chromium_org/content/common/
webplugin_geometry.cc 18 bool WebPluginGeometry::Equals(const WebPluginGeometry& rhs) const {
19 return window == rhs.window &&
20 window_rect == rhs.window_rect &&
21 clip_rect == rhs.clip_rect &&
22 cutout_rects == rhs.cutout_rects &&
23 rects_valid == rhs.rects_valid &&
24 visible == rhs.visible;
  /art/compiler/dex/
reg_storage_eq.h 28 inline bool operator==(const RegStorage& lhs, const RegStorage& rhs) {
29 return lhs.ExactlyEquals(rhs);
32 inline bool operator!=(const RegStorage& lhs, const RegStorage& rhs) {
33 return lhs.NotExactlyEquals(rhs);
  /external/ceres-solver/internal/ceres/
block_structure.cc 36 bool CellLessThan(const Cell& lhs, const Cell& rhs) {
37 if (lhs.block_id == rhs.block_id) {
38 return (lhs.position < rhs.position);
40 return (lhs.block_id < rhs.block_id);
  /bionic/libc/bionic/
pthread_equal.cpp 31 int pthread_equal(pthread_t lhs, pthread_t rhs) {
32 return (lhs == rhs ? 1 : 0);
  /external/oprofile/libpp/
symbol_functors.cpp 15 symbol_entry const & rhs) const
17 if (lhs.image_name != rhs.image_name)
18 return lhs.image_name < rhs.image_name;
20 if (lhs.app_name != rhs.app_name)
21 return lhs.app_name < rhs.app_name;
23 if (lhs.name != rhs.name)
24 return lhs.name < rhs.name;
26 if (lhs.sample.vma != rhs.sample.vma)
27 return lhs.sample.vma < rhs.sample.vma;
29 return lhs.size < rhs.size
    [all...]
symbol_functors.h 20 sample_entry const * rhs) const {
21 return lhs->file_loc < rhs->file_loc;
25 symbol_entry const * rhs) const {
26 return lhs->sample.file_loc < rhs->sample.file_loc;
35 symbol_entry const & rhs) const;
  /frameworks/native/include/ui/
Point.h 40 inline bool operator == (const Point& rhs) const {
41 return (x == rhs.x) && (y == rhs.y);
43 inline bool operator != (const Point& rhs) const {
44 return !operator == (rhs);
53 bool operator < (const Point& rhs) const {
54 return y<rhs.y || (y==rhs.y && x<rhs.x);
63 inline Point& operator += (const Point& rhs) {
    [all...]
  /art/runtime/arch/x86/
registers_x86.cc 27 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
28 if (rhs >= EAX && rhs <= EDI) {
29 os << kRegisterNames[rhs];
31 os << "Register[" << static_cast<int>(rhs) << "]";
  /external/chromium_org/chrome/common/
instant_types.cc 29 bool RGBAColor::operator==(const RGBAColor& rhs) const {
30 return r == rhs.r &&
31 g == rhs.g &&
32 b == rhs.b &&
33 a == rhs.a;
55 bool ThemeBackgroundInfo::operator==(const ThemeBackgroundInfo& rhs) const {
56 return using_default_theme == rhs.using_default_theme &&
57 background_color == rhs.background_color &&
58 text_color == rhs.text_color &&
59 link_color == rhs.link_color &
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
packet.h 46 bool operator==(const Packet& rhs) const {
47 return (this->header.timestamp == rhs.header.timestamp &&
48 this->header.sequenceNumber == rhs.header.sequenceNumber &&
49 this->primary == rhs.primary &&
50 this->sync_packet == rhs.sync_packet);
52 bool operator!=(const Packet& rhs) const { return !operator==(rhs); }
53 bool operator<(const Packet& rhs) const {
54 if (this->header.timestamp == rhs.header.timestamp) {
55 if (this->header.sequenceNumber == rhs.header.sequenceNumber)
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/
Utils.cpp 21 bool operator<(const Vector<uint8_t> &lhs, const Vector<uint8_t> &rhs) {
22 if (lhs.size() < rhs.size()) {
24 } else if (lhs.size() > rhs.size()) {
27 return memcmp((void *)lhs.array(), (void *)rhs.array(), rhs.size()) < 0;
  /external/chromium_org/media/base/
ranges.cc 11 const base::TimeDelta& rhs) const {
12 DCHECK(lhs < rhs) << lhs.ToInternalValue() << " < " << rhs.ToInternalValue();
  /external/stlport/test/eh/
SortClass.h 39 bool operator<( const TestClass& rhs ) const
42 return (const TestClass&)*this < ( rhs );
45 bool operator==( const TestClass& rhs ) const
48 return (const TestClass&)*this == ( rhs );
58 inline bool operator>( const SortClass& lhs, const SortClass& rhs ) {
59 return rhs < lhs;
62 inline bool operator<=( const SortClass& lhs, const SortClass& rhs ) {
63 return !(rhs < lhs);
66 inline bool operator>=( const SortClass& lhs, const SortClass& rhs ) {
67 return !(lhs < rhs);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/identity/
extension_token_key.cc 16 bool ExtensionTokenKey::operator<(const ExtensionTokenKey& rhs) const {
17 if (extension_id < rhs.extension_id)
19 else if (rhs.extension_id < extension_id)
22 if (account_id < rhs.account_id)
24 else if (rhs.account_id < account_id)
27 return scopes < rhs.scopes;
  /external/mockito/src/org/mockito/internal/matchers/apachecommons/
EqualsBuilder.java 44 * MyClass rhs = (MyClass) obj;
47 * .append(field1, rhs.field1)
48 * .append(field2, rhs.field2)
49 * .append(field3, rhs.field3)
112 * @param rhs the other object
115 public static boolean reflectionEquals(Object lhs, Object rhs) {
116 return reflectionEquals(lhs, rhs, false, null, null);
134 * @param rhs the other object
138 public static boolean reflectionEquals(Object lhs, Object rhs, String[] excludeFields) {
139 return reflectionEquals(lhs, rhs, false, null, excludeFields)
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
type_info.cc 48 type_info::operator==(const type_info& rhs) const
53 return strcmp(this->__type_name, rhs.__type_name) == 0;
55 return this == &rhs;
60 type_info::operator!=(const type_info& rhs) const
62 return !this->operator==(rhs);
66 type_info::before(const type_info& rhs) const
71 return strcmp(this->__type_name, rhs.__type_name) < 0;
73 return this < &rhs;
  /art/runtime/
class_reference.h 30 inline bool operator<(const ClassReference& lhs, const ClassReference& rhs) {
31 if (lhs.second < rhs.second) {
33 } else if (lhs.second > rhs.second) {
36 return (lhs.first < rhs.first);
  /external/chromium_org/components/url_matcher/
string_pattern.cc 15 bool StringPattern::operator<(const StringPattern& rhs) const {
16 if (id_ != rhs.id_) return id_ < rhs.id_;
17 return pattern_ < rhs.pattern_;

Completed in 874 milliseconds

1 2 3 4 5 6 7 8 91011>>