HomeSort by relevance Sort by last modified time
    Searched refs:big (Results 1 - 25 of 40) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalTest.java 34 BigDecimal big = new BigDecimal(123E04); local
37 big.toString().equals("1230000"));
38 big = new BigDecimal(123.375);
39 assertTrue("init(D) failed for 123.375; became " + big,
40 big.toString().equals("123.375") );
41 big = new BigDecimal(Math.pow(2, -33));
42 assertTrue("init(D) failed for 2^(-33) = 1.16415321826934814453125E-10; became " + big,
43 big.toString().equals("1.16415321826934814453125E-10") );
44 big = new BigDecimal(123456 * Math.pow(2, -33));
45 assertTrue("init(D) failed for 123456 * 2^(-33) = 0.000014372169971466064453125; became " + big,
    [all...]
OldBigDecimalConstructorsTest.java 720 BigDecimal big = new BigDecimal(value); local
722 big.unscaledValue().equals(value)
723 && big.scale() == 0);
738 BigDecimal big = new BigDecimal(123E04); local
766 BigDecimal big = new BigDecimal("345.23499600293850"); local
    [all...]
  /external/srec/srec/clib/
matrix_i.c 105 double big, dumm, sum, temp; local
112 big = 0;
114 if ((temp = (double) fabs(mat[ii][jj])) > big) big = temp;
115 if (big <= SIGNIFICANT)
120 vv[ii] = 1 / big;
133 big = 0;
140 if ((dumm = (double)(vv[ii] * fabs(sum))) >= big)
142 big = dumm;
  /external/v8/test/mjsunit/
html-string-funcs.js 34 var simple = { big: 'big', blink: 'blink', bold: 'b',
function-names.js 119 "fontsize", "big", "blink", "bold", "fixed", "italics", "small",
undeletable-functions.js 99 "big", "blink", "bold", "fixed", "italics", "small", "strike", "sub", "sup",
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-76054.js 46 status = 'big()';
47 actual = s.big();
  /frameworks/base/tools/localize/
localize_test.cpp 167 test_one_pseudo(bool big, const char* expected)
178 pseudolocalize_xliff(xliff, big);
localize.cpp 591 " --big Pad strings so they get longer.\n"
702 bool big = false; local
706 if (0 == strcmp("--big", argv[index])) {
707 big = true;
732 return do_pseudo(infile, outfile, big);
  /external/webkit/WebCore/css/
wml.css 218 big {
html.css 557 big {
  /external/svox/pico/lib/
picocep.c 511 picoos_int32 big; local
516 big = 1 << (pow - 1);
518 a = (a + big) >> pow;
520 a = -1 * ((-1 * a + big) >> pow);
540 picoos_int32 big; local
542 big = 1 << bigpow;
544 /* a = floor(x/big); */
553 /* least significant 2 bytes of x i.e. x modulo big */
554 /* c = floor(y/big); */
586 * - N : number of binary decimal digits (N=log2(big))
    [all...]
  /external/chromium/third_party/icu/source/test/testdata/
testdata.mak 23 # icu26e_testtypes.res is the same, but icuswapped to big-endian EBCDIC
  /external/guava/src/com/google/common/primitives/
generate.sh 290 * Returns a big-endian representation of {@code value} in a ?-element byte
308 * Returns the {@code primtyp} value whose big-endian representation is
  /external/freetype/src/sfnt/
ttsbit0.c 318 FT_Bool big )
334 if ( big )
851 case 2: /* big metrics, constant image size */
  /external/icu4c/test/testdata/
testdata.mak 24 # old_e_testtypes.res is the same, but icuswapped to big-endian EBCDIC
  /build/core/tasks/
cts.mk 139 # Please see big comment above on why this line depends on javalib.jar instead of classes.jar
  /external/elfutils/
elfutils.spec 221 - upgrade to 0.82 (strip tests fixed on big-endian).
  /external/v8/src/
string.js 772 return "<big>" + this + "</big>";
899 "big", StringBig,
runtime.js 430 // big enough, but sanity check the value to avoid overflow when
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 1743 int big, denorm, esign, havedig, k, n, nbits, up, zret; variable
    [all...]
  /external/clearsilver/
config.guess 780 big) echo mips-unknown-linux-gnu && exit 0 ;;
    [all...]
  /external/zlib/contrib/masmx86/
gvmat32.asm 488 ; now we restore edx, ecx and esi, for the big loop
509 ; now we restore ecx and esi, for the big loop :
  /external/protobuf/gtest/test/
gtest_unittest.cc 733 scoped_ptr<Vector<int> > big(a.Clone());
734 ASSERT_EQ(3, big->size());
735 EXPECT_EQ(42, big->GetElement(0));
736 EXPECT_EQ(43, big->GetElement(1));
737 EXPECT_EQ(44, big->GetElement(2));
    [all...]
  /external/chromium/third_party/icu/source/data/
makedata.mak 169 # Does a big endian version exist either?

Completed in 2404 milliseconds

1 2