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

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShapeDrawable1.java 117 MyShapeDrawable msd = (MyShapeDrawable)mDrawables[6]; local
118 msd.getStrokePaint().setStrokeWidth(4);
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 456 BN_ULONG msd = d[i]; // most significant digit local
459 // i.e. decrement the msd if all other digits are 0:
462 if (i < 0) msd--; // Only if all lower significant digits are 0 we decrement the most significant one.
464 return (wLen - 1) * sizeof(BN_ULONG) * 8 + BN_num_bits_word(msd);
  /external/icu/icu4c/source/i18n/
decNumberLocal.h 280 uByte *msd; /* -> most significant digit */ member in struct:__anon9991
318 extern const uInt DECCOMBMSD[64]; /* Combination field -> MSD */
319 extern const uInt DECCOMBFROM[48]; /* exp+msd -> Combination */
343 /* MSD=0 or 1 */
346 /* (most likely to be non-zero); the penultimate tests MSD and */
348 /* MSD>7. DFISINT similarly has to allow for the two forms of */
349 /* MSD codes. DFISUINT01 only has to allow for one form of MSD */
430 /* Macros and masks for the exponent continuation field and MSD */
439 /* Get the MSD similarly (as uInt) *
    [all...]
  /external/bison/lib/
vasnprintf.c 554 mp_limb_t msd = b_ptr[b_len - 1]; /* = b[n-1], > 0 */ local
555 /* Determine s = GMP_LIMB_BITS - integer_length (msd).
558 s = __builtin_clz (msd);
572 m.value = msd;
583 if (msd >= 0x10000)
585 msd = msd >> 16;
588 if (msd >= 0x100)
590 msd = msd >> 8
    [all...]
  /external/crcalc/src/com/hp/creals/
CR.java 358 // Return the position of the msd.
359 // If x.msd() == n then
363 // that the msd is determined.
378 int msd(int n) { method in class:CR
384 // msd could still be arbitrarily far to the right.
399 int msd = msd(prec); local
400 if (msd != Integer.MIN_VALUE) return msd;
404 return msd(n)
410 int msd() { method in class:CR
643 int msd = iter_msd(msd_prec - 2); local
1155 int msd = op.msd(); local
1462 int msd = op.msd(max_prec_needed); local
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Evaluator.java 166 // holding the msd.
400 int msd = getMsdPos(initCache); local
402 && msd == INVALID_MSD) {
405 msd = getMsdPos(initCache);
408 int initDisplayPrec = getPreferredPrec(initCache, msd, lsd);
461 int msd = getMsdPos(mCache); local
463 int new_init_prec = getPreferredPrec(mCache, msd, leastDigPos);
471 mCalculator.onEvaluate(init_prec, msd, leastDigPos, truncatedWholePart);
529 * @param msd Position of most significant digit in result. Index in cache.
534 int getPreferredPrec(String cache, int msd, int lastDigit)
    [all...]

Completed in 620 milliseconds