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

1 2

  /external/llvm/include/llvm/Support/
CodeGen.h 30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
67 return CodeModel::Large;
84 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/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/CodeGenCXX/
thunks.cpp 185 struct Large {
201 virtual void baz(X, X&, _Complex float, Small, Small&, Large) = 0;
209 void baz(X, X&, _Complex float, Small, Small&, Large);
212 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/chromium_org/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
regexp-global.js 168 // Large regexp (a lot of captures).
  /libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java 157 @Large(a = "on class", b = {"A", "B", "C" },
170 @Large(a = "on class", b = {"A", "B", "C" },
186 public @interface Large {
  /external/chromium_org/media/base/
test_helpers.h 76 static VideoDecoderConfig Large();
79 // Returns coded size for Normal and Large config.
test_helpers.cc 135 VideoDecoderConfig TestVideoConfig::Large() {
  /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
311 * Allocates large useless objects.
313 class Large extends Thread {
333 System.out.println("Large: sleepCount=" + sleepCount);
  /dalvik/tests/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
311 * Allocates large useless objects.
313 class Large extends Thread {
333 System.out.println("Large: sleepCount=" + sleepCount);
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 67 clEnumValN(CodeModel::Large, "large",
68 "Large code model"),
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.cpp 89 CM = CodeModel::Large;
  /external/chromium_org/media/filters/
fake_video_decoder_unittest.cc 305 InitializeWithConfig(TestVideoConfig::Large());
ffmpeg_video_decoder_unittest.cc 80 InitializeWithConfig(TestVideoConfig::Large());
source_buffer_stream_unittest.cc     [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 351 CM = is64Bit ? CodeModel::Large : CodeModel::Small;
  /external/llvm/lib/Target/X86/
X86Subtarget.cpp 70 // Large model never uses stubs.
71 if (TM.getCodeModel() == CodeModel::Large)
  /external/llvm/tools/lli/
lli.cpp 162 clEnumValN(CodeModel::Large, "large",
163 "Large code model"),
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 141 clEnumValN(CodeModel::Large, "large",
142 "Large code model"),
  /external/protobuf/src/google/protobuf/
repeated_field_unittest.cc 93 // Test operations on a RepeatedField which is large enough to allocate a
95 TEST(RepeatedField, Large) {
306 TEST(RepeatedPtrField, Large) {
  /external/clang/lib/CodeGen/
BackendUtil.cpp 355 } else if (CodeGenOpts.CodeModel == "large") {
356 CM = llvm::CodeModel::Large;
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 257 case CodeModel::Large: {
278 llvm_unreachable("Only small and large code models supported now");

Completed in 343 milliseconds

1 2