HomeSort by relevance Sort by last modified time
    Searched full:large (Results 26 - 50 of 7141) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/lsan/lit_tests/TestCases/SharedLibs/
huge_tls_lib_so.cc 1 // A loadable module with a large thread local section, which would require
5 // This must be large enough that it doesn't fit into preallocated static TLS
  /external/bzip2/
README.COMPILATION.PROBLEMS 18 6.0 and nmake, you can build a native Win32 version too. Large file
21 When I say "large file" I mean a file of size 2,147,483,648 (2^31)
23 but many newer ones can. Large files are pretty huge -- most files
24 you'll encounter are not Large Files.
28 in that tradition. However, in order to support large files, I've had
32 The technique of adding -D_FILE_OFFSET_BITS=64 to get large file
33 support is, as far as I know, the Recommended Way to get correct large
34 file support. For more details, see the Large File Support
35 Specification, published by the Large File Summit, at
37 http://ftp.sas.com/standards/large.fil
    [all...]
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-large-pdb.py 17 CHDIR = 'large-pdb'
43 test.run_gyp('large-pdb.gyp', chdir=CHDIR)
45 test.build('large-pdb.gyp', 'large_pdb_exe', chdir=CHDIR)
48 test.build('large-pdb.gyp', 'small_pdb_exe', chdir=CHDIR)
51 test.build('large-pdb.gyp', 'large_pdb_dll', chdir=CHDIR)
54 test.build('large-pdb.gyp', 'small_pdb_dll', chdir=CHDIR)
57 test.build('large-pdb.gyp', 'large_pdb_implicit_exe', chdir=CHDIR)
62 test.build('large-pdb.gyp', 'large_pdb_variable_exe', chdir=CHDIR)
67 test.build('large-pdb.gyp', 'large_pdb_product_exe', chdir=CHDIR)
gyptest-link-large-address-aware.py 19 test.run_gyp('large-address-aware.gyp', chdir=CHDIR)
20 test.build('large-address-aware.gyp', test.ALL, chdir=CHDIR)
25 MARKER = 'Application can handle large (>2GB) addresses'
  /ndk/sources/host-tools/sed-4.2.1/m4/
mkstemp.m4 27 off_t large = (off_t) 4294967295u;
28 if (large < 0)
29 large = 2147483647;
35 if (fd < 0 || lseek (fd, large, SEEK_SET) != large)
  /external/clang/test/SemaCXX/
warn-large-by-value-copy.cpp 16 S101 f101(S101 s) { return s; } // expected-warning {{return value of 'f101' is a large (101 bytes) pass-by-value object}} \
17 // expected-warning {{'s' is a large (101 bytes) pass-by-value argument}}
35 void tf(TS<size> ts) {} // expected-warning {{ts' is a large (300 bytes) pass-by-value argument}}
  /external/skia/tools/
CopyTilesRenderer.h 19 * PictureRenderer that draws the picture and then extracts it into tiles. For large pictures,
20 * it will divide the picture into large tiles and draw the picture once for each large tile.
  /external/clang/test/Lexer/
char-literal.cpp 14 char d = '?'; // expected-error {{character too large for enclosing character literal type}}
15 char e = '\u2318'; // expected-error {{character too large for enclosing character literal type}}
22 char16_t h = u'\U0010FFFD'; // expected-error {{character too large for enclosing character literal type}}
29 char l = 'Ø'; // expected-error {{character too large for enclosing character literal type}}
30 char m = '?'; // expected-error {{character too large for enclosing character literal type}}
33 char16_t o = '?'; // expected-error {{character too large for enclosing character literal type}}
constants.c 53 1.9e50f, // expected-warning {{too large}}
57 -1.9e50f, // expected-warning {{too large}}
63 1.9e500, // expected-warning {{too large}}
67 -1.9e500, // expected-warning {{too large}}
72 double g = 1e100000000; // expected-warning {{too large}}
74 char h = '\u1234'; // expected-error {{character too large for enclosing character literal type}}
  /external/clang/test/Sema/
offsetof-64.c 4 // Don't crash when taking computing the offset of structs with large arrays.
16 char padding[Size][Size][Size]; // expected-error 2{{array is too large}}
  /external/chromium_org/third_party/lcov/example/
descriptions.txt 10 resulting sum is too large to be stored as an int variable.
  /external/robolectric/src/test/resources/res/layout-large-v16/
different_screen_sizes.xml 10 android:text="large-v16"
  /frameworks/base/graphics/java/android/graphics/
LargeBitmap.java 31 * LargeBimap is particularly useful when an original image is large and
44 large bitmap int (pointer).
63 checkRecycled("decodeRegion called on recycled large bitmap");
72 checkRecycled("getWidth called on recycled large bitmap");
78 checkRecycled("getHeight called on recycled large bitmap");
83 * Frees up the memory associated with this large bitmap, and mark the
84 * large bitmap as "dead", meaning it will throw an exception if decodeRegion(),
87 * sure there are no further uses for the large bitmap. This is an advanced call,
99 * Returns true if this large bitmap has been recycled.
102 * @return true if the large bitmap has been recycle
    [all...]
  /external/chromium_org/content/test/data/dom_storage/
