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

123

/external/clang/test/CodeGen/
H A Dx86_32-fpcc-struct-return.c12 typedef struct { int i; } Small; typedef in typeref:struct:__anon2301
24 Small returnSmall(Small x) { return x; }
H A Daarch64-type-sizes.c84 enum Small { enum
89 return sizeof(enum Small);
H A Darm64-aapcs-arguments.c7 typedef union { __int128 a; } Small; typedef in typeref:union:__anon2120
8 void test1(int x0, __int128 x2_x3, __int128 x4_x5, __int128 x6_x7, Small sp) {
13 void test2(int x0, Small x2_x3, int x4, Small x6_x7, int sp, Small sp16) {
H A Dvectorcall.c12 struct Small { int a; }; struct
13 void __vectorcall v3(int a, struct Small b, int c) {}
14 // CHECK: define x86_vectorcallcc void @"\01v3@@12"(i32 inreg %a, %struct.Small* byval align 4 %b, i32 inreg %c)
/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
65 Small small_return() { return Small(); }
66 // LINUX-LABEL: define void @_Z12small_returnv(%struct.Small* noalias sret %agg.result)
103 void small_arg(Small s) {}
105 // WIN32: define void @"\01?small_arg@@YAXUSmall@@@Z"(%struct.Small* byval align 4 %s)
201 Small thiscall_method_small() { return Small(); }
202 // LINUX: define {{.*}} void @_ZN5Class21thiscall_method_smallEv(%struct.Small* noalias sret %agg.result, %class.Class* %this)
203 // WIN32: define {{.*}} x86_thiscallcc void @"\01?thiscall_method_small@Class@@QAE?AUSmall@@XZ"(%class.Class* %this, %struct.Small* noalia
[all...]
H A Dthunks.cpp188 struct Small { short s; }; struct in namespace:Test7
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/llvm/include/llvm/Support/
H A DCodeGen.h30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large }; enumerator in enum:llvm::CodeModel::Model
34 enum Level { Default=0, Small=1, Large=2 }; enumerator in enum:llvm::PICLevel::Level
65 return CodeModel::Small;
82 case CodeModel::Small:
/external/eigen/Eigen/src/Core/
H A DGeneralProduct.h40 Small = 3 enumerator in enum:Eigen::__anon5082
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/include/llvm/ADT/
H A DDenseMap.h702 unsigned Small : 1;
712 /// a large bucket. This union will be discriminated by the 'Small' bit.
749 if (Small && RHS.Small) {
778 if (!Small && !RHS.Small) {
784 SmallDenseMap &SmallSide = Small ? *this : RHS;
785 SmallDenseMap &LargeSide = Small ? RHS : *this;
790 LargeSide.Small = true;
809 SmallSide.Small
[all...]
/external/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreMCTargetDesc.cpp74 CM = CodeModel::Small;
76 if (CM != CodeModel::Small && CM != CodeModel::Large)
77 report_fatal_error("Target only supports CodeModel Small or Large");
/external/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp65 if (CM == CodeModel::Small)
/external/libbrillo/brillo/
H A Dany_internal_impl_unittest.cc77 struct Small { struct
83 EXPECT_STREQ(GetTypeTag<Small>(), buffer.GetDataPtr()->GetTypeTag());
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp83 CM = CodeModel::Small;
89 else if (CM != CodeModel::Small && CM != CodeModel::Large)
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCTargetDesc.cpp76 // abs32 Static Small text+data+bss linked below 2^32 bytes
79 // pic13 PIC_ Small GOT < 2^13 bytes
95 case CodeModel::JITDefault: CM = CodeModel::Small; break;
113 CM = RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
/external/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.cpp76 if (TM.getCodeModel() == CodeModel::Small && GV->hasExternalWeakLinkage()) {
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp193 // For static codegen, if we're not already set, use Small codegen.
195 CM = CodeModel::Small;
198 CM = is64Bit ? CodeModel::Large : CodeModel::Small;
/external/llvm/bindings/ocaml/target/
H A Dllvm_target.ml36 | Small Constructor in type:CodeModel/t
H A Dllvm_target.mli41 | Small
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCTargetDesc.cpp175 // Small: BRASL can call any function and will use a stub if necessary.
187 // requirements of Small, so Small seems like the best default there.
194 // Any executable smaller than 4GB meets the requirements of Small,
203 CM = CodeModel::Small;
205 CM = RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
/external/llvm/lib/MC/
H A DMCObjectFileInfo.cpp320 ((CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
323 (CMModel == CodeModel::Small
326 ((CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
330 (CMModel == CodeModel::Small || CMModel == CodeModel::Medium)
332 LSDAEncoding = (CMModel == CodeModel::Small)
334 TTypeEncoding = (CMModel == CodeModel::Small)
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
H A DFreeTypeAtlasTest.java49 Tiny(10), Small(12), Medium(16), Large(20), Huge(24), ReallyHuge(28), JustTooBig(64); enum constant in enum:FreeTypeAtlasTest.FontSize
H A DFreeTypePackTest.java45 Tiny(10), Small(12), Medium(16), Large(20), Huge(24), ReallyHuge(28), JustTooBig(64); enum constant in enum:FreeTypePackTest.FontSize
/external/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp127 if (TM.getCodeModel() == CodeModel::Small || !ObjType->isSized() ||
/external/llvm/include/llvm/CodeGen/
H A DCommandFlags.h80 clEnumValN(CodeModel::Small, "small",
81 "Small code model"),

Completed in 900 milliseconds

123