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

1 2 3

  /toolchain/binutils/binutils-2.25/ld/emulparams/
tic30aout.sh 7 BIG=1
tic30coff.sh 7 BIG=1
z8001.sh 7 BIG=1
  /external/clang/test/Sema/
conversion.c 7 #define BIG 0x7f7f7f7f7f7f7f7fL
44 c = (char) BIG;
45 c = (short) BIG; // expected-warning {{implicit conversion from 'short' to 'char' changes value}}
46 c = (int) BIG; // expected-warning {{implicit conversion from 'int' to 'char' changes value}}
47 c = (long) BIG; // expected-warning {{implicit conversion from 'long' to 'char' changes value}}
48 s = (char) BIG;
49 s = (short) BIG;
50 s = (int) BIG; // expected-warning {{implicit conversion from 'int' to 'short' changes value}}
51 s = (long) BIG; // expected-warning {{implicit conversion from 'long' to 'short' changes value}}
52 i = (char) BIG;
    [all...]
  /external/skia/bench/
BlurBench.cpp 19 #define BIG SkIntToScalar(10)
90 DEF_BENCH(return new BlurBench(BIG, kNormal_SkBlurStyle);)
91 DEF_BENCH(return new BlurBench(BIG, kSolid_SkBlurStyle);)
92 DEF_BENCH(return new BlurBench(BIG, kOuter_SkBlurStyle);)
93 DEF_BENCH(return new BlurBench(BIG, kInner_SkBlurStyle);)
109 DEF_BENCH(return new BlurBench(BIG, kNormal_SkBlurStyle, SkBlurMaskFilter::kHighQuality_BlurFlag);)
MorphologyBench.cpp 18 #define BIG SkIntToScalar(10)
92 DEF_BENCH( return new MorphologyBench(BIG, kErode_MT); )
93 DEF_BENCH( return new MorphologyBench(BIG, kDilate_MT); )
BlurRectBench.cpp 19 #define BIG SkIntToScalar(10)
186 DEF_BENCH(return new BlurRectBoxFilterBench(BIG);)
190 DEF_BENCH(return new BlurRectGaussianBench(BIG);)
194 DEF_BENCH(return new BlurRectDirectBench(BIG);)
  /external/vboot_reference/tests/
run_vbutil_kernel_arg_tests.sh 26 # Create some big and little files for the kernel and bootloader
27 BIG="${TMPDIR}/big.bin"
28 dd if=/dev/urandom bs=32768 count=1 of="${BIG}" 2>/dev/null
34 KERN_VALS=("--vmlinuz=${BIG}" "--vmlinuz=${SMALL}")
35 BOOT_VALS=("--bootloader=${BIG}" "--bootloader=${SMALL}")
109 --bootloader "${BIG}" \
110 --vmlinuz "${BIG}" \
  /external/bart/docs/examples/
thermal.py 48 cls.BIG = '000000f0'
76 & (IN:dynamic_power > 0)", reference=True, select=self.BIG)
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
PatchReaderTest.java 43 private static final long BIG = 2048L * 1024L * 1024L;
48 new TypedRange<Void>(BIG, 17L, null);
51 new TypedRange<Void>(BIG + 25L, 19L, null);
59 new TypedRange<JreDeflateParameters>(BIG, BIG, DEFLATE_PARAMS);
62 new TypedRange<JreDeflateParameters>(BIG * 2, BIG, DEFLATE_PARAMS);
69 private static final long DELTA_FRIENDLY_OLD_FILE_SIZE = BIG - 75L;
71 private static final long DELTA_FRIENDLY_NEW_FILE_SIZE = BIG + 75L;
  /bionic/tests/
