Home
last modified time | relevance | path

Searched refs:prec (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libheadtracking/include/media/
DPose.h108 bool isApprox(const Pose3f& other, float prec = kDummyPrecision) const {
109 return (mTranslation - other.mTranslation).norm() < prec &&
111 ((mRotation.coeffs() - other.mRotation.coeffs()).norm() < prec ||
112 (mRotation.coeffs() + other.mRotation.coeffs()).norm() < prec);
DTwist.h54 float prec = Eigen::NumTraits<float>::dummy_precision()) const {
55 return mTranslationalVelocity.isApprox(other.mTranslationalVelocity, prec) &&
56 mRotationalVelocity.isApprox(other.mRotationalVelocity, prec);
/frameworks/base/apct-tests/perftests/core/src/android/libcore/
DBigIntegerPerfTest.java49 private static void inner(int n, int prec) { in inner() argument
50 BigInteger big = BigInteger.TEN.pow(prec).shiftLeft(30).add(BigInteger.ONE); in inner()
75 private static BigInteger harmonic1000(int prec) { in harmonic1000() argument
76 BigInteger scaledOne = BigInteger.TEN.pow(prec); in harmonic1000()
139 private static BigInteger eApprox(int n, int prec) { in eApprox() argument
140 BigInteger scaledOne = BigInteger.TEN.pow(prec); in eApprox()
/frameworks/rs/cpu_ref/
DrsCpuScript.cpp476 enum bcinfo::RSFloatPrecision prec = ME.getRSFloatPrecision(); in findCoreLib() local
477 if (prec == bcinfo::RS_FP_Relaxed) { in findCoreLib()
/frameworks/compile/mclinker/lib/Script/
DScriptParser.yy636 | '+' exp %prec UNARY_PLUS
642 | '-' exp %prec UNARY_MINUS