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

1 2 3 4 5 6 7 8 9

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_format.py 98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_format.py 98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890"
    [all...]
  /external/valgrind/main/memcheck/tests/
big_blocks_freed_list.c 2 /* To be run with --freelist-vol=1000000 --freelist-big-blocks=50000 */
10 char *big = NULL; local
16 /* Verify that access via a dangling pointer to a big block bigger than
19 big = malloc (1000015);
21 free(big);
22 if (big[1000] > 0x0) jumped();
26 by doing big alloc/free. */
31 but not for the big block, which has been removed from the free list
33 if (big[2000] > 0x0) jumped();
36 big = NULL
    [all...]
sbfragment.c 39 char *big = NULL; local
43 unsigned long bigsize = 8; // current size of the (reallocated) big block.
57 big = malloc (bigsize);
58 if (big == NULL)
62 printf("big 0x%p\n", big);
71 free (big);
72 big = newbig;
74 printf("big 0x%p\n", big);
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/string/
wcsstr.c 36 wcswcs(const wchar_t *big, const wchar_t *little)
38 wcsstr(const wchar_t *big, const wchar_t *little)
47 return (wchar_t *)big;
49 if (wcslen(big) < wcslen(little))
52 p = big;
  /external/guava/guava-tests/test/com/google/common/io/
LimitInputStreamTest.java 29 byte[] big = newPreFilledByteArray(5);
30 InputStream bin = new ByteArrayInputStream(big);
37 assertEquals(big[0], read);
40 assertEquals(big[1], read);
49 assertEquals(big[0], small[0]);
50 assertEquals(big[1], small[1]);
55 assertEquals(big[0], small[2]);
56 assertEquals(big[1], small[3]);
60 byte[] big = newPreFilledByteArray(5);
61 InputStream bin = new ByteArrayInputStream(big);
    [all...]
  /external/chromium_org/net/base/
int128_unittest.cc 17 uint128 big(2000, 2);
25 EXPECT_LT(one, big);
26 EXPECT_LT(one, big);
29 EXPECT_GT(big, one);
30 EXPECT_GE(big, two);
31 EXPECT_GE(big, big_minus_one);
32 EXPECT_GT(big, big_minus_one);
33 EXPECT_LT(big_minus_one, big);
34 EXPECT_LE(big_minus_one, big);
35 EXPECT_NE(big_minus_one, big);
    [all...]
  /external/clang/test/Sema/
