Searched refs:rhs (Results 1 - 25 of 467) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dblocks-seq.c3 // CHECK: call i32 (...)* @rhs()
6 // CHECK: call i32 (...)* @rhs()
10 int rhs();
14 i = rhs();
15 i += rhs();
H A Darm-neon-fma.c11 float32x2_t test_fma_order(float32x2_t accum, float32x2_t lhs, float32x2_t rhs) { argument
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) { argument
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)
H A Dconditional-gnu-ext.c33 _Complex int rhs; local
35 return getComplex(1+2i) ? : rhs;
/external/oprofile/libpp/
H A Dsymbol_functors.cpp15 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
[all...]
H A Dsymbol_functors.h20 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;
H A Dfilename_spec.cpp35 bool filename_spec::match(filename_spec const & rhs, argument
38 if (!tid.match(rhs.tid) || !cpu.match(rhs.cpu) ||
39 !tgid.match(rhs.tgid) || count != rhs.count ||
40 unitmask != rhs.unitmask || event != rhs.event) {
45 return image == rhs.image && lib_image == rhs.lib_image;
49 if (!rhs
[all...]
/external/mockito/src/org/mockito/internal/matchers/apachecommons/
H A DEqualsBuilder.java44 * 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) { argument
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) { argument
139 return reflectionEquals(lhs, rhs, fals
162 reflectionEquals(Object lhs, Object rhs, boolean testTransients) argument
191 reflectionEquals(Object lhs, Object rhs, boolean testTransients, Class reflectUpToClass) argument
221 reflectionEquals(Object lhs, Object rhs, boolean testTransients, Class reflectUpToClass, String[] excludeFields) argument
281 reflectionAppend( Object lhs, Object rhs, Class clazz, EqualsBuilder builder, boolean useTransients, String[] excludeFields) argument
335 append(Object lhs, Object rhs) argument
394 append(long lhs, long rhs) argument
409 append(int lhs, int rhs) argument
424 append(short lhs, short rhs) argument
439 append(char lhs, char rhs) argument
454 append(byte lhs, byte rhs) argument
475 append(double lhs, double rhs) argument
495 append(float lhs, float rhs) argument
509 append(boolean lhs, boolean rhs) argument
527 append(Object[] lhs, Object[] rhs) argument
558 append(long[] lhs, long[] rhs) argument
589 append(int[] lhs, int[] rhs) argument
620 append(short[] lhs, short[] rhs) argument
651 append(char[] lhs, char[] rhs) argument
682 append(byte[] lhs, byte[] rhs) argument
713 append(double[] lhs, double[] rhs) argument
744 append(float[] lhs, float[] rhs) argument
775 append(boolean[] lhs, boolean[] rhs) argument
[all...]
/external/stlport/test/eh/
H A DSortClass.h39 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...]
H A DTestClass.h37 inline TestClass( const TestClass& rhs );
40 inline TestClass& operator=( const TestClass& rhs );
45 bool operator==( const TestClass& rhs ) const
47 return value() == rhs.value();
50 bool operator<( const TestClass& rhs ) const {
51 return value() < rhs.value();
97 inline TestClass::TestClass( const TestClass& rhs )
99 Init( rhs.value() );
111 inline TestClass& TestClass::operator=( const TestClass& rhs )
114 int *newP = new int( rhs
[all...]
/external/marisa-trie/lib/marisa/
H A Dmarisa-string.h48 inline bool operator==(const String &lhs, const String &rhs) { argument
49 if (lhs.length() != rhs.length()) {
53 if (lhs[i] != rhs[i]) {
60 inline bool operator!=(const String &lhs, const String &rhs) { argument
61 return !(lhs == rhs);
64 inline bool operator<(const String &lhs, const String &rhs) { argument
66 if (i == rhs.length()) {
69 if (lhs[i] != rhs[i]) {
70 return lhs[i] < rhs[i];
73 return lhs.length() < rhs
76 operator >(const String &lhs, const String &rhs) argument
120 operator ==(const RString &lhs, const RString &rhs) argument
132 operator !=(const RString &lhs, const RString &rhs) argument
136 operator <(const RString &lhs, const RString &rhs) argument
148 operator >(const RString &lhs, const RString &rhs) argument
[all...]
H A Dkey.h45 inline bool operator<(const Key<T> &lhs, const T &rhs) { argument
46 return lhs.str() < rhs;
50 inline bool operator<(const T &lhs, const Key<T> &rhs) { argument
51 return lhs < rhs.str();
55 inline bool operator<(const Key<T> &lhs, const Key<T> &rhs) { argument
56 return lhs.str() < rhs.str();
60 inline bool operator==(const Key<T> &lhs, const Key<T> &rhs) { argument
61 return lhs.str() == rhs.str();
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dmarisa-string.h48 inline bool operator==(const String &lhs, const String &rhs) { argument
49 if (lhs.length() != rhs.length()) {
53 if (lhs[i] != rhs[i]) {
60 inline bool operator!=(const String &lhs, const String &rhs) { argument
61 return !(lhs == rhs);
64 inline bool operator<(const String &lhs, const String &rhs) { argument
66 if (i == rhs.length()) {
69 if (lhs[i] != rhs[i]) {
70 return lhs[i] < rhs[i];
73 return lhs.length() < rhs
76 operator >(const String &lhs, const String &rhs) argument
120 operator ==(const RString &lhs, const RString &rhs) argument
132 operator !=(const RString &lhs, const RString &rhs) argument
136 operator <(const RString &lhs, const RString &rhs) argument
148 operator >(const RString &lhs, const RString &rhs) argument
[all...]
H A Dkey.h47 inline bool operator<(const Key<T> &lhs, const T &rhs) { argument
48 return lhs.str() < rhs;
52 inline bool operator<(const T &lhs, const Key<T> &rhs) { argument
53 return lhs < rhs.str();
57 inline bool operator<(const Key<T> &lhs, const Key<T> &rhs) { argument
58 return lhs.str() < rhs.str();
62 inline bool operator==(const Key<T> &lhs, const Key<T> &rhs) { argument
63 return lhs.str() == rhs.str();
/external/eigen/doc/snippets/
H A DJacobiSVD_basic.cpp7 Vector3f rhs(1, 0, 0);
8 cout << "Now consider this rhs vector:" << endl << rhs << endl;
9 cout << "A least-squares solution of m*x = rhs is:" << endl << svd.solve(rhs) << endl;
/external/webkit/Source/JavaScriptCore/wtf/unicode/
H A DCollatorDefault.cpp54 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const argument
58 while (l < lmin && *lhs == *rhs) {
60 rhs++;
65 return (*lhs > *rhs) ? Greater : Less;
/external/icu4c/i18n/
H A Dfpositer.cpp33 FieldPositionIterator::FieldPositionIterator(const FieldPositionIterator &rhs) argument
34 : UObject(rhs), data(NULL), pos(rhs.pos) {
36 if (rhs.data) {
39 data->assign(*rhs.data, status);
48 UBool FieldPositionIterator::operator==(const FieldPositionIterator &rhs) const {
49 if (&rhs == this) {
52 if (pos != rhs.pos) {
56 return rhs.data == NULL;
58 return rhs
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathPredicate.cpp70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
74 addSubExpression(rhs);
80 Value rhs(subExpr(1)->evaluate());
83 double rightVal = rhs.toNumber();
101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
105 addSubExpression(rhs);
108 bool EqTestOp::compare(const Value& lhs, const Value& rhs) const
112 if (rhs.isNodeSet()) {
116 const NodeSet& rhsSet = rhs.toNodeSet();
123 if (rhs
204 LogicalOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
235 Value rhs = subExpr(1)->evaluate(); local
[all...]
/external/icu4c/test/intltest/
H A Dicusvtst.h38 UnicodeString& lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const;
41 void confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
43 void confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs);
44 void confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs);
45 void confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs);
47 void confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs);
48 void confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
49 void confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs);
/external/v8/test/mjsunit/
H A Dbinary-op-newspace.js55 var rhs = 42.17;
57 assertEquals(59.59, g(lhs, rhs));
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
66 void Set(const FilePath& rhs) { argument
67 pathname_ = rhs.pathname_;
150 FilePath& operator=(const FilePath& rhs);
/external/oprofile/libutil++/
H A Dgeneric_spec.h52 /// return true if rhs match this spec. Sub part of PP:3.24
53 bool match(T const & rhs) const {
54 return rhs == data;
57 /// return true if rhs match this spec. Sub part of PP:3.24
58 bool match(generic_spec<T> const & rhs) const {
59 return is_all || rhs.is_all || rhs.data == data;
H A Dgrowable_vector.h54 growable_vector<T> & operator+=(growable_vector<T> const & rhs) { argument
55 if (rhs.container.size() > container.size())
56 container.resize(rhs.container.size());
58 size_type min_size = min(container.size(), rhs.container.size());
60 container[i] += rhs.container[i];
68 * (iow: for each components lhs[i] >= rhs[i]
70 growable_vector<T> & operator-=(growable_vector<T> const & rhs) { argument
71 if (rhs.container.size() > container.size())
72 container.resize(rhs.container.size());
74 size_type min_size = min(container.size(), rhs
[all...]
/external/skia/tools/
H A Dskdiff.h163 const DiffRecord* rhs = *reinterpret_cast<DiffRecord* const *>(untyped_rhs); local
167 if (lhs->fResult != rhs->fResult) {
168 return (lhs->fResult < rhs->fResult) ? 1 : -1;
172 int result = T::comparePixels(lhs, rhs);
179 return strcmp(lhs->fBase.fFilename.c_str(), rhs->fBase.fFilename.c_str());
186 static int comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) { argument
187 if (lhs->fFractionDifference < rhs->fFractionDifference) {
190 if (rhs->fFractionDifference < lhs->fFractionDifference) {
199 static int comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) { argument
200 if (lhs->fWeightedFraction < rhs
214 comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) argument
235 comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) argument
[all...]
/external/skia/src/utils/
H A DSkBitSet.cpp26 const SkBitSet& SkBitSet::operator=(const SkBitSet& rhs) { argument
27 if (this == &rhs) {
30 fBitCount = rhs.fBitCount;
32 fDwordCount = rhs.fDwordCount;
34 memcpy(fBitData.get(), rhs.fBitData.get(), fDwordCount * sizeof(uint32_t));
38 bool SkBitSet::operator==(const SkBitSet& rhs) { argument
39 if (fBitCount == rhs.fBitCount) {
41 return (memcmp(fBitData.get(), rhs.fBitData.get(),
49 bool SkBitSet::operator!=(const SkBitSet& rhs) { argument
50 return !(*this == rhs);
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h55 TickTime& operator+=(const WebRtc_Word64& rhs);
58 // Returns a TickInterval that is the difference in ticks beween rhs and lhs
59 friend TickInterval operator-(const TickTime& lhs, const TickTime& rhs);
74 const TickInterval& rhs);
75 TickInterval& operator-=(const TickInterval& rhs);
77 // Returns a TickInterval corresponding to rhs - lhs
79 const TickInterval& rhs);
80 TickInterval& operator+=(const TickInterval& rhs);
82 friend bool operator>(const TickInterval& lhs, const TickInterval& rhs);
83 friend bool operator<=(const TickInterval& lhs, const TickInterval& rhs);
97 operator +(const TickInterval& lhs, const TickInterval& rhs) argument
102 operator -(const TickInterval& lhs, const TickInterval& rhs) argument
107 operator -(const TickTime& lhs,const TickTime& rhs) argument
118 operator >(const TickInterval& lhs, const TickInterval& rhs) argument
122 operator <=(const TickInterval& lhs, const TickInterval& rhs) argument
126 operator <(const TickInterval& lhs, const TickInterval& rhs) argument
130 operator >=(const TickInterval& lhs, const TickInterval& rhs) argument
331 operator +=(const TickInterval& rhs) argument
337 operator -=(const TickInterval& rhs) argument
[all...]

Completed in 2605 milliseconds

1234567891011>>