HomeSort by relevance Sort by last modified time
    Searched refs:lengthSquared (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/angle/samples/angle/sample_util/
Vector.h 25 static float lengthSquared(const Vector2 &vec);
45 static float lengthSquared(const Vector3 &vec);
75 static float lengthSquared(const Vector4 &vec);
Vector.cpp 25 float lenSquared = lengthSquared(vec);
29 float Vector2::lengthSquared(const Vector2 &vec)
64 float lenSquared = lengthSquared(vec);
68 float Vector3::lengthSquared(const Vector3 &vec)
163 float lenSquared = lengthSquared(vec);
167 float Vector4::lengthSquared(const Vector4 &vec)
  /external/chromium_org/third_party/skia/tests/
PathOpsDVectorTest.cpp 43 double lenSq = v1.lengthSquared();
  /external/skia/tests/
PathOpsDVectorTest.cpp 43 double lenSq = v1.lengthSquared();
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint3D.h 121 float lengthSquared() const { return this->dot(*this); }
122 float length() const { return sqrtf(lengthSquared()); }
FloatPoint.cpp 72 return sqrtf(lengthSquared());
FloatPoint.h 116 float lengthSquared() const
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
RotateTransformOperation.cpp 69 double fromSquared = fromAxis.lengthSquared();
70 double toSquared = toAxis.lengthSquared();
  /external/chromium_org/third_party/skia/src/core/
SkPoint.cpp 97 // *lengthSquared. Returns true if the distance is judged to be "nearly zero".
103 float *lengthSquared) {
104 *lengthSquared = getLengthSquared(dx, dy);
105 return *lengthSquared <= (SK_ScalarNearlyZero * SK_ScalarNearlyZero);
  /external/skia/src/core/
SkPoint.cpp 96 // *lengthSquared. Returns true if the distance is judged to be "nearly zero".
102 float *lengthSquared) {
103 *lengthSquared = getLengthSquared(dx, dy);
104 return *lengthSquared <= (SK_ScalarNearlyZero * SK_ScalarNearlyZero);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsPoint.h 69 return sqrt(lengthSquared());
72 double lengthSquared() const {
202 return temp.lengthSquared();
SkOpAngle.cpp 390 double lenSq = v.lengthSquared();
473 if (cept.lengthSquared() * 2 < total.lengthSquared()) {
    [all...]
  /external/skia/src/pathops/
SkPathOpsPoint.h 69 return sqrt(lengthSquared());
72 double lengthSquared() const {
202 return temp.lengthSquared();
SkOpAngle.cpp 393 double lenSq = v.lengthSquared();
476 if (cept.lengthSquared() * 2 < total.lengthSquared()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGPath.cpp 119 if (radiusVector.lengthSquared() < strokeWidth * strokeWidth * .25f)
  /frameworks/base/libs/hwui/
Vector.h 32 float lengthSquared() const {
ShadowTessellator.cpp 258 if (vector1.lengthSquared() == 0 || vector2.lengthSquared() == 0) {
SpotShadow.cpp 660 float currentLengthSquared = (pivot - polygon[currentIndex]).lengthSquared();
727 (currentPenumbraVertex - umbra[previousClosestUmbraIndex]).lengthSquared();
732 float newLengthSquared = (currentPenumbraVertex - umbra[newUmbraIndex]).lengthSquared();
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
DataTypes.h 242 return sqrt(lengthSquared());
245 double lengthSquared() const {
326 return temp.lengthSquared();
  /external/skia/experimental/Intersection/
DataTypes.h 242 return sqrt(lengthSquared());
245 double lengthSquared() const {
326 return temp.lengthSquared();
  /external/deqp/framework/referencerenderer/
rrRasterizer.cpp 218 return 2 * dotProduct * dotProduct > tcu::lengthSquared(v)*tcu::lengthSquared(cornerExitNormal);
231 return 2 * (-dotProduct) * (-dotProduct) < tcu::lengthSquared(v)*tcu::lengthSquared(cornerExitNormal);
    [all...]
  /external/deqp/framework/common/
tcuVectorUtil.hpp 142 inline T lengthSquared (const Vector<T, Size>& a)
153 return ::sqrt(lengthSquared(a));
  /external/deqp/modules/glshared/
glsRasterizationTestUtil.cpp 123 if (crossProduct * crossProduct > maxPixelDistanceSquared * tcu::lengthSquared(line))
458 // Assuming lengthSquared will not be implemented as sqrt(x)^2, allow 1 ULP
459 const float divisor = tcu::lengthSquared(nd1 - nd0);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fClippingTests.cpp 359 const deInt64 normalLen2 = tcu::lengthSquared(normalDir);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fClippingTests.cpp 362 const deInt64 normalLen2 = tcu::lengthSquared(normalDir);
    [all...]

Completed in 2901 milliseconds