Searched refs:Small (Results 1 - 25 of 37) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dx86_32-fpcc-struct-return.c12 typedef struct { int i; } Small; typedef in typeref:struct:__anon15997
24 Small returnSmall(Small x) { return x; }
H A Daarch64-type-sizes.c82 enum Small { enum
87 return sizeof(enum Small);
/external/clang/test/CodeGenCXX/
H A Dthiscall-struct-return.cpp21 struct S __attribute__((thiscall)) Small() const { function in class:C
38 (void)c.Small();
H A Dmicrosoft-abi-sret-and-byval.cpp11 struct Small { struct
51 Small small_return() { return Small(); }
52 // LINUX: define void @_Z12small_returnv(%struct.Small* noalias sret %agg.result)
89 void small_arg(Small s) {}
90 // LINUX: define void @_Z9small_arg5Small(%struct.Small* byval align 4 %s)
91 // WIN32: define void @"\01?small_arg@@YAXUSmall@@@Z"(%struct.Small* byval align 4 %s)
160 Small thiscall_method_small() { return Small(); }
161 // LINUX: define {{.*}} void @_ZN5Class21thiscall_method_smallEv(%struct.Small* noalia
[all...]
H A Dthunks.cpp184 struct Small { short s; }; struct in namespace:Test7
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/
H A DCodeGen.h30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large }; enumerator in enum:llvm::CodeModel::Model
61 return CodeModel::Small;
78 case CodeModel::Small:
/external/eigen/Eigen/src/Core/
H A DGeneralProduct.h40 Small = 3 enumerator in enum:Eigen::__anon16992
53 : Small
104 * This is a compile time mapping from {1,Small,Large}^3 -> {product types} */
109 template<> struct product_type_selector<Small,1, Small> { enum { ret = CoeffBasedProductMode }; };
110 template<> struct product_type_selector<1, Small,Small> { enum { ret = CoeffBasedProductMode }; };
111 template<> struct product_type_selector<Small,Small,Small> { enu
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp51 if (CM == CodeModel::Small)
/external/llvm/include/llvm/ADT/
H A DDenseMap.h698 unsigned Small : 1;
708 /// a large bucket. This union will be discriminated by the 'Small' bit.
747 if (Small && RHS.Small) {
776 if (!Small && !RHS.Small) {
782 SmallDenseMap &SmallSide = Small ? *this : RHS;
783 SmallDenseMap &LargeSide = Small ? RHS : *this;
788 LargeSide.Small = true;
807 SmallSide.Small
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DEnumMapTest.java34 Small, Middle, Big {}; enum constant in enum:EnumMapTest.Size
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), //
[all...]
/external/chromium_org/third_party/icu/source/data/sprep/
H A Dspreplocal.mk19 # rfc3722 : String Profile for Internet Small Computer
/external/chromium_org/third_party/sqlite/src/tool/
H A Dsoak1.tcl94 scenario 4 {Small-Cache} {
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCTargetDesc.cpp56 // abs32 Static Small text+data+bss linked below 2^32 bytes
59 // pic13 PIC_ Small GOT < 2^13 bytes
71 CM = RM == Reloc::PIC_ ? CodeModel::Medium : CodeModel::Small;
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dbloom_test.cc93 TEST(BloomTest, Small) {
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCTargetDesc.cpp114 // Small: BRASL can call any function and will use a stub if necessary.
126 // requirements of Small, so Small seems like the best default there.
133 // Any executable smaller than 4GB meets the requirements of Small,
142 CM = CodeModel::Small;
144 CM = RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp84 CM = CodeModel::Small;
/external/llvm/lib/MC/
H A DMCObjectFileInfo.cpp256 ((CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
259 (CMModel == CodeModel::Small
263 ((CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
267 (CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
269 LSDAEncoding = (CMModel == CodeModel::Small)
272 TTypeEncoding = (CMModel == CodeModel::Small)
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp346 // For static codegen, if we're not already set, use Small codegen.
348 CM = CodeModel::Small;
351 CM = is64Bit ? CodeModel::Large : CodeModel::Small;
/external/llvm/include/llvm/CodeGen/
H A DCommandFlags.h61 clEnumValN(CodeModel::Small, "small",
62 "Small code model"),
/external/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp135 if (CModel == CodeModel::Small || CModel == CodeModel::JITDefault)
/external/llvm/tools/lli/
H A Dlli.cpp156 clEnumValN(CodeModel::Small, "small",
157 "Small code model"),
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp135 clEnumValN(CodeModel::Small, "small",
136 "Small code model"),
/external/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc59 TEST(RepeatedField, Small) {
274 TEST(RepeatedPtrField, Small) {
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp350 CM = llvm::CodeModel::Small;
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp248 case CodeModel::Small: {

Completed in 587 milliseconds

12