stdatomic_test.cpp 69 atomic_intmax_t big; local
72 ASSERT_FALSE(atomic_is_lock_free(&big));
74 ASSERT_TRUE(atomic_is_lock_free(&big));
187 constexpr static uint_least32_t BIG = 10000000ul; // Assumed even below.
201 for (uint_least32_t i = 0; i <= BIG; i+=2) {
217 while (yval != BIG + 1) {
258 EXPECT_EQ(atomic_load_explicit(&a.x, memory_order_consume), BIG + 1);
259 EXPECT_EQ(atomic_load_explicit(&a.y, memory_order_seq_cst), BIG + 1);
260 EXPECT_EQ(atomic_load(&a.z), BIG + 1);
  /libcore/ojluni/src/main/java/sun/misc/
RegexpPool.java 41 private static final int BIG = 0x7FFFFFFF;
42 private int lastDepth = BIG;
105 if (p.result != null && p.depth < BIG
117 if (p.result != null && p.depth < BIG) {
154 return matchAfter(s, BIG);
240 lastDepth = BIG;
  /external/bart/tests/
test_sched_assert.py 32 self.BIG = [1,2]
34 self.clusters = [self.BIG, self.LITTLE]
82 self.big = [1,2]
84 self.clusters = [self.big, self.little]
85 self.all_cpus = sorted(self.big + self.little)
  /external/crcalc/tests/src/com/hp/creals/
SlowCRTest.java 52 final static CR BIG = CR.valueOf(200).exp();
53 final static CR SMALL = BIG.inverse();
172 CR BIG = CR.valueOf(200).exp();
173 checkTrig(BIG);
174 checkTrig(BIG.negate());
190 // And a few big ones
202 CR BIG = CR.valueOf(200).exp();
203 checkExpLn(BIG);
204 checkExpLn(BIG.negate());
218 // And a few big one
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_deque.py 10 BIG = 100000
226 n = 500 # O(n**2) test, don't make this too big
240 n = 500 # O(n**2) test, don't make this too big
291 e.rotate(BIG+17) # verify on long series of rotates
293 for i in xrange(BIG+17):
390 for i in xrange(size, BIG):
395 self.assertEqual(list(d), range(BIG-size, BIG))
401 for i in xrange(size, BIG):
406 self.assertEqual(list(reversed(list(d))), range(BIG-size, BIG))
    [all...]
  /external/python/cpython2/Lib/test/
test_deque.py 11 BIG = 100000
227 n = 500 # O(n**2) test, don't make this too big
241 n = 500 # O(n**2) test, don't make this too big
292 e.rotate(BIG+17) # verify on long series of rotates
294 for i in xrange(BIG+17):
391 for i in xrange(size, BIG):
396 self.assertEqual(list(d), range(BIG-size, BIG))
402 for i in xrange(size, BIG):
407 self.assertEqual(list(reversed(list(d))), range(BIG-size, BIG)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_deque.py 11 BIG = 100000
227 n = 500 # O(n**2) test, don't make this too big
241 n = 500 # O(n**2) test, don't make this too big
292 e.rotate(BIG+17) # verify on long series of rotates
294 for i in xrange(BIG+17):
391 for i in xrange(size, BIG):
396 self.assertEqual(list(d), range(BIG-size, BIG))
402 for i in xrange(size, BIG):
407 self.assertEqual(list(reversed(list(d))), range(BIG-size, BIG)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_deque.py 11 BIG = 100000
227 n = 500 # O(n**2) test, don't make this too big
241 n = 500 # O(n**2) test, don't make this too big
292 e.rotate(BIG+17) # verify on long series of rotates
294 for i in xrange(BIG+17):
391 for i in xrange(size, BIG):
396 self.assertEqual(list(d), range(BIG-size, BIG))
402 for i in xrange(size, BIG):
407 self.assertEqual(list(reversed(list(d))), range(BIG-size, BIG)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_deque.py 11 BIG = 100000
227 n = 500 # O(n**2) test, don't make this too big
241 n = 500 # O(n**2) test, don't make this too big
292 e.rotate(BIG+17) # verify on long series of rotates
294 for i in xrange(BIG+17):
391 for i in xrange(size, BIG):
396 self.assertEqual(list(d), range(BIG-size, BIG))
402 for i in xrange(size, BIG):
407 self.assertEqual(list(reversed(list(d))), range(BIG-size, BIG)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_deque.py 11 BIG = 100000
227 n = 500 # O(n**2) test, don't make this too big
241 n = 500 # O(n**2) test, don't make this too big
292 e.rotate(BIG+17) # verify on long series of rotates
294 for i in xrange(BIG+17):
391 for i in xrange(size, BIG):
396 self.assertEqual(list(d), range(BIG-size, BIG))
402 for i in xrange(size, BIG):
407 self.assertEqual(list(reversed(list(d))), range(BIG-size, BIG)
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
EndianUtils.h 36 BIG,
41 * Convert from the native device endianness to big endian.
137 case BIG: {
  /frameworks/compile/mclinker/include/mcld/LD/
StaticResolver.h 44 BIG, // override by symbol common using largest size.
  /external/ltp/testcases/misc/math/fptests/
fptest01.c 50 #define BIG 1.e50
221 double mintime = BIG;
fptest02.c 50 #define BIG 1.e50
201 double mintime = BIG;
  /frameworks/compile/mclinker/lib/LD/
StaticResolver.cpp 42 /* C */ {COM, COM, COM, COM, CREF, COM, COM, COM, MBIG, COM, BIG, REFC }, // NOLINT
126 case BIG: { /* override by symbol common using largest size. */
207 } // end of the big switch (action)

Completed in 1921 milliseconds

1 2 3