/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 | 20 #define BIG SkIntToScalar(10) 92 DEF_BENCH(return new BlurBench(BIG, kNormal_SkBlurStyle);) 93 DEF_BENCH(return new BlurBench(BIG, kSolid_SkBlurStyle);) 94 DEF_BENCH(return new BlurBench(BIG, kOuter_SkBlurStyle);) 95 DEF_BENCH(return new BlurBench(BIG, kInner_SkBlurStyle);) 111 DEF_BENCH(return new BlurBench(BIG, kNormal_SkBlurStyle, SkBlurMaskFilter::kHighQuality_BlurFlag);)
|
MorphologyBench.cpp | 18 #define BIG SkIntToScalar(10) 90 DEF_BENCH( return new MorphologyBench(BIG, kErode_MT); ) 91 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/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 | 71 atomic_intmax_t big; local 74 ASSERT_FALSE(atomic_is_lock_free(&big)); 76 ASSERT_TRUE(atomic_is_lock_free(&big)); 176 constexpr static uint_least32_t BIG = 10000000ul; // Assumed even below. 190 for (uint_least32_t i = 0; i <= BIG; i+=2) { 206 while (yval != BIG + 1) { 247 EXPECT_EQ(atomic_load_explicit(&a.x, memory_order_consume), BIG + 1); 248 EXPECT_EQ(atomic_load_explicit(&a.y, memory_order_seq_cst), BIG + 1); 249 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/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...] |
/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: {
|
TagDefinitions.h | 1013 BIG 1293 BIG 1301 BIG 1309 BIG
|
/frameworks/compile/mclinker/include/mcld/LD/ |
StaticResolver.h | 44 BIG, // override by symbol common using largest size.
|
/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)
|
/external/skia/src/device/xps/ |
SkXPSDevice.cpp | 700 //TODO(bungeman): compute how big this really needs to be. 701 const SkScalar BIG = SkIntToScalar(1000); //SK_ScalarMax; 702 const FLOAT BIG_F = SkScalarToFLOAT(BIG); 730 SkRect leftArea = SkRect::MakeLTRB(-BIG, 0, 0, bHeight); 739 SkRect rightArea = SkRect::MakeLTRB(bWidth, 0, BIG, bHeight); 751 SkRect topArea = SkRect::MakeLTRB(0, -BIG, bWidth, 0); 760 SkRect bottomArea = SkRect::MakeLTRB(0, bHeight, bWidth, BIG); 777 const SkRect tlArea = SkRect::MakeLTRB(-BIG, -BIG, 0, 0); 781 const SkRect trArea = SkRect::MakeLTRB(bWidth, -BIG, BIG, 0) [all...] |
/frameworks/av/media/img_utils/src/ |
DngUtils.cpp | 27 OpcodeListBuilder::OpcodeListBuilder() : mCount(0), mOpList(), mEndianOut(&mOpList, BIG) {
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/ppc64/ |
asm9.go | 598 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 605 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 615 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 632 if -BIG <= ctxt.Instoffset && ctxt.Instoffset <= BIG { 661 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { [all...] |
/prebuilts/go/darwin-x86/src/cmd/internal/obj/ppc64/ |
asm9.go | 595 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 602 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 612 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 629 if -BIG <= ctxt.Instoffset && ctxt.Instoffset <= BIG { 658 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/ppc64/ |
asm9.go | 598 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 605 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 615 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { 632 if -BIG <= ctxt.Instoffset && ctxt.Instoffset <= BIG { 661 if ctxt.Instoffset >= -BIG && ctxt.Instoffset < BIG { [all...] |