Searched refs:rhs (Results 1 – 7 of 7) sorted by relevance
/tools/test/graphicsbenchmark/apps/sample_app/src/cpp/ |
D | vecmath.h | 77 Vec2 operator*(const Vec2& rhs) const { 79 ret.x_ = x_ * rhs.x_; 80 ret.y_ = y_ * rhs.y_; 84 Vec2 operator/(const Vec2& rhs) const { 86 ret.x_ = x_ / rhs.x_; 87 ret.y_ = y_ / rhs.y_; 91 Vec2 operator+(const Vec2& rhs) const { 93 ret.x_ = x_ + rhs.x_; 94 ret.y_ = y_ + rhs.y_; 98 Vec2 operator-(const Vec2& rhs) const { [all …]
|
D | vecmath.cpp | 40 Vec4 Vec4::operator*(const Mat4& rhs) const { in operator *() 42 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3]; in operator *() 43 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7]; in operator *() 44 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11]; in operator *() 46 x_ * rhs.f_[12] + y_ * rhs.f_[13] + z_ * rhs.f_[14] + w_ * rhs.f_[15]; in operator *() 63 Mat4 Mat4::operator*(const Mat4& rhs) const { in operator *() 65 ret.f_[0] = f_[0] * rhs.f_[0] + f_[4] * rhs.f_[1] + f_[8] * rhs.f_[2] + in operator *() 66 f_[12] * rhs.f_[3]; in operator *() 67 ret.f_[1] = f_[1] * rhs.f_[0] + f_[5] * rhs.f_[1] + f_[9] * rhs.f_[2] + in operator *() 68 f_[13] * rhs.f_[3]; in operator *() [all …]
|
/tools/dexter/slicer/export/slicer/ |
D | common.h | 30 void _checkFailedOp(const void* lhs, const void* rhs, const char* op, const char* suffix, 33 void _checkFailedOp(uint32_t lhs, uint32_t rhs, const char* op, const char* suffix, int line, 37 #define SLICER_CHECK_OP(lhs, rhs, op, suffix) \ argument 39 if (!((lhs) op (rhs))) { \ 40 slicer::_checkFailedOp(lhs, rhs, #op, suffix, __LINE__, __FILE__); \
|
/tools/dexter/slicer/ |
D | common.cc | 50 void _checkFailedOp(const void* lhs, const void* rhs, const char* op, const char* suffix, int line, in _checkFailedOp() argument 54 ss << lhs << " " << op << " " << rhs; in _checkFailedOp() 60 void _checkFailedOp(uint32_t lhs, uint32_t rhs, const char* op, const char* suffix, int line, in _checkFailedOp() argument 64 ss << lhs << " " << op << " " << rhs; in _checkFailedOp()
|
/tools/security/remote_provisioning/hwtrust/src/ |
D | publickey.rs | 110 fn eq(&self, rhs: &PKeyPublicWrapper) -> bool { in eq() 111 self.0.public_eq(&rhs.0) in eq()
|
/tools/repohooks/tools/ |
D | cpplint.py | 4666 rhs = '' 4695 rhs = matched.group(2) 4712 if not (lhs and operator and rhs): 4717 if rhs.find('&&') > -1 or rhs.find('||') > -1: 4727 rhs = rhs.strip() 4729 if Match(match_constant, lhs) or Match(match_constant, rhs):
|
/tools/dexter/testdata/expected/ |
D | medium.compact_cfg | 79959 .local v26, "rhs", com.android.calendar.Utils$DNASegment 154013 .local v7, "rhs", java.lang.String 158762 .params "lhs", "rhs" 158885 .local_ex v3, "rhs", java.lang.Object, "TT;"
|