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

1 2 3 45 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
SincResampler.cpp 240 float* k2 = k1 + m_kernelSize; local
258 sum2 += input * *k2; \
260 ++k2;
283 bool k2Aligned = !(reinterpret_cast<uintptr_t>(k2) & 0x0F);
288 mK2 = _mm_##l2##_ps(k2);
297 k2 += 4;
304 } else if (!k1Aligned && k2Aligned) { // only k2 aligned
  /external/chromium_org/third_party/smhasher/src/
MurmurHash2.cpp 159 uint32_t k2 = *data++; local
160 k2 *= m; k2 ^= k2 >> r; k2 *= m;
161 h2 *= m; h2 ^= k2;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 477 int k2 = 3;
486 ECCurve curve = new ECCurve.F2m(m, k1, k2, k3, a, b, n, h);
506 int k2 = 3;
515 ECCurve curve = new ECCurve.F2m(m, k1, k2, k3, a, b, n, h);
535 int k2 = 6;
544 ECCurve curve = new ECCurve.F2m(m, k1, k2, k3, a, b, n, h);
564 int k2 = 6;
573 ECCurve curve = new ECCurve.F2m(m, k1, k2, k3, a, b, n, h);
593 int k2 = 6;
602 ECCurve curve = new ECCurve.F2m(m, k1, k2, k3, a, b, n, h)
    [all...]
  /external/chromium_org/chrome/app/
chrome_exe_main_win.cc 37 unsigned short k2 = ::GetAsyncKeyState(VK_MENU); local
39 if ((k1 & kPressedMask) && (k2 & kPressedMask))
  /external/guava/guava/src/com/google/common/collect/
ImmutableMultimap.java 79 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) {
80 return ImmutableListMultimap.of(k1, v1, k2, v2);
87 K k1, V v1, K k2, V v2, K k3, V v3) {
88 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3);
95 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
96 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4);
103 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
104 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5);
ImmutableSetMultimap.java 83 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) {
86 builder.put(k2, v2);
96 K k1, V v1, K k2, V v2, K k3, V v3) {
99 builder.put(k2, v2);
110 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
113 builder.put(k2, v2);
125 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
128 builder.put(k2, v2);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimap.java 78 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) {
79 return ImmutableListMultimap.of(k1, v1, k2, v2);
86 K k1, V v1, K k2, V v2, K k3, V v3) {
87 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3);
94 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
95 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4);
102 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
103 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5);
ImmutableSetMultimap.java 78 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) {
81 builder.put(k2, v2);
91 K k1, V v1, K k2, V v2, K k3, V v3) {
94 builder.put(k2, v2);
105 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
108 builder.put(k2, v2);
120 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
123 builder.put(k2, v2);
ImmutableSortedMap.java 98 of(K k1, V v1, K k2, V v2) {
100 .put(k1, v1).put(k2, v2).build();
104 of(K k1, V v1, K k2, V v2, K k3, V v3) {
106 .put(k1, v1).put(k2, v2).put(k3, v3).build();
110 of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 .put(k1, v1).put(k2, v2).put(k3, v3).put(k4, v4).build();
116 of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
118 .put(k1, v1).put(k2, v2).put(k3, v3).put(k4, v4).put(k5, v5).build();
  /external/openfst/src/include/fst/
bi-table.h 228 bool operator()(I k1, I k2) const {
229 if (k1 >= kCurrentKey && k2 >= kCurrentKey) {
230 return (*ht_->hash_equal_)(ht_->Key2Entry(k1), ht_->Key2Entry(k2));
232 return k1 == k2;
437 bool operator()(I k1, I k2) const {
438 if (k1 >= kCurrentKey && k2 >= kCurrentKey) {
439 return ht_->Key2Entry(k1) == ht_->Key2Entry(k2);
441 return k1 == k2;
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des.c 371 DES_cblock kk,k2; local
427 k2[i-8]=k;
429 DES_set_key_unchecked(&k2,&ks2);
430 OPENSSL_cleanse(k2,sizeof(k2));
436 DES_string_to_2keys(key,&kk,&k2);
437 DES_set_key_unchecked(&k2,&ks2);
438 OPENSSL_cleanse(k2,sizeof(k2));
676 OPENSSL_cleanse(k2,sizeof(k2))
    [all...]
  /external/openssl/crypto/des/
des.c 371 DES_cblock kk,k2; local
427 k2[i-8]=k;
429 DES_set_key_unchecked(&k2,&ks2);
430 OPENSSL_cleanse(k2,sizeof(k2));
436 DES_string_to_2keys(key,&kk,&k2);
437 DES_set_key_unchecked(&k2,&ks2);
438 OPENSSL_cleanse(k2,sizeof(k2));
676 OPENSSL_cleanse(k2,sizeof(k2))
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h 64 template <class Tuple, int k0 = -1, int k1 = -1, int k2 = -1, int k3 = -1,
70 template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5, int k6,
75 GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
82 return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t),
120 template <class Tuple, int k0, int k1, int k2>
121 class TupleFields<Tuple, k0, k1, k2, -1, -1, -1, -1, -1, -1, -1> {
124 GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2)> type;
127 return type(get<k0>(t), get<k1>(t), get<k2>(t));
131 template <class Tuple, int k0, int k1, int k2, int k3>
132 class TupleFields<Tuple, k0, k1, k2, k3, -1, -1, -1, -1, -1, -1>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFECompositeElement.h 94 DECLARE_ANIMATED_NUMBER(K2, k2)
  /external/clang/test/SemaCXX/
address-of-temporary.cpp 53 void k2() { consume(S { A{} }); } function in namespace:PointerToArrayDecay
typedef-redecl.cpp 61 int k2 = k; variable
using-directive.cpp 48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}}
51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}}
57 struct K2 *k2; // expected-error{{reference to 'K2' is ambiguous}} variable in typeref:struct:K2
59 K2 *k3; // expected-error{{reference to 'K2' is ambiguous}}
67 struct K2;
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 174 double k1,k2; local
177 k2=db_sqr(H[6])+db_sqr(H[7]);
178 if(k1>=k2)
184 return(db_SafeSqrt(db_SafeDivision(1.0-db_sqr(H[8]),k2)));
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_camera.h 174 double k1,k2; local
177 k2=db_sqr(H[6])+db_sqr(H[7]);
178 if(k1>=k2)
184 return(db_SafeSqrt(db_SafeDivision(1.0-db_sqr(H[8]),k2)));
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 174 double k1,k2; local
177 k2=db_sqr(H[6])+db_sqr(H[7]);
178 if(k1>=k2)
184 return(db_SafeSqrt(db_SafeDivision(1.0-db_sqr(H[8]),k2)));
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 84 for(Index k2=0; k2<depth; k2+=kc)
86 const Index actual_kc = (std::min)(k2+kc,depth)-k2;
89 pack_rhs(blockB, &rhs(k2,0), rhsStride, actual_kc, size);
95 pack_lhs(blockA, &lhs(i2, k2), lhsStride, actual_kc, actual_mc);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
NodeSorter.java 531 NodeSortKey k2 = (NodeSortKey) m_keys.elementAt(1); local
533 XObject r2 = k2.m_selectPat.execute(m_execContext, node,
534 k2.m_namespaceContext);
536 if (k2.m_treatAsNumbers) {
540 m_key2Value = k2.m_col.getCollationKey(r2.str());
  /external/srec/srec/cfront/
sp_fft.c 427 unsigned k1, k2, k3; local
433 k2 = k1 + quarterLength;
434 k3 = k2 + quarterLength;
438 r2 = data[k2];
442 i2 = data[k2+1];
468 data[k2] = r2;
469 data[k2+1] = -i2;
475 complex_multiplier(cc1, -ss1, r2, -i2, data + k2, data + k2 + 1);
  /external/tremolo/Tremolo/
floor1.c 84 int k2=mid; local
86 while(k1<mid && k2<end){
87 if(vals[A[k1]]<vals[A[k2]])
90 B[j++]=A[k2++];
93 while(k2<end) B[j++]=A[k2++];
  /dalvik/vm/compiler/codegen/x86/
AnalysisO1.cpp 337 int k, k2; local
343 for(k2 = 0; k2 < num_compile_entries; k2++) {
344 if(compileTable[k2].physicalReg == k) {
539 int k, k2, k3, jj; local
551 for(k2 = 0; k2 < num_bbs_for_method; k2++) {
552 currentBB = method_bbs_sorted[k2];
1072 int k, k2; local
1234 int k, k2; local
1834 int k2; local
    [all...]

Completed in 1570 milliseconds

1 2 3 45 6 7 8 910