aarch64-neon-ranges.c 6 void test_vext_8bit(int8x8_t small, int8x16_t big) {
10 vextq_s8(big, big, 15);
11 vextq_u8(big, big, 15);
12 vextq_p8(big, big, 15);
17 vextq_s8(big, big, 16); // expected-error {{argument should be a value from 0 to 15}}
18 vextq_u8(big, big, 16); // expected-error {{argument should be a value from 0 to 15}
    [all...]
atomic-requires-library-error.c 5 int big[128]; member in struct:foo
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plstr.h 357 * big one. It returns null if either string is null.
361 PL_strstr(const char *big, const char *little);
366 * Returns a pointer to the last instance of the little string within the big one.
371 PL_strrstr(const char *big, const char *little);
377 * n characters of the big one. It returns null if either string is null. It
382 PL_strnstr(const char *big, const char *little, PRUint32 n);
388 * n characters of the big one. It returns null if either string is null. It
393 PL_strnrstr(const char *big, const char *little, PRUint32 max);
398 * Returns a pointer to the first instance of the little string within the big one,
403 PL_strcasestr(const char *big, const char *little)
    [all...]
  /external/chromium_org/third_party/skia/tests/
InfRectTest.cpp 63 SkScalar big = SkIntToScalar(100); local
67 SkRect rect = SkRect::MakeXYWH(small, small, big, big);
72 check_invalid(reporter, small, small, big, invalid[i]);
73 check_invalid(reporter, small, small, invalid[i], big);
74 check_invalid(reporter, small, invalid[i], big, big);
75 check_invalid(reporter, invalid[i], small, big, big);
  /external/skia/tests/
InfRectTest.cpp 63 SkScalar big = SkIntToScalar(100); local
67 SkRect rect = SkRect::MakeXYWH(small, small, big, big);
72 check_invalid(reporter, small, small, big, invalid[i]);
73 check_invalid(reporter, small, small, invalid[i], big);
74 check_invalid(reporter, small, invalid[i], big, big);
75 check_invalid(reporter, invalid[i], small, big, big);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-351624.js 7 var big = 1e10; variable
11 var prod = val * big;
22 assertEquals(result, -big);
  /external/llvm/unittests/Support/
EndianTest.cpp 27 EXPECT_EQ(BigAsHost, (endian::read<int32_t, big, unaligned>(bigval)));
31 EXPECT_EQ((endian::read<int32_t, big, unaligned>(bigval + 1)),
37 endian::write<int32_t, big, unaligned>(data, -1362446643);
42 endian::write<int32_t, big, unaligned>(data + 1, -1362446643);
62 unsigned char big[] = {0x00, 0x01, 0x02, 0x03, 0x04}; local
65 reinterpret_cast<big32_t *>(big + 1);
  /external/llvm/include/llvm/Support/
Endian.h 23 enum endianness {big, little, native}; enumerator in enum:llvm::support::endianness
40 if (endian != native && sys::IsBigEndianHost != (endian == big))
139 <uint8_t, big, unaligned> ubig8_t;
141 <uint16_t, big, unaligned> ubig16_t;
143 <uint32_t, big, unaligned> ubig32_t;
145 <uint64_t, big, unaligned> ubig64_t;
148 <int8_t, big, unaligned> big8_t;
150 <int16_t, big, unaligned> big16_t;
152 <int32_t, big, unaligned> big32_t;
154 <int64_t, big, unaligned> big64_t
    [all...]
  /external/eigen/bench/btl/libs/blitz/
blitz_LU_solve_interface.hh 92 real big = 0. ; local
98 big = 0. ;
100 if( abs( LU( i, j ) )>=big ) big = abs( LU( i, j ) ) ;
102 if( big==0. ) {
106 ImplicitScaling( i ) = 1./big ;
118 big = 0. ;
124 if( (ImplicitScaling( i )*abs( theSum ))>=big ) {
126 big = dum ;
  /external/eigen/bench/btl/libs/gmm/
gmm_LU_solve_interface.hh 92 real big = 0. ; local
98 big = 0. ;
100 if( abs( LU( i, j ) )>=big ) big = abs( LU( i, j ) ) ;
102 if( big==0. ) {
106 ImplicitScaling( i ) = 1./big ;
118 big = 0. ;
124 if( (ImplicitScaling( i )*abs( theSum ))>=big ) {
126 big = dum ;
  /external/eigen/bench/btl/libs/mtl4/
mtl4_LU_solve_interface.hh 92 real big = 0. ; local
98 big = 0. ;
100 if( abs( LU( i, j ) )>=big ) big = abs( LU( i, j ) ) ;
102 if( big==0. ) {
106 ImplicitScaling( i ) = 1./big ;
118 big = 0. ;
124 if( (ImplicitScaling( i )*abs( theSum ))>=big ) {
126 big = dum ;
  /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...]
  /external/llvm/test/MC/ARM/
inst-overflow.s 12 @ CHECK-ERROR: inst operand is too big
inst-thumb-overflow-2.s 12 @ CHECK-ERRORS: inst.w operand is too big
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecListTest.java 84 public void assertEqualsOrSuperset(Set big, Set tiny, boolean superset) {
86 assertEquals(big, tiny);
88 assertTrue(big.containsAll(tiny));
109 CodecCapabilities big, CodecCapabilities tiny, boolean superset) {
111 assertEqualsOrSuperset(asSet(big.colorFormats), asSet(tiny.colorFormats), superset);
112 assertEqualsOrSuperset(asSet(big.profileLevels), asSet(tiny.profileLevels), superset);
113 AudioCapabilities bigAudCaps = big.getAudioCapabilities();
114 VideoCapabilities bigVidCaps = big.getVideoCapabilities();
115 EncoderCapabilities bigEncCaps = big.getEncoderCapabilities();
125 MediaCodecInfo big, MediaCodecInfo tiny, boolean superset)
    [all...]
  /external/eigen/test/
diagonalmatrices.cpp 68 BigMatrix big; local
69 big.setZero(2*rows, 2*cols);
71 big.block(i,j,rows,cols) = m1;
72 big.block(i,j,rows,cols) = v1.asDiagonal() * big.block(i,j,rows,cols);
74 VERIFY_IS_APPROX((big.block(i,j,rows,cols)) , v1.asDiagonal() * m1 );
76 big.block(i,j,rows,cols) = m1;
77 big.block(i,j,rows,cols) = big.block(i,j,rows,cols) * rv1.asDiagonal();
78 VERIFY_IS_APPROX((big.block(i,j,rows,cols)) , m1 * rv1.asDiagonal() )
    [all...]
  /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/llvm/lib/Object/
ELFObjectFile.cpp 44 R.reset(new ELFObjectFile<ELFType<support::big, 4, false>>(std::move(Obj),
49 R.reset(new ELFObjectFile<ELFType<support::big, 2, false>>(std::move(Obj),
56 R.reset(new ELFObjectFile<ELFType<support::big, 8, true>>(std::move(Obj),
61 R.reset(new ELFObjectFile<ELFType<support::big, 2, true>>(std::move(Obj),

Completed in 1163 milliseconds

1 2 3 4 5 6 7 8 9