sanity_check.js 63 throw "failed to throw execption for very large value";
66 "ex.code != 22 for attempt to store a very large value");
69 storage.setItem(tooLarge, "key is too large");
70 throw "failed to throw execption for very large key";
73 "ex.code != 22 for attempt to store a very large key");
  /frameworks/base/docs/downloads/training/
MobileAds.zip 
  /libcore/benchmarks/src/benchmarks/regression/
IntegralToStringBenchmark.java 27 private static final int LARGE = 12345678;
43 Integer.toString(LARGE);
61 Integer.toString(LARGE, 2);
79 Integer.toString(LARGE, 10);
97 Integer.toString(LARGE, 16);
115 Integer.toBinaryString(LARGE);
133 Integer.toHexString(LARGE);
151 new StringBuilder().append(LARGE);
169 String.format("%d", LARGE);
  /frameworks/base/core/tests/coretests/src/android/view/
BigCache.java 31 * This activity contains two Views, one as big as the screen, one much larger. The large one
54 final View large = new View(this); local
55 large.setId(R.id.b);
56 large.setBackgroundColor(0xFF00FF00);
59 large.setLayoutParams(new LinearLayout.LayoutParams(screenWidth, height));
66 testBed.addView(large);
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/
test.cpp 25 struct Large {
99 std::deque<Large> deque2;
100 deque2.push_back( Large());
101 deque2.push_back( Large());
102 deque2.push_front( Large());
162 std::auto_ptr<Large> auto_ptr1( new Large());
163 std::auto_ptr<Large> auto_ptr2;
166 STD_TR1::shared_ptr<Large> shared_ptr1( new Large);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/
test.cpp 25 struct Large {
99 std::deque<Large> deque2;
100 deque2.push_back( Large());
101 deque2.push_back( Large());
102 deque2.push_front( Large());
162 std::auto_ptr<Large> auto_ptr1( new Large());
163 std::auto_ptr<Large> auto_ptr2;
166 STD_TR1::shared_ptr<Large> shared_ptr1( new Large);
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/
test.cpp 25 struct Large {
99 std::deque<Large> deque2;
100 deque2.push_back( Large());
101 deque2.push_back( Large());
102 deque2.push_front( Large());
162 std::auto_ptr<Large> auto_ptr1( new Large());
163 std::auto_ptr<Large> auto_ptr2;
166 STD_TR1::shared_ptr<Large> shared_ptr1( new Large);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
accessibility_menu.html 10 <input id="large-cursor" type="checkbox">
11 <label for="large-cursor" class="checkboxlabel"
  /external/chromium_org/chrome/common/extensions/
extension_icon_set_unittest.cc 22 icons.Add(extension_misc::EXTENSION_ICON_LARGE, "large.png");
23 EXPECT_EQ("large.png", icons.Get(extension_misc::EXTENSION_ICON_LARGE,
25 EXPECT_EQ("large.png", icons.Get(extension_misc::EXTENSION_ICON_LARGE,
27 EXPECT_EQ("large.png", icons.Get(extension_misc::EXTENSION_ICON_LARGE,
29 EXPECT_EQ("large.png", icons.Get(extension_misc::EXTENSION_ICON_MEDIUM,
31 EXPECT_EQ("large.png", icons.Get(extension_misc::EXTENSION_ICON_EXTRA_LARGE,
33 EXPECT_EQ("large.png", icons.Get(0, ExtensionIconSet::MATCH_BIGGER));
47 EXPECT_EQ("large.png", icons.Get(extension_misc::EXTENSION_ICON_MEDIUM,
  /external/chromium_org/third_party/skia/src/animator/
thingstodo.txt 3 at these points, generate an error if actual physical stack gets too large
8 very large apply create or apply immediate steps
  /external/llvm/test/CodeGen/AArch64/
jump-table.ll 2 ; RUN: llc -code-model=large -verify-machineinstrs < %s -mtriple=aarch64-none-linux-gnu | FileCheck --check-prefix=CHECK-LARGE %s
19 ; CHECK-LARGE: movz x[[JTADDR:[0-9]+]], #:abs_g3:.LJTI0_0
20 ; CHECK-LARGE: movk x[[JTADDR]], #:abs_g2_nc:.LJTI0_0
21 ; CHECK-LARGE: movk x[[JTADDR]], #:abs_g1_nc:.LJTI0_0
22 ; CHECK-LARGE: movk x[[JTADDR]], #:abs_g0_nc:.LJTI0_0
23 ; CHECK-LARGE: ldr [[DEST:x[0-9]+]], [x[[JTADDR]], {{x[0-9]+}}, lsl #3]
24 ; CHECK-LARGE: br [[DEST]]
  /external/skia/src/animator/
thingstodo.txt 3 at these points, generate an error if actual physical stack gets too large
8 very large apply create or apply immediate steps

Completed in 1615 milliseconds

12 3 4 5 6 7 8 91011>>