HomeSort by relevance Sort by last modified time
    Searched defs:msd (Results 1 - 4 of 4) 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 391 BN_ULONG msd = d[i]; // most significant digit local
394 // i.e. decrement the msd if all other digits are 0:
397 if (i < 0) msd--; // Only if all lower significant digits are 0 we decrement the most significant one.
399 return (intLen - 1) * 32 + BN_num_bits_word(msd);
  /external/icu4c/i18n/
decNumberLocal.h 280 uByte *msd; /* -> most significant digit */ member in struct:__anon8658
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...]

Completed in 103 milliseconds