HomeSort by relevance Sort by last modified time
    Searched defs:Small (Results 1 - 12 of 12) sorted by null

  /external/clang/test/CodeGen/
arm64-aapcs-arguments.c 7 typedef union { __int128 a; } Small;
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) {
x86_32-fpcc-struct-return.c 12 typedef struct { int i; } Small;
24 Small returnSmall(Small x) { return x; }
aarch64-type-sizes.c 84 enum Small {
89 return sizeof(enum Small);
  /external/clang/test/CodeGenCXX/
thiscall-struct-return.cpp 21 struct S __attribute__((thiscall)) Small() const {
38 (void)c.Small();
microsoft-abi-sret-and-byval.cpp 11 struct Small {
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) {}
104 // LINUX-LABEL: define void @_Z9small_arg5Small(%struct.Small* byval align 4 %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
    [all...]
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/bindings/ocaml/target/
llvm_target.ml 36 | Small
  /external/llvm/include/llvm/Support/
CodeGen.h 30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
61 return CodeModel::Small;
78 case CodeModel::Small:
  /libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java 158 c = @Small(e="E1", f=1695938256, g=7264081114510713000L),
159 d = { @Small(e="E2", f=1695938256, g=7264081114510713000L) })
162 @Small(e="E1", f=1695938256, g=7264081114510713000L)
171 c = @Small(e="E1", f=1695938256, g=7264081114510713000L),
172 d = { @Small(e="E2", f=1695938256, g=7264081114510713000L) })
173 @Small(e="E1", f=1695938256, g=7264081114510713000L)
189 Small c() default @Small;
190 Small[] d() default {};
194 public @interface Small {
    [all...]
  /external/eigen/Eigen/src/Core/
GeneralProduct.h 40 Small = 3
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> { enum { ret = CoeffBasedProductMode }; }
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/base/core/java/android/text/
Html.java 497 } else if (tag.equalsIgnoreCase("small")) {
498 start(mSpannableStringBuilder, new Small());
547 } else if (tag.equalsIgnoreCase("small")) {
548 end(mSpannableStringBuilder, Small.class, new RelativeSizeSpan(0.8f));
819 private static class Small { }

Completed in 452 milliseconds