Searched refs:lhs (Results 26 - 50 of 695) sorted by relevance

1234567891011>>

/external/libcxx/test/numerics/complex.number/complex.ops/
H A Dcomplex_divide_scalar.pass.cpp14 // operator/(const complex<T>& lhs, const T& rhs);
21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) argument
23 assert(lhs / rhs == x);
30 std::complex<T> lhs(-4.0, 7.5);
33 test(lhs, rhs, x);
H A Dcomplex_times_scalar.pass.cpp14 // operator*(const complex<T>& lhs, const T& rhs);
21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) argument
23 assert(lhs * rhs == x);
30 std::complex<T> lhs(1.5, 2.5);
33 test(lhs, rhs, x);
H A Dscalar_divide_complex.pass.cpp14 // operator/(const T& lhs, const complex<T>& rhs);
21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) argument
23 assert(lhs / rhs == x);
30 T lhs(-8.5);
33 test(lhs, rhs, x);
H A Dscalar_times_complex.pass.cpp14 // operator*(const T& lhs, const complex<T>& rhs);
21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) argument
23 assert(lhs * rhs == x);
30 T lhs(1.5);
33 test(lhs, rhs, x);
H A Dcomplex_minus_complex.pass.cpp14 // operator-(const complex<T>& lhs, const complex<T>& rhs);
21 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) argument
23 assert(lhs - rhs == x);
31 std::complex<T> lhs(1.5, 2.5);
34 test(lhs, rhs, x);
37 std::complex<T> lhs(1.5, -2.5);
40 test(lhs, rhs, x);
H A Dcomplex_plus_complex.pass.cpp14 // operator+(const complex<T>& lhs, const complex<T>& rhs);
21 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) argument
23 assert(lhs + rhs == x);
31 std::complex<T> lhs(1.5, 2.5);
34 test(lhs, rhs, x);
37 std::complex<T> lhs(1.5, -2.5);
40 test(lhs, rhs, x);
/external/chromium_org/net/quic/
H A Dquic_bandwidth.h66 inline bool operator==(QuicBandwidth lhs, QuicBandwidth rhs) { argument
67 return lhs.ToBitsPerSecond() == rhs.ToBitsPerSecond();
69 inline bool operator!=(QuicBandwidth lhs, QuicBandwidth rhs) { argument
70 return !(lhs == rhs);
72 inline bool operator<(QuicBandwidth lhs, QuicBandwidth rhs) { argument
73 return lhs.ToBitsPerSecond() < rhs.ToBitsPerSecond();
75 inline bool operator>(QuicBandwidth lhs, QuicBandwidth rhs) { argument
76 return rhs < lhs;
78 inline bool operator<=(QuicBandwidth lhs, QuicBandwidth rhs) { argument
79 return !(rhs < lhs);
81 operator >=(QuicBandwidth lhs, QuicBandwidth rhs) argument
[all...]
H A Dquic_time.h105 friend bool operator==(QuicTime lhs, QuicTime rhs);
106 friend bool operator<(QuicTime lhs, QuicTime rhs);
156 inline bool operator==(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
157 return lhs.ToMicroseconds() == rhs.ToMicroseconds();
159 inline bool operator!=(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
160 return !(lhs == rhs);
162 inline bool operator<(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
163 return lhs.ToMicroseconds() < rhs.ToMicroseconds();
165 inline bool operator>(QuicTime::Delta lhs, QuicTime::Delta rhs) { argument
166 return rhs < lhs;
168 operator <=(QuicTime::Delta lhs, QuicTime::Delta rhs) argument
171 operator >=(QuicTime::Delta lhs, QuicTime::Delta rhs) argument
175 operator ==(QuicTime lhs, QuicTime rhs) argument
178 operator !=(QuicTime lhs, QuicTime rhs) argument
181 operator <(QuicTime lhs, QuicTime rhs) argument
184 operator >(QuicTime lhs, QuicTime rhs) argument
187 operator <=(QuicTime lhs, QuicTime rhs) argument
190 operator >=(QuicTime lhs, QuicTime rhs) argument
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dpoint3_f.cc15 Point3F operator+(const Point3F& lhs, const Vector3dF& rhs) { argument
16 float x = lhs.x() + rhs.x();
17 float y = lhs.y() + rhs.y();
18 float z = lhs.z() + rhs.z();
24 Point3F operator-(const Point3F& lhs, const Vector3dF& rhs) { argument
25 float x = lhs.x() - rhs.x();
26 float y = lhs.y() - rhs.y();
27 float z = lhs.z() - rhs.z();
33 Vector3dF operator-(const Point3F& lhs, const Point3F& rhs) { argument
34 float x = lhs
[all...]
H A Dpoint.h59 inline bool operator==(const Point& lhs, const Point& rhs) { argument
60 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
63 inline bool operator!=(const Point& lhs, const Point& rhs) { argument
64 return !(lhs == rhs);
67 inline Point operator+(const Point& lhs, const Vector2d& rhs) { argument
68 Point result(lhs);
73 inline Point operator-(const Point& lhs, const Vector2d& rhs) { argument
74 Point result(lhs);
79 inline Vector2d operator-(const Point& lhs, cons argument
[all...]
H A Dpoint_f.h36 inline bool operator==(const PointF& lhs, const PointF& rhs) { argument
37 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
40 inline bool operator!=(const PointF& lhs, const PointF& rhs) { argument
41 return !(lhs == rhs);
44 inline PointF operator+(const PointF& lhs, const Vector2dF& rhs) { argument
45 PointF result(lhs);
50 inline PointF operator-(const PointF& lhs, const Vector2dF& rhs) { argument
51 PointF result(lhs);
56 inline Vector2dF operator-(const PointF& lhs, cons argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DIconURL.cpp52 bool operator==(const IconURL& lhs, const IconURL& rhs) argument
54 return lhs.m_iconType == rhs.m_iconType
55 && lhs.m_isDefaultIcon == rhs.m_isDefaultIcon
56 && lhs.m_iconURL == rhs.m_iconURL
57 && lhs.m_sizes == rhs.m_sizes
58 && lhs.m_mimeType == rhs.m_mimeType;
/external/chromium_org/v8/src/base/
H A Dflags.h68 inline Type operator&(Type::flag_type lhs, \
70 inline Type operator&(Type::flag_type lhs, Type::flag_type rhs) { \
71 return Type(lhs) & rhs; \
73 inline Type operator&(Type::flag_type lhs, \
75 inline Type operator&(Type::flag_type lhs, const Type& rhs) { \
76 return rhs & lhs; \
78 inline void operator&(Type::flag_type lhs, Type::mask_type rhs)ALLOW_UNUSED; \
79 inline void operator&(Type::flag_type lhs, Type::mask_type rhs) {} \
80 inline Type operator|(Type::flag_type lhs, Type::flag_type rhs) \
82 inline Type operator|(Type::flag_type lhs, Typ
[all...]
/external/clang/test/CodeGen/
H A Darm64_neon_high_half.c6 int16x8_t test_vaddw_high_s8(int16x8_t lhs, int8x16_t rhs) { argument
8 return vaddw_high_s8(lhs, rhs);
11 int32x4_t test_vaddw_high_s16(int32x4_t lhs, int16x8_t rhs) { argument
13 return vaddw_high_s16(lhs, rhs);
16 int64x2_t test_vaddw_high_s32(int64x2_t lhs, int32x4_t rhs) { argument
18 return vaddw_high_s32(lhs, rhs);
21 uint16x8_t test_vaddw_high_u8(uint16x8_t lhs, uint8x16_t rhs) { argument
23 return vaddw_high_u8(lhs, rhs);
26 uint32x4_t test_vaddw_high_u16(uint32x4_t lhs, uint16x8_t rhs) { argument
28 return vaddw_high_u16(lhs, rh
31 test_vaddw_high_u32(uint64x2_t lhs, uint32x4_t rhs) argument
36 test_vsubw_high_s8(int16x8_t lhs, int8x16_t rhs) argument
41 test_vsubw_high_s16(int32x4_t lhs, int16x8_t rhs) argument
46 test_vsubw_high_s32(int64x2_t lhs, int32x4_t rhs) argument
51 test_vsubw_high_u8(uint16x8_t lhs, uint8x16_t rhs) argument
56 test_vsubw_high_u16(uint32x4_t lhs, uint16x8_t rhs) argument
61 test_vsubw_high_u32(uint64x2_t lhs, uint32x4_t rhs) argument
66 test_vabdl_high_s8(int8x16_t lhs, int8x16_t rhs) argument
71 test_vabdl_high_s16(int16x8_t lhs, int16x8_t rhs) argument
76 test_vabdl_high_s32(int32x4_t lhs, int32x4_t rhs) argument
81 test_vabdl_high_u8(uint8x16_t lhs, uint8x16_t rhs) argument
86 test_vabdl_high_u16(uint16x8_t lhs, uint16x8_t rhs) argument
91 test_vabdl_high_u32(uint32x4_t lhs, uint32x4_t rhs) argument
96 test_vabal_high_s8(int16x8_t accum, int8x16_t lhs, int8x16_t rhs) argument
101 test_vabal_high_s16(int32x4_t accum, int16x8_t lhs, int16x8_t rhs) argument
106 test_vabal_high_s32(int64x2_t accum, int32x4_t lhs, int32x4_t rhs) argument
111 test_vabal_high_u8(uint16x8_t accum, uint8x16_t lhs, uint8x16_t rhs) argument
116 test_vabal_high_u16(uint32x4_t accum, uint16x8_t lhs, uint16x8_t rhs) argument
121 test_vabal_high_u32(uint64x2_t accum, uint32x4_t lhs, uint32x4_t rhs) argument
126 test_vqdmlal_high_s16(int32x4_t accum, int16x8_t lhs, int16x8_t rhs) argument
131 test_vqdmlal_high_s32(int64x2_t accum, int32x4_t lhs, int32x4_t rhs) argument
136 test_vqdmlsl_high_s16(int32x4_t accum, int16x8_t lhs, int16x8_t rhs) argument
141 test_vqdmlsl_high_s32(int64x2_t accum, int32x4_t lhs, int32x4_t rhs) argument
146 test_vqdmull_high_s16(int16x8_t lhs, int16x8_t rhs) argument
151 test_vqdmull_high_s32(int32x4_t lhs, int32x4_t rhs) argument
216 test_vsubl_high_s8(int8x16_t lhs, int8x16_t rhs) argument
221 test_vsubl_high_s16(int16x8_t lhs, int16x8_t rhs) argument
226 test_vsubl_high_s32(int32x4_t lhs, int32x4_t rhs) argument
231 test_vsubl_high_u8(uint8x16_t lhs, uint8x16_t rhs) argument
236 test_vsubl_high_u16(uint16x8_t lhs, uint16x8_t rhs) argument
241 test_vsubl_high_u32(uint32x4_t lhs, uint32x4_t rhs) argument
396 test_vaddhn_high_s16(int8x8_t lowpart, int16x8_t lhs, int16x8_t rhs) argument
401 test_vaddhn_high_s32(int16x4_t lowpart, int32x4_t lhs, int32x4_t rhs) argument
406 test_vaddhn_high_s64(int32x2_t lowpart, int64x2_t lhs, int64x2_t rhs) argument
411 test_vaddhn_high_u16(uint8x8_t lowpart, uint16x8_t lhs, uint16x8_t rhs) argument
416 test_vaddhn_high_u32(uint16x4_t lowpart, uint32x4_t lhs, uint32x4_t rhs) argument
421 test_vaddhn_high_u64(uint32x2_t lowpart, uint64x2_t lhs, uint64x2_t rhs) argument
426 test_vraddhn_high_s16(int8x8_t lowpart, int16x8_t lhs, int16x8_t rhs) argument
431 test_vraddhn_high_s32(int16x4_t lowpart, int32x4_t lhs, int32x4_t rhs) argument
436 test_vraddhn_high_s64(int32x2_t lowpart, int64x2_t lhs, int64x2_t rhs) argument
441 test_vraddhn_high_u16(uint8x8_t lowpart, uint16x8_t lhs, uint16x8_t rhs) argument
446 test_vraddhn_high_u32(uint16x4_t lowpart, uint32x4_t lhs, uint32x4_t rhs) argument
451 test_vraddhn_high_u64(uint32x2_t lowpart, uint64x2_t lhs, uint64x2_t rhs) argument
[all...]
/external/chromium_org/base/i18n/
H A Dstring_compare.cc16 const string16& lhs,
21 static_cast<const UChar*>(lhs.c_str()), static_cast<int>(lhs.length()),
15 CompareString16WithCollator(const icu::Collator* collator, const string16& lhs, const string16& rhs) argument
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DSourceLocation.h35 inline bool operator==(const SourceLocation &lhs, const SourceLocation &rhs) argument
37 return lhs.equals(rhs);
40 inline bool operator!=(const SourceLocation &lhs, const SourceLocation &rhs) argument
42 return !lhs.equals(rhs);
/external/lldb/source/Target/
H A DStackID.cpp42 lldb_private::operator== (const StackID& lhs, const StackID& rhs) argument
44 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
47 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope();
52 return lhs.GetPC() == rhs.GetPC();
58 lldb_private::operator!= (const StackID& lhs, const StackID& rhs) argument
60 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
63 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope();
67 return lhs.GetPC() != rhs.GetPC();
73 lldb_private::operator< (const StackID& lhs, const StackID& rhs) argument
75 const lldb::addr_t lhs_cfa = lhs
[all...]
/external/ceres-solver/internal/ceres/
H A Dlapack.h45 // lhs * solution = rhs
48 // lhs is a symmetric positive definite matrix. It is assumed to be
59 const double* lhs,
64 // computation. This function given the size of the lhs matrix will
70 // lhs * solution = rhs
72 // using a dense QR factorization. lhs is an arbitrary (possibly
90 const double* lhs,
/external/chromium_org/cc/input/
H A Dlayer_selection_bound.h25 bool operator==(const LayerSelectionBound& lhs, const LayerSelectionBound& rhs);
26 bool operator!=(const LayerSelectionBound& lhs, const LayerSelectionBound& rhs);
/external/chromium_org/cc/output/
H A Dviewport_selection_bound.h25 CC_EXPORT bool operator==(const ViewportSelectionBound& lhs,
27 CC_EXPORT bool operator!=(const ViewportSelectionBound& lhs,
/external/chromium_org/components/history/core/browser/
H A Dpage_usage_data.cc18 bool PageUsageData::Predicate(const PageUsageData* lhs, argument
20 return lhs->GetScore() > rhs->GetScore();
/external/chromium_org/third_party/icu/source/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/chromium_org/ui/compositor/test/
H A Dtest_utils.h15 void CheckApproximatelyEqual(const gfx::Transform& lhs,
17 void CheckApproximatelyEqual(const gfx::Rect& lhs, const gfx::Rect& rhs);
/external/chromium_org/v8/test/mjsunit/
H A Dbinary-op-newspace.js54 var lhs = 17.42;
57 assertEquals(59.59, g(lhs, rhs));
/external/clang/test/Sema/
H A Darm64-neon-args.c12 float32x4_t test_vmlsq_lane(float32x4_t accum, float32x4_t lhs, float32x2_t rhs) { argument
13 return vmlsq_lane_f32(accum, lhs, rhs, 1);

Completed in 1266 milliseconds

1234567891011>>