Home
last modified time | relevance | path

Searched refs:y_ (Results 1 – 2 of 2) sorted by relevance

/development/ndk/sources/android/ndk_helper/
Dvecmath.h47 float y_; variable
57 x_ = y_ = 0.f; in Vec2()
63 y_ = fY; in Vec2()
69 y_ = vec.y_; in Vec2()
75 y_ = (*pVec++); in Vec2()
83 ret.y_ = y_ * rhs.y_;
91 ret.y_ = y_ / rhs.y_;
99 ret.y_ = y_ + rhs.y_;
107 ret.y_ = y_ - rhs.y_;
114 y_ += rhs.y_;
[all …]
Dvecmath.cpp31 y_ = vec.y_; in Vec3()
41 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3]; in operator *()
42 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7]; in operator *()
43 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11]; in operator *()
44 out.w_ = x_ * rhs.f_[12] + y_ * rhs.f_[13] + z_ * rhs.f_[14] + w_ * rhs.f_[15]; in operator *()
108 ret.x_ = rhs.x_ * f_[0] + rhs.y_ * f_[4] + rhs.z_ * f_[8] + rhs.w_ * f_[12]; in operator *()
109 ret.y_ = rhs.x_ * f_[1] + rhs.y_ * f_[5] + rhs.z_ * f_[9] + rhs.w_ * f_[13]; in operator *()
110 ret.z_ = rhs.x_ * f_[2] + rhs.y_ * f_[6] + rhs.z_ * f_[10] + rhs.w_ * f_[14]; in operator *()
111 ret.w_ = rhs.x_ * f_[3] + rhs.y_ * f_[7] + rhs.z_ * f_[11] + rhs.w_ * f_[15]; in operator *()
304 ret.f_[13] = vec.y_; in Translation()
[all …]