Searched defs:exp (Results 1 - 5 of 5) sorted by relevance

/packages/apps/ExactCalculator/src/com/android/calculator2/
H A DBoundedRational.java380 private BoundedRational pow(BigInteger exp) { argument
381 if (exp.compareTo(BigInteger.ZERO) < 0) {
382 return inverse(pow(exp.negate()));
384 if (exp.equals(BigInteger.ONE)) return this;
385 if (exp.and(BigInteger.ONE).intValue() == 1) {
386 return multiply(pow(exp.subtract(BigInteger.ONE)), this);
388 if (exp.equals(BigInteger.ZERO)) {
391 BoundedRational tmp = pow(exp.shiftRight(1));
398 public static BoundedRational pow(BoundedRational base, BoundedRational exp) { argument
399 if (exp
416 public static BoundedRational exp(BoundedRational r) { method in class:BoundedRational
[all...]
H A DCalculatorResult.java211 private final int expLen(int exp) { argument
212 if (exp == 0) return 0;
213 final int abs_exp_digits = (int) Math.ceil(Math.log10(Math.abs((double)exp))
215 return abs_exp_digits + (exp >= 0 ? 1 : 2);
398 // Original exp was correct for decimal point at right of fraction.
H A DCalculatorExpr.java162 void addExponent(int exp) { argument
164 mExponent = exp;
468 void addExponent(int exp) { argument
470 ((Constant) lastTok).addExponent(exp);
732 ratVal = BoundedRational.exp(argVal.mRatVal);
734 return new EvalRet(argVal.mPos, argVal.mVal.exp(), null);
783 private static CR pow(CR base, BigInteger exp) { argument
784 if (exp.compareTo(BigInteger.ZERO) < 0) {
785 return pow(base, exp.negate()).inverse();
787 if (exp
[all...]
/packages/apps/Calculator/
H A Darity-2.1.2.jar ... log () public final org.javia.arity.Complex exp () public final org.javia.arity.Complex square ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 151 milliseconds