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

1 2 3

  /external/llvm/include/llvm/Support/
CodeGen.h 30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
34 enum Level { Default=0, Small=1, Large=2 };
71 return CodeModel::Large;
88 case CodeModel::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/gdb/darwin-x86/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/gdb/linux-x86/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/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/clang/test/CodeGen/
vectorcall.c 17 struct Large { int a[5]; };
18 void __vectorcall v4(int a, struct Large b, int c) {}
19 // CHECK: define x86_vectorcallcc void @"\01v4@@28"(i32 inreg %a, %struct.Large* byval align 4 %b, i32 inreg %c)
20 // X64: define x86_vectorcallcc void @"\01v4@@40"(i32 %a, %struct.Large* %b, i32 %c)
  /external/clang/test/CodeGenCXX/
thunks.cpp 189 struct Large {
205 virtual void baz(X, X&, _Complex float, Small, Small&, Large) = 0;
213 void baz(X, X&, _Complex float, Small, Small&, Large);
216 void D::baz(X, X&, _Complex float, Small, Small&, Large) { }
  /external/eigen/Eigen/src/Core/
GeneralProduct.h 39 Large = 2,
51 value = is_large ? Large
104 * This is a compile time mapping from {1,Small,Large}^3 -> {product types} */
113 template<> struct product_type_selector<Small, Large, 1> { enum { ret = LazyCoeffBasedProductMode }; };
114 template<> struct product_type_selector<Large, Small, 1> { enum { ret = LazyCoeffBasedProductMode }; };
115 template<> struct product_type_selector<1, Large,Small> { enum { ret = CoeffBasedProductMode }; };
116 template<> struct product_type_selector<1, Large,Large> { enum { ret = GemvProduct }; };
117 template<> struct product_type_selector<1, Small,Large> { enum { ret = CoeffBasedProductMode }; };
118 template<> struct product_type_selector<Large,1, Small> { enum { ret = CoeffBasedProductMode }; }
    [all...]
  /external/v8/test/mjsunit/
generated-transition-stub.js 66 // Large array should deopt to runtimea
100 // Large array should deopt to runtime
136 // Large array under the deopt threshold should be able to trigger GC without
151 // Large array should deopt to runtime
190 // Large array under the deopt threshold should be able to trigger GC without
206 // Large array should deopt to runtime
  /external/libbrillo/brillo/
any_internal_impl_unittest.cc 85 struct Large {
87 } large = {}; local
88 buffer.Assign(large);
91 EXPECT_STREQ(GetTypeTag<Large>(), buffer.GetDataPtr()->GetTypeTag());
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.cpp 88 CM = CodeModel::Large;
89 else if (CM != CodeModel::Small && CM != CodeModel::Large)
91 "Only small and large code models are allowed on AArch64");
  /art/test/074-gc-thrash/src/
Main.java 112 Large large = new Large(); local
117 large.start();
128 large.join();
157 * Uses a single large array of references, replaced repeatedly in round-robin
330 * Allocates large useless objects.
332 class Large extends Thread {
355 System.out.println("Large: sleepCount=" + sleepCount);
  /libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java 218 @Large(a = "on class", b = {"A", "B", "C" },
231 @Large(a = "on class", b = {"A", "B", "C" },
247 public @interface Large {
  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 69 // MachO large model always goes via a GOT, simply to get a single 8-byte
71 if (TM.getCodeModel() == CodeModel::Large && isTargetMachO())
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCTargetDesc.cpp 76 if (CM != CodeModel::Small && CM != CodeModel::Large)
77 report_fatal_error("Target only supports CodeModel Small or Large");
  /external/curl/tests/
http_pipe.py 398 '413 Request Entity Too Large', e))
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp 221 // Large code model always uses the TOC even for local symbols.
222 if (TM.getCodeModel() == CodeModel::Large)
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCTargetDesc.cpp 78 // abs64 Static Large text smaller than 2^31 bytes
116 CM = CodeModel::Large;
  /system/core/libion/tests/
allocate_test.cpp 138 TEST_F(Allocate, Large)
  /external/llvm/bindings/ocaml/target/
llvm_target.ml 39 | Large
  /external/v8/test/js-perf-test/Templates/
templates.js 11 new Benchmark('Untagged-Large', false, false, 0,
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
FreeTypeAtlasTest.java 49 Tiny(10), Small(12), Medium(16), Large(20), Huge(24), ReallyHuge(28), JustTooBig(64);
FreeTypePackTest.java 45 Tiny(10), Small(12), Medium(16), Large(20), Huge(24), ReallyHuge(28), JustTooBig(64);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 198 CM = is64Bit ? CodeModel::Large : CodeModel::Small;

Completed in 1319 milliseconds

1 2 3