/external/clang/test/CodeGen/ |
x86_32-fpcc-struct-return.c | 12 typedef struct { int i; } Small; 24 Small returnSmall(Small x) { return x; }
|
aarch64-type-sizes.c | 82 enum Small { 87 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 { 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* 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/include/llvm/Support/ |
CodeGen.h | 30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large }; 61 return CodeModel::Small; 78 case CodeModel::Small:
|
/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/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/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...] |
/external/dropbear/libtommath/ |
bn.tex | 17 \def\approx{\raisebox{0.2ex}{\mbox{\small $\sim$}}} 183 \begin{small} 192 \end{small} 201 \begin{small} 222 \end{small} 225 \begin{small} 241 \end{small} 262 \begin{small} 276 \end{small} 280 It may seem odd to compare LibTomMath to GnuPG since the math in GnuPG is only a small portion of the entire application. [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/base/core/java/android/text/ |
Html.java | 500 } else if (tag.equalsIgnoreCase("small")) { 501 start(mSpannableStringBuilder, new Small()); 550 } else if (tag.equalsIgnoreCase("small")) { 551 end(mSpannableStringBuilder, Small.class, new RelativeSizeSpan(0.8f)); 822 private static class Small { }
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.cpp | [all...] |