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

  /external/pdfium/third_party/bigint/
BigUnsignedInABase.cc 55 // Get last digit. This is like `lastDigit = x2 % buBase, x2 /= buBase'.
56 BigUnsigned lastDigit(x2);
57 lastDigit.divideWithRemainder(buBase, x2);
59 blk[digitNum] = lastDigit.toUnsignedShort();
  /external/skia/src/gpu/gl/
GrGLUtil.cpp 207 int lastDigit;
208 int n = sscanf(rendererString, "PowerVR SGX 54%d", &lastDigit);
209 if (1 == n && lastDigit >= 0 && lastDigit <= 9) {
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Evaluator.java 531 * @param lastDigit Position of least significant digit (1 = tenths digit)
534 int getPreferredPrec(String cache, int msd, int lastDigit) {
539 if (lastDigit == 0) lastDigit = -1;
540 if (lastDigit != Integer.MAX_VALUE) {
541 if (wholeSize <= lineLength && lastDigit <= 0) {
545 if (lastDigit >= 0 && wholeSize + lastDigit + 1 /* dec.pt. */ <= lineLength) {
547 return lastDigit;
    [all...]

Completed in 112 milliseconds