Searched refs:big (Results 1 - 25 of 146) sorted by relevance

123456

/external/valgrind/main/memcheck/tests/
H A Dbig_blocks_freed_list.c2 /* 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
[all...]
H A Dsbfragment.c39 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...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-351624.js7 var big = 1e10; variable
11 var prod = val * big;
22 assertEquals(result, -big);
/external/guava/guava-tests/test/com/google/common/io/
H A DLimitInputStreamTest.java29 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/
H A Dint128_unittest.cc17 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/
H A Daarch64-neon-ranges.c6 void test_vext_8bit(int8x8_t small, int8x16_t big) { argument
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, bi
22 test_mul_lane_f64(float64x1_t small, float64x2_t big, float64x2_t rhs) argument
39 test_ld1st1(int8x8_t small, int8x16_t big, void *addr) argument
[all...]
H A Datomic-requires-library-error.c5 int big[128]; member in struct:foo
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dplstr.h357 * 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, cons
[all...]
/external/chromium_org/third_party/skia/tests/
H A DInfRectTest.cpp63 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/
H A DInfRectTest.cpp63 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/llvm/unittests/Support/
H A DEndianTest.cpp27 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/
H A DEndian.h23 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, unaligne
[all...]
/external/libvterm/src/
H A Drect.h38 /* True if small is contained entirely within big */
39 static int rect_contains(VTermRect *big, VTermRect *small) argument
41 if(small->start_row < big->start_row) return 0;
42 if(small->start_col < big->start_col) return 0;
43 if(small->end_row > big->end_row) return 0;
44 if(small->end_col > big->end_col) return 0;
/external/eigen/bench/btl/libs/blitz/
H A Dblitz_LU_solve_interface.hh92 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/
H A Dgmm_LU_solve_interface.hh92 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/
H A Dmtl4_LU_solve_interface.hh92 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/chromium_org/v8/test/mjsunit/
H A Dhtml-string-funcs.js34 var simple = { big: 'big', blink: 'blink', bold: 'b',
/external/llvm/test/MC/ARM/
H A Dinst-overflow.s12 @ CHECK-ERROR: inst operand is too big
H A Dinst-thumb-overflow-2.s12 @ CHECK-ERRORS: inst.w operand is too big
H A Dinst-thumb-overflow.s12 @ CHECK-ERROR: inst.n operand is too big, use inst.w instead
/external/eigen/test/
H A Ddiagonalmatrices.cpp68 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
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcommon.h103 // 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/
H A DELFObjectFile.cpp44 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),
/external/srec/srec/clib/
H A Dmatrix_i.c105 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/e2fsprogs/misc/
H A Dmke2fs-hurd.conf24 big = {

Completed in 417 milliseconds

123456