OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
460
BN_ULONG
msd
= d[i]; // most significant digit
local
463
// i.e. decrement the
msd
if all other digits are 0:
466
if (i < 0)
msd
--; // Only if all lower significant digits are 0 we decrement the most significant one.
468
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:__anon12779
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
172
// the index in mResultString holding the
msd
.
354
int
msd
= getMsdIndexOf(initResult);
local
356
&&
msd
== INVALID_MSD) {
359
msd
= getMsdIndexOf(initResult);
363
final int initDisplayOffset = getPreferredPrec(initResult,
msd
, lsdOffset);
573
* @param
msd
Position of most significant digit in result. Index in cache.
578
private int getPreferredPrec(String cache, int
msd
, int lastDigitOffset) {
597
if (
msd
> wholeSize &&
msd
<= wholeSize + EXP_COST + 1) {
598
// Display number without scientific notation. Treat leading zero as
msd
[
all
...]
Completed in 2216 milliseconds