Home
last modified time | relevance | path

Searched refs:cross (Results 1 – 25 of 209) sorted by relevance

123456789

/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
DViewMatrix.java208 VectorUtil.cross(a, b, out); in calcRight()
284 VectorUtil.cross(zv, rv, up); in look()
285 VectorUtil.cross(zv, up, rv); in look()
286 VectorUtil.cross(zv, rv, up); in look()
304 VectorUtil.cross(zv, rv, up); in lookAt()
305 VectorUtil.cross(zv, up, rv); in lookAt()
306 VectorUtil.cross(zv, rv, up); in lookAt()
DQuaternion.java37 private static double[] cross(double[] a, double[] b) { in cross() method in Quaternion
56 double[] axis = normal(cross(vec1, vec2)); in set()
70 return normal(cross(vec1, vec2)); in calcAxis()
DVectorUtil.java43 public static void cross(double[] a, double[] b, double[] out) { in cross() method in VectorUtil
Dbugdroid.rscript32 return length(cross(img - p1, img - p2)) / length(p2 - p1);
52 return length(cross(img - p1, img - p2)) / length(p2 - p1);
/frameworks/native/services/surfaceflinger/Effects/
DDaltonizer.cpp104 const vec3 p0 = cross(lms_w, lms_b); // protanopia/deuteranopia in update()
105 const vec3 p1 = cross(lms_w, lms_r); // tritanopia in update()
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
Dnbody.rscript44 v.xyz = cross(point.xyz, v.xyz);
80 right = normalize(cross(normv, up));
81 up = normalize(cross(normv, right));
/frameworks/base/services/tests/servicestests/src/com/android/server/
DVector3Test.java119 AnyMotionDetector.Vector3 xCrossX = unitXAxis.cross(unitXAxis);
124 AnyMotionDetector.Vector3 xCrossNx = unitXAxis.cross(unitXAxis.times(-1));
129 AnyMotionDetector.Vector3 cross2 = case2A.cross(case2B);
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/pip/
DPipPinchResizingAlgorithm.java70 float angle = (float) Math.atan2(cross(mTmpDownVector, mTmpLastVector), in calculateBoundsAndAngle()
121 private float cross(PointF p1, PointF p2) { in cross() method in PipPinchResizingAlgorithm
/frameworks/native/libs/math/include/math/
Dmat3.h258 ret[2] = normalize(cross(ret[0], m[1])); in orthogonalize()
259 ret[1] = normalize(cross(ret[2], ret[0])); in orthogonalize()
413 ret[2] = normalize(cross(ret[0], m[1])); in orthogonalize()
414 ret[1] = normalize(cross(ret[2], ret[0])); in orthogonalize()
Dvec2.h101 constexpr value_type cross(const TVec2& u, const TVec2<RT>& v) { in cross() function
Dvec3.h104 constexpr TVec3 cross(const TVec3& u, const TVec3<RT>& v) { in cross() function
/frameworks/rs/script_api/
Drs_vector_math.spec37 function: cross
47 Computes the cross product of two vectors.
51 function: cross
/frameworks/rs/script_api/include/
Drs_vector_math.rsh42 * cross: Cross product of two vectors
44 * Computes the cross product of two vectors.
47 cross(float3 left_vector, float3 right_vector);
50 cross(float4 left_vector, float4 right_vector);
54 cross(half3 left_vector, half3 right_vector);
59 cross(half4 left_vector, half4 right_vector);
/frameworks/base/packages/SystemUI/aconfig/
DAndroid.bp19 * For shared, cross-process flags, see //frameworks/libs/systemui/aconfig
/frameworks/base/libs/hwui/
DVector.h91 float cross(const Vector2& v) const { return x * v.y - y * v.x; } in cross() function
/frameworks/proto_logging/stats/atoms/wearpas/
Dwearpas_extension_atoms.proto126 * Number of infrastructure errors encountered (e.g. storage, cross-app comms,
212 * Resource ID (cross-device) for standard Google stock apps/resources
/frameworks/base/core/java/android/companion/virtual/
Dflags.aconfig33 description: "Enable cross-device clipboard API"
/frameworks/av/media/audio/aconfig/
Daudio.aconfig1 # Audio flags intended for general consumption (cross-cutting), but NOT included in framework.
/frameworks/base/apex/jobscheduler/service/java/com/android/server/
DAnyMotionDetector.java415 Vector3 crossVector = cross(other); in angleBetween()
423 public Vector3 cross(Vector3 v) { in cross() method in AnyMotionDetector.Vector3
/frameworks/libs/systemui/toruslib/torus-math/src/main/java/com/google/android/torus/math/
DVector3.kt68 fun cross(firstVector: Vector3, secondVector: Vector3): Vector3 { in cross() method
/frameworks/base/services/core/java/com/android/server/notification/
Dflags.aconfig28 description: "This flag controls the cross-app effect of polite notifications"
/frameworks/base/core/java/android/util/
DMathUtils.java132 public static float cross(float v1x, float v1y, float v2x, float v2y) { in cross() method in MathUtils
/frameworks/opt/telephony/flags/
Ddata.aconfig140 …he DataCallSessionStats metrics will capture whether the IWLAN PDN is set up on cross-SIM calling."
/frameworks/base/graphics/java/android/graphics/
DColorSpace.java3669 private static float cross(float ax, float ay, float bx, float by) { in cross() method
3742 if (cross(p0[0], p0[1], p2[0] - p2[4], p2[1] - p2[5]) < 0 || in contains()
3743 cross(p2[0] - p2[2], p2[1] - p2[3], p0[0], p0[1]) < 0) { in contains()
3747 if (cross(p0[2], p0[3], p2[2] - p2[0], p2[3] - p2[1]) < 0 || in contains()
3748 cross(p2[2] - p2[4], p2[3] - p2[5], p0[2], p0[3]) < 0) { in contains()
3752 if (cross(p0[4], p0[5], p2[4] - p2[2], p2[5] - p2[3]) < 0 || in contains()
3753 cross(p2[4] - p2[0], p2[5] - p2[1], p0[4], p0[5]) < 0) { in contains()
/frameworks/base/services/core/java/com/android/server/pm/
DOWNERS25 # multi user / cross profile

123456789