Searched defs:big (Results 1 - 17 of 17) sorted by relevance

/external/llvm/unittests/Support/
H A DEndianTest.cpp24 unsigned char big[] = {0x00, 0x01, 0x02, 0x03, 0x04}; local
27 EXPECT_EQ(BigAsHost, (endian::read_be<int32_t, unaligned>(big)));
31 EXPECT_EQ((endian::read_be<int32_t, unaligned>(big + 1)),
62 unsigned char big[] = {0x00, 0x01, 0x02, 0x03, 0x04}; local
65 reinterpret_cast<big32_t *>(big + 1);
/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 (1000001);
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/skia/tests/
H A DInfRectTest.cpp33 SkScalar big = SkIntToScalar(100); local
35 SkRect rect = SkRect::MakeXYWH(small, small, big, big);
38 check_invalid(reporter, small, small, big, invalid);
39 check_invalid(reporter, small, small, invalid, big);
40 check_invalid(reporter, small, invalid, big, big);
41 check_invalid(reporter, invalid, small, big, big);
42 check_invalid(reporter, small, small, big,
[all...]
H A DMathTest.cpp249 float big = 3.40282e+038; local
257 SkFixed big = SK_FixedMax;
261 REPORTER_ASSERT(reporter, !SkScalarIsNaN(big));
262 REPORTER_ASSERT(reporter, !SkScalarIsNaN(-big));
266 REPORTER_ASSERT(reporter, SkScalarIsFinite(big));
267 REPORTER_ASSERT(reporter, SkScalarIsFinite(-big));
/external/v8/test/cctest/
H A Dtest-bignum.cc84 uint64_t big = V8_2PART_UINT64_C(0xFFFFFFFF, FFFFFFFF); local
85 bignum.AssignUInt64(big);
89 big = V8_2PART_UINT64_C(0x12345678, 9ABCDEF0);
90 bignum.AssignUInt64(big);
/external/v8/test/mjsunit/
H A Dhtml-string-funcs.js34 var simple = { big: 'big', blink: 'blink', bold: 'b',
/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/clang/test/CodeGen/
H A Datomic-ops.c231 // Tests for atomic operations on big values. These should call the functions
236 int big[128]; member in struct:foo
288 g.big[12] = 12;
/external/guava/guava-tests/test/com/google/common/math/
H A DIntMathTest.java495 private boolean fitsInInt(BigInteger big) { argument
496 return big.bitLength() <= 31;
H A DLongMathTest.java530 private boolean fitsInLong(BigInteger big) { argument
531 return big.bitLength() <= 63;
/external/llvm/include/llvm/Support/
H A DEndian.h24 enum endianness {big, little}; enumerator in enum:llvm::support::endianness
109 class packed_endian_specific_integral<value_type, big, unaligned> {
135 class packed_endian_specific_integral<value_type, big, aligned> {
186 <uint8_t, big, unaligned> ubig8_t;
188 <uint16_t, big, unaligned> ubig16_t;
190 <uint32_t, big, unaligned> ubig32_t;
192 <uint64_t, big, unaligned> ubig64_t;
195 <int8_t, big, unaligned> big8_t;
197 <int16_t, big, unaligned> big16_t;
199 <int32_t, big, unaligne
[all...]
/external/clang/test/CodeGenCXX/
H A Dx86_64-arguments.cpp142 char big[17]; member in class:test8::A
/external/svox/pico/lib/
H A Dpicocep.c511 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/base/third_party/dmg_fp/
H A Ddtoa.cc1743 int big, denorm, esign, havedig, k, n, nbits, up, zret; variable
1836 big = esign = 0;
1854 big = 1;
1866 if (big) {
/external/libppp/src/
H A Dcommand.c414 strstrword(char *big, const char *little) argument
416 /* Get the first occurance of the word ``little'' in ``big'' */
420 pos = big;
424 if ((pos != big && isinword(pos[-1])) || isinword(pos[len]))
426 else if (pos != big && pos[-1] == '\\')
1866 log_Printf(LogWARN, "MRRU %ld: too big - max %d\n", long_val, MAX_MRU);
1921 log_Printf(LogWARN, "MRU %ld: too big - max %d\n", long_val, MAX_MRU);
1977 log_Printf(LogWARN, "MTU %ld: too big - max %d\n", long_val, MAX_MTU);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 391 milliseconds