HomeSort by relevance Sort by last modified time
    Searched refs:k1 (Results 76 - 100 of 286) sorted by null

1 2 34 5 6 7 8 91011>>

  /bionic/libc/kernel/arch-mips/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /development/ndk/platforms/android-9/arch-mips/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9FieldElement.java 31 public X9FieldElement(int m, int k1, int k2, int k3, ASN1OctetString s)
33 this(new ECFieldElement.F2m(m, k1, k2, k3, new BigInteger(1, s.getOctets())));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFECompositeElement.idl 41 readonly attribute SVGAnimatedNumber k1;
  /external/kernel-headers/original/asm-mips/
regdef.h 48 #define k1 $27 macro
91 #define k1 $27 macro
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
regdef.h 59 #define k1 $27 macro
109 #define k1 $27 macro
  /prebuilts/ndk/8/platforms/android-9/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-18/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/icu4c/test/intltest/
thcoll.cpp 168 CollationKey k1, k2; local
169 coll->getCollationKey(lastWord, k1, status);
175 msg.append("key1: ").append(prettify(k1, str)).append("\n");
287 CollationKey k1, k2;
288 c.getCollationKey(s1, k1, status);
294 errln((UnicodeString)" key1: " + prettify(k1, t1) );
300 CollationKey k1, k2;
301 c.getCollationKey(s1, k1, status);
308 result = k1.compareTo(k2);
316 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
  /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/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
  /external/clang/test/SemaCXX/
dr1301.cpp 66 int k1 = K().j.n; // expected-error {{call to implicitly-deleted default}} variable
  /external/eigen/test/
product_large.cpp 46 std::ptrdiff_t k1 = internal::random<int>(10,100)*16; local
50 internal::computeProductBlockingSizes<float,float>(k1,m1,n1);

Completed in 1457 milliseconds

1 2 34 5 6 7 8 91011>>