HomeSort by relevance Sort by last modified time
    Searched defs:big (Results 26 - 45 of 45) sorted by null

12

  /external/chromium_org/third_party/tcmalloc/vendor/src/
common.h 103 // want this big to avoid locking the central free-list too often. It
104 // should not hurt to make this list somewhat big because the
140 // it too big may temporarily cause unnecessary memory wastage in the
175 const bool big = (s > kMaxSmallSize); local
176 const int add_amount = big ? (127 + (120<<7)) : 7;
177 const int shift_amount = big ? 7 : 3;
219 // it too big may temporarily cause unnecessary memory wastage in the
  /external/clang/test/CodeGen/
atomic-ops.c 231 // Tests for atomic operations on big values. These should call the functions
236 int big[128]; member in struct:foo
283 g.big[12] = 12;
  /external/clang/test/CodeGenCXX/
x86_64-arguments.cpp 142 char big[17]; member in class:test8::A
  /external/llvm/include/llvm/Support/
Endian.h 24 enum endianness {big, little, native}; enumerator in enum:llvm::support::endianness
40 if (endian != native && sys::IsBigEndianHost != (endian == big))
128 <uint8_t, big, unaligned> ubig8_t;
130 <uint16_t, big, unaligned> ubig16_t;
132 <uint32_t, big, unaligned> ubig32_t;
134 <uint64_t, big, unaligned> ubig64_t;
137 <int8_t, big, unaligned> big8_t;
139 <int16_t, big, unaligned> big16_t;
141 <int32_t, big, unaligned> big32_t;
143 <int64_t, big, unaligned> big64_t
    [all...]
  /external/skia/gm/
aaclip.cpp 67 SkScalar big = 500 * 1000; local
69 canvas->drawLine(10, 10, big, 10, paint);
70 canvas->drawLine(-big, 20, 500, 20, paint);
71 canvas->drawLine(-big, 30, big, 30, paint);
  /libcore/luni/src/test/java/libcore/java/math/
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/skia/bench/
MathBench.cpp 13 // float big = sk_fsel(x, 0x1.0p+23, -0x1.0p+23);
14 float big = sk_fsel(x, (float)(1 << 23), -(float)(1 << 23)); local
15 return (x + big) - big;
  /frameworks/base/core/java/android/app/
Notification.java 453 public static final String EXTRA_TITLE_BIG = EXTRA_TITLE + ".big";
499 public static final String EXTRA_LARGE_ICON_BIG = EXTRA_LARGE_ICON + ".big";
1730 RemoteViews big = applyStandardTemplate(layoutId, false); local
    [all...]
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 748 char big[256]; local
750 streamIndex, &big);
763 XATimedTextStreamInformation big; local
765 streamIndex, &big);
    [all...]
  /external/skia/tests/
MathTest.cpp 41 // float big = sk_fsel(x, 0x1.0p+23, -0x1.0p+23);
42 float big = sk_fsel(x, (float)(1 << 23), -(float)(1 << 23)); local
43 return (float)(x + big) - big;
339 float big = 3.40282e+038f; local
347 SkFixed big = SK_FixedMax;
351 REPORTER_ASSERT(reporter, !SkScalarIsNaN(big));
352 REPORTER_ASSERT(reporter, !SkScalarIsNaN(-big));
356 REPORTER_ASSERT(reporter, SkScalarIsFinite(big));
357 REPORTER_ASSERT(reporter, SkScalarIsFinite(-big));
    [all...]