Home | History | Annotate | Download | only in ndk_helper

Lines Matching defs:z_

252     float x_, y_, z_;
261 x_ = y_ = z_ = 0.f;
268 z_ = fZ;
275 z_ = vec.z_;
282 z_ = *pVec;
289 z_ = f;
300 ret.z_ = z_ * rhs.z_;
309 ret.z_ = z_ / rhs.z_;
318 ret.z_ = z_ + rhs.z_;
327 ret.z_ = z_ - rhs.z_;
335 z_ += rhs.z_;
343 z_ -= rhs.z_;
351 z_ *= rhs.z_;
359 z_ /= rhs.z_;
374 ret.z_ = lhs * rhs.z_;
383 ret.z_ = lhs / rhs.z_;
393 ret.z_ = z_ * rhs;
401 z_ = z_ * rhs;
410 ret.z_ = z_ / rhs;
418 z_ = z_ / rhs;
425 if( x_ != rhs.x_ || y_ != rhs.y_ || z_ != rhs.z_ )
440 return sqrtf( x_ * x_ + y_ * y_ + z_ * z_ );
448 z_ = z_ / len;
454 return x_ * rhs.x_ + y_ * rhs.y_ + z_ * rhs.z_;
460 ret.x_ = y_ * rhs.z_ - z_ * rhs.y_;
461 ret.y_ = z_ * rhs.x_ - x_ * rhs.z_;
462 ret.z_ = x_ * rhs.y_ - y_ * rhs.x_;
468 if( isnan( x_ ) || isnan( y_ ) || isnan( z_ ) )
477 fZ = z_;
482 LOGI( "Vec3 %f %f %f", x_, y_, z_ );
493 float x_, y_, z_, w_;
502 x_ = y_ = z_ = w_ = 0.f;
509 z_ = fZ;
517 z_ = vec.z_;
525 z_ = vec.z_;
533 z_ = *pVec;
543 ret.z_ = z_ * rhs.z_;
544 ret.w_ = z_ * rhs.w_;
553 ret.z_ = z_ / rhs.z_;
554 ret.w_ = z_ / rhs.w_;
563 ret.z_ = z_ + rhs.z_;
564 ret.w_ = z_ + rhs.w_;
573 ret.z_ = z_ - rhs.z_;
574 ret.w_ = z_ - rhs.w_;
582 z_ += rhs.z_;
591 z_ -= rhs.z_;
600 z_ *= rhs.z_;
609 z_ /= rhs.z_;
625 ret.z_ = lhs * rhs.z_;
635 ret.z_ = lhs / rhs.z_;
646 ret.z_ = z_ * rhs;
655 z_ = z_ * rhs;
665 ret.z_ = z_ / rhs;
674 z_ = z_ / rhs;
682 if( x_ != rhs.x_ || y_ != rhs.y_ || z_ != rhs.z_ || w_ != rhs.w_ )
699 return sqrtf( x_ * x_ + y_ * y_ + z_ * z_ + w_ * w_ );
707 z_ = z_ / len;
714 return x_ * rhs.x_ + y_ * rhs.y_ + z_ * rhs.z_;
720 ret.x_ = y_ * rhs.z_ - z_ * rhs.y_;
721 ret.y_ = z_ * rhs.x_ - x_ * rhs.z_;
722 ret.z_ = x_ * rhs.y_ - y_ * rhs.x_;
728 if( isnan( x_ ) || isnan( y_ ) || isnan( z_ ) || isnan( w_ ) )
737 fZ = z_;
964 float x_, y_, z_, w_;
975 z_ = 0.f;
983 z_ = fZ;
991 z_ = vec.z_;
999 z_ = *p++;
1006 ret.x_ = x_ * rhs.w_ + y_ * rhs.z_ - z_ * rhs.y_ + w_ * rhs.x_;
1007 ret.y_ = -x_ * rhs.z_ + y_ * rhs.w_ + z_ * rhs.x_ + w_ * rhs.y_;
1008 ret.z_ = x_ * rhs.y_ - y_ * rhs.x_ + z_ * rhs.w_ + w_ * rhs.z_;
1009 ret.w_ = -x_ * rhs.x_ - y_ * rhs.y_ - z_ * rhs.z_ + w_ * rhs.w_;
1016 ret.x_ = x_ * rhs.w_ + y_ * rhs.z_ - z_ * rhs.y_ + w_ * rhs.x_;
1017 ret.y_ = -x_ * rhs.z_ + y_ * rhs.w_ + z_ * rhs.x_ + w_ * rhs.y_;
1018 ret.z_ = x_ * rhs.y_ - y_ * rhs.x_ + z_ * rhs.w_ + w_ * rhs.z_;
1019 ret.w_ = -x_ * rhs.x_ - y_ * rhs.y_ - z_ * rhs.z_ + w_ * rhs.w_;
1028 z_ = -z_;
1038 ret.z_ = -z_;
1047 float z2 = z_ * z_ * 2.0f;
1049 float yz = y_ * z_ * 2.0f;
1050 float zx = z_ * x_ * 2.0f;
1053 float zw = z_ * w_ * 2.0f;
1073 float z2 = z_ * z_ * 2.0f;
1075 float yz = y_ * z_ * 2.0f;
1076 float zx = z_ * x_ * 2.0f;
1079 float zw = z_ * w_ * 2.0f;
1101 ret.z_ = s * axis.z_;
1110 fZ = z_;