HomeSort by relevance Sort by last modified time
    Searched refs:k1 (Results 101 - 125 of 363) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /external/chromium_org/third_party/icu/source/test/intltest/
thcoll.cpp 169 CollationKey k1, k2; local
170 coll->getCollationKey(lastWord, k1, status);
176 msg.append("key1: ").append(prettify(k1, str)).append("\n");
288 CollationKey k1, k2;
289 c.getCollationKey(s1, k1, status);
295 errln((UnicodeString)" key1: " + prettify(k1, t1) );
301 CollationKey k1, k2;
302 c.getCollationKey(s1, k1, status);
309 result = k1.compareTo(k2);
317 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableListMultimap.java 67 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) {
70 builder.put(k1, v1);
77 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) {
80 builder.put(k1, v1);
89 K k1, V v1, K k2, V v2, K k3, V v3) {
92 builder.put(k1, v1);
102 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
105 builder.put(k1, v1);
116 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
119 builder.put(k1, v1)
    [all...]
ImmutableMap.java 74 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) {
76 checkNotNull(k1), checkNotNull(v1));
84 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) {
85 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2));
94 K k1, V v1, K k2, V v2, K k3, V v3) {
96 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3));
105 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
107 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4));
116 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
117 return new RegularImmutableMap<K, V>(entryOf(k1, v1)
    [all...]
ForwardingSortedMap.java 96 private int unsafeCompare(Object k1, Object k2) {
99 return ((Comparable<Object>) k1).compareTo(k2);
101 return ((Comparator<Object>) comparator).compare(k1, k2);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimap.java 62 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) {
65 builder.put(k1, v1);
72 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) {
75 builder.put(k1, v1);
84 K k1, V v1, K k2, V v2, K k3, V v3) {
87 builder.put(k1, v1);
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
100 builder.put(k1, v1);
111 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
114 builder.put(k1, v1)
    [all...]
ImmutableMap.java 72 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) {
74 checkNotNull(k1), checkNotNull(v1));
77 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) {
78 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2));
82 K k1, V v1, K k2, V v2, K k3, V v3) {
84 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3));
88 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
90 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4));
94 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
95 return new RegularImmutableMap<K, V>(entryOf(k1, v1)
    [all...]
  /external/icu/icu4c/source/test/intltest/
thcoll.cpp 169 CollationKey k1, k2; local
170 coll->getCollationKey(lastWord, k1, status);
176 msg.append("key1: ").append(prettify(k1, str)).append("\n");
288 CollationKey k1, k2;
289 c.getCollationKey(s1, k1, status);
295 errln((UnicodeString)" key1: " + prettify(k1, t1) );
301 CollationKey k1, k2;
302 c.getCollationKey(s1, k1, status);
309 result = k1.compareTo(k2);
317 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
  /external/clang/test/Parser/
cxx-ambig-init-templ.cpp 8 int k1 = a < b < c, d > ::val, e1;
24 int k1 = a < b < c, d > ::val,
34 int k1 = c < b, T3 < int > x = 0 // expected-error {{unexpected end of default argument expression}}
40 int k1 = c < b, T3 < int > x = 0 // ok
50 int k1 = a<1,2>::val,
55 int k1 = b < c,
146 int k1 = T1<0, operator<, operator>, operator<>::val, l1;
  /external/valgrind/main/perf/
ffbench.c 174 int ibit, idim, k1, k2, n, nprev, nrem, ntot; local
218 k1 = i2;
219 k2 = k1 + ifp1;
222 data[k2] = data[k1] - tempr;
223 data[k2 + 1] = data[k1 + 1] - tempi;
224 data[k1] += tempr;
225 data[k1 + 1] += tempi;
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
stack_trace_table_test.cc 40 static const uintptr_t k1[] = {0}; local
41 CheckTracesAndReset(&table, k1, ARRAYSIZE(k1));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
stack_trace_table_test.cc 40 static const uintptr_t k1[] = {0}; local
41 CheckTracesAndReset(&table, k1, ARRAYSIZE(k1));
  /external/clang/test/SemaTemplate/
instantiate-declref.cpp 10 static enum K1 { K1Val = sizeof(T) } Kind1;
15 K1 k1 = K1Val; local
23 K1 k1 = K1Val; local
46 enum { K1Val = sizeof(T) } k1; local
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
HermiteInterpolator.java 154 final float k1 = 1.0f + tm2; local
158 mInterpolatedX = (k1 * mP1X + t * mSlope1X) * omt2 + (k2 * mP2X - omt * mSlope2X) * t2;
159 mInterpolatedY = (k1 * mP1Y + t * mSlope1Y) * omt2 + (k2 * mP2Y - omt * mSlope2Y) * t2;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 480 * PPB: The integer <code>k1</code> where <code>x<sup>m</sup> +
481 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
484 private int k1; // can't be final - JDK 1.1 field in class:ECCurve.F2m
489 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
497 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
585 * @param k1 The integer <code>k1</code> where <code>x<sup>m</sup> +
586 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
589 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
592 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code
    [all...]
  /bionic/libc/arch-mips64/include/machine/
regdef.h 93 #define k1 $27 macro
  /development/ndk/platforms/android-L/arch-mips64/include/machine/
regdef.h 93 #define k1 $27 macro
  /external/clang/test/CXX/expr/expr.ass/
p9-cxx11.cpp 33 int k1 = T() = { 1, 2 } = { 3, 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '='}} variable

Completed in 1210 milliseconds

1 2 3 45 6 7 8 91011>>