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

  /libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java 125 FDBigInteger pow5 = new FDBigInteger(new int[]{SMALL_5_POW[i]}, 0); external variable declarations
126 pow5.makeImmutable();
127 POW_5_CACHE[i] = pow5;
255 int pow5 = SMALL_5_POW[p5]; local
259 return new FDBigInteger(new int[]{pow5}, wordcount);
262 pow5 << bitcount,
263 pow5 >>> (32 - bitcount)
297 long pow5 = SMALL_5_POW[p5] & LONG_MASK; local
298 long carry = (v0 & LONG_MASK) * pow5;
301 carry = (v1 & LONG_MASK) * pow5 + carry
315 FDBigInteger pow5 = big5pow(p5); local
721 FDBigInteger pow5 = big5pow(p5); local
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
floatconv.go 141 z.Quo(z, p.pow5(uint64(-exp5)))
143 z.Mul(z, p.pow5(uint64(exp5)))
186 // pow5 sets z to 5**n and returns z.
188 func (z *Float) pow5(n uint64) *Float { func
  /prebuilts/go/linux-x86/src/math/big/
floatconv.go 141 z.Quo(z, p.pow5(uint64(-exp5)))
143 z.Mul(z, p.pow5(uint64(exp5)))
186 // pow5 sets z to 5**n and returns z.
188 func (z *Float) pow5(n uint64) *Float { func
  /external/swiftshader/third_party/LLVM/lib/Support/
APFloat.cpp 475 integerPart scratch[maxPowerOfFiveParts], *p1, *p2, *pow5;
486 pow5 = pow5s;
496 APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc);
498 if (pow5[pc - 1] == 0)
506 APInt::tcFullMultiply(p2, p1, pow5, result, pc);
516 pow5 += pc;
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 467 integerPart scratch[maxPowerOfFiveParts], *p1, *p2, *pow5;
478 pow5 = pow5s;
488 APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc);
490 if (pow5[pc - 1] == 0)
498 APInt::tcFullMultiply(p2, p1, pow5, result, pc);
510 pow5 += pc;
    [all...]
  /external/bison/lib/
vasnprintf.c 1082 mpn_t pow5; local
    [all...]

Completed in 436 milliseconds