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

1 2

  /external/clang/test/CodeGenCXX/
thiscall-struct-return.cpp 21 struct S __attribute__((thiscall)) Small() const {
38 (void)c.Small();
thunks.cpp 184 struct Small { short s; };
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/llvm/include/llvm/Support/
CodeGen.h 27 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
  /external/llvm/include/llvm/ADT/
DenseMap.h 79 // If the capacity of the array is huge, and the # elements used is small,
679 unsigned Small : 1;
689 /// a large bucket. This union will be discriminated by the 'Small' bit.
728 if (Small && RHS.Small) {
757 if (!Small && !RHS.Small) {
763 SmallDenseMap &SmallSide = Small ? *this : RHS;
764 SmallDenseMap &LargeSide = Small ? RHS : *this;
766 // First stash the large side's rep and move the small side across
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumMapTest.java 34 Small, Middle, Big {};
131 Size.Small, 1));
133 enumSizeMap.get(Size.Small));
240 enumSizeMap.put(Size.Small, 1);
242 assertNull("Failed to clear all elements", enumSizeMap.get(Size.Small)); //$NON-NLS-1$
252 .containsKey(Size.Small));
253 enumSizeMap.put(Size.Small, 1);
255 .containsKey(Size.Small));
276 enumSizeMap.put(Size.Small, integer);
282 assertSame("Should be same", enumSizeMap.get(Size.Small), //$NON-NLS-1
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
EnumMapTest.java 36 Small, Middle, Big {};
133 Size.Small, 1));
135 enumSizeMap.get(Size.Small));
242 enumSizeMap.put(Size.Small, 1);
244 assertNull("Failed to clear all elements", enumSizeMap.get(Size.Small));
254 .containsKey(Size.Small));
255 enumSizeMap.put(Size.Small, 1);
257 .containsKey(Size.Small));
278 enumSizeMap.put(Size.Small, integer);
284 assertSame("Should be same", enumSizeMap.get(Size.Small),
    [all...]
  /frameworks/compile/libbcc/lib/Support/
CompilerConfig.cpp 54 mCodeModel = llvm::CodeModel::Small;
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 240 ((CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
243 (CMModel == CodeModel::Small
247 ((CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
251 (CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
253 LSDAEncoding = (CMModel == CodeModel::Small)
256 TTypeEncoding = (CMModel == CodeModel::Small)
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCTargetDesc.cpp 71 CM = CodeModel::Small;
  /external/llvm/lib/Target/
TargetMachineC.cpp 86 CM = CodeModel::Small;
  /frameworks/compile/llvm-ndk-cc/
Backend.cpp 129 CodeModel = llvm::CodeModel::Small;
  /gdk/sources/llvm-ndk-cc/
Backend.cpp 128 llvm::TargetMachine::setCodeModel(llvm::CodeModel::Small);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 446 // For static codegen, if we're not already set, use Small codegen.
448 CM = CodeModel::Small;
451 CM = is64Bit ? CodeModel::Large : CodeModel::Small;
  /frameworks/compile/slang/
slang_backend.cpp 148 CM = llvm::CodeModel::Small;
  /frameworks/base/core/java/android/text/
Html.java 490 } else if (tag.equalsIgnoreCase("small")) {
491 start(mSpannableStringBuilder, new Small());
540 } else if (tag.equalsIgnoreCase("small")) {
541 end(mSpannableStringBuilder, Small.class, new RelativeSizeSpan(0.8f));
814 private static class Small { }
  /external/clang/lib/CodeGen/
BackendUtil.cpp 266 if (CodeGenOpts.CodeModel == "small") {
267 CM = llvm::CodeModel::Small;
  /external/llvm/tools/llc/
llc.cpp 101 clEnumValN(CodeModel::Small, "small",
102 "Small code model"),
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 136 clEnumValN(CodeModel::Small, "small",
137 "Small code model"),
  /external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 112 DecompositionSmall = QChar::Small,
  /external/protobuf/src/google/protobuf/
repeated_field_unittest.cc 57 // Test operations on a RepeatedField which is small enough that it does
59 TEST(RepeatedField, Small) {
274 TEST(RepeatedPtrField, Small) {
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 486 if (TM.getCodeModel() != CodeModel::Small)
632 if (TM.getCodeModel() != CodeModel::Small)
    [all...]
X86ISelDAGToDAG.cpp 627 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
630 (M == CodeModel::Small || M == CodeModel::Kernel)) {
668 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
671 M == CodeModel::Small || M == CodeModel::Kernel) {
718 if (TM.getCodeModel() == CodeModel::Small &&
    [all...]
  /external/llvm/tools/lli/
lli.cpp 158 clEnumValN(CodeModel::Small, "small",
159 "Small code model"),
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 97 clEnumValN(CodeModel::Small, "small",
98 "Small code model"),
    [all...]

Completed in 1198 milliseconds

1 2