Searched refs:k2 (Results 126 - 150 of 209) sorted by relevance

123456789

/external/jemalloc/src/
H A Dckh.c536 ckh_string_keycomp(const void *k1, const void *k2) argument
540 assert(k2 != NULL);
542 return (strcmp((char *)k1, (char *)k2) ? false : true);
559 ckh_pointer_keycomp(const void *k1, const void *k2) argument
562 return ((k1 == k2) ? true : false);
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixMatrix.h163 for(Index k2=0; k2<depth; k2+=kc)
165 const Index actual_kc = (std::min)(k2+kc,depth)-k2;
171 pack_rhs(blockB, &rhs(k2,0), rhsStride, actual_kc, cols);
182 pack_lhs(blockA, &lhs(i2,k2), lhsStride, actual_kc, actual_mc);
H A DGeneralMatrixMatrixTriangular.h87 for(Index k2=0; k2<depth; k2+=kc)
89 const Index actual_kc = (std::min)(k2+kc,depth)-k2;
92 pack_rhs(blockB, &rhs(k2,0), rhsStride, actual_kc, size);
98 pack_lhs(blockA, &lhs(i2, k2), lhsStride, actual_kc, actual_mc);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DTwofishEngine.java391 int k2 = sBoxKeys[2];
413 b0 = (P[P_03][b0] & 0xff) ^ b0(k2);
414 b1 = (P[P_13][b1] & 0xff) ^ b1(k2);
415 b2 = (P[P_23][b2] & 0xff) ^ b2(k2);
416 b3 = (P[P_33][b3] & 0xff) ^ b3(k2);
531 int k2 = k32[2];
549 b0 = (P[P_03][b0] & 0xff) ^ b0(k2);
550 b1 = (P[P_13][b1] & 0xff) ^ b1(k2);
551 b2 = (P[P_23][b2] & 0xff) ^ b2(k2);
552 b3 = (P[P_33][b3] & 0xff) ^ b3(k2);
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_handler_ntlm_portable.cc267 uint8 k1[8], k2[8]; local
269 DESMakeKey(reinterpret_cast<const uint8*>(passbuf.data()) + 7, k2);
274 DESEncrypt(k2, LM_MAGIC, hash + 8);
314 uint8 keybytes[21], k1[8], k2[8], k3[8]; local
320 DESMakeKey(keybytes + 7, k2);
324 DESEncrypt(k2, challenge, response + 8);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_subpixel_8t_sse2.asm24 pshuflw xmm2, xmm7, 10101010b ;k2
97 pshuflw xmm2, xmm7, 10101010b ;k2
115 movdqa k2, xmm2
156 pmullw xmm2, k2
270 %define k2 [rsp + 16 * 2]
329 %define k2 [rsp + 16 * 2]
441 %define k2 [rsp + 16 * 2]
490 %define k2 [rsp + 16 * 2]
625 %define k2 [rsp + 16 * 2]
700 %define k2 [rs
[all...]
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_subpixel_8t_sse2.asm24 pshuflw xmm2, xmm7, 10101010b ;k2
97 pshuflw xmm2, xmm7, 10101010b ;k2
115 movdqa k2, xmm2
156 pmullw xmm2, k2
270 %define k2 [rsp + 16 * 2]
329 %define k2 [rsp + 16 * 2]
441 %define k2 [rsp + 16 * 2]
490 %define k2 [rsp + 16 * 2]
625 %define k2 [rsp + 16 * 2]
700 %define k2 [rs
[all...]
/external/clang/test/SemaCXX/
H A Dcxx1y-deduced-return-type.cpp129 int k2 = fwd_decl<char>(); member in namespace:Templates
299 int k2 = ((V&)w).f(); member in namespace:Virtual
400 int k2 = S<int>().h(false); member in namespace:CurrentInstantiation
/external/openssl/crypto/ec/
H A Dec_asn1.c106 unsigned int *k2, unsigned int *k3)
121 if (k2)
122 *k2 = group->poly[2];
134 long k2; member in struct:x9_62_pentanomial_st
202 ASN1_SIMPLE(X9_62_PENTANOMIAL, k2, LONG),
401 unsigned int k1, k2, k3;
403 if (!EC_GROUP_get_pentanomial_basis(group, &k1, &k2, &k3))
415 char_two->p.ppBasis->k2 = (long)k2;
852 if (!(char_two->m > penta->k3 && penta->k3 > penta->k2
105 EC_GROUP_get_pentanomial_basis(const EC_GROUP *group, unsigned int *k1, unsigned int *k2, unsigned int *k3) argument
[all...]
/external/clang/test/Parser/
H A Drecovery.cpp46 int k2 = S().f() + N::g(); member in struct:MissingBrace::S
/external/clang/test/Sema/
H A Dstruct-packed-align.c107 extern int k2[__alignof(union au6) == 2 ? 1 : -1];
/external/opencv/cv/src/
H A Dcvundistort.cpp55 float k1 = dist_coeffs[0], k2 = dist_coeffs[1], k3 = dist_coeffs[4]; local
68 float kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2;
106 float fx, float fy, float cx, float cy, float k1, float k2, uchar *pBuffer );
193 float u0, v0, fx, fy, ifx, ify, x0, y0, k1, k2, k3, p1, p2; local
233 k1 = k[0]; k2 = k[1]; k3 = k[4];
247 double kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2;
277 double fx, fy, u0, v0, k1, k2, k3, p1, p2; local
342 k1 = k[0]; k2 = k[1]; k3 = k[4];
358 double kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
H A Datlantis.c75 static double k2 = 0.05; local
78 save[1] = save[0]*k1 + k2*(save[3] + save[2]);
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
H A Datlantis.c75 static double k2 = 0.05; local
78 save[1] = save[0]*k1 + k2*(save[3] + save[2]);
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
H A Datlantis.c75 static double k2 = 0.05; local
78 save[1] = save[0]*k1 + k2*(save[3] + save[2]);
/external/llvm/include/llvm/ADT/
H A DHashing.h170 static const uint64_t k2 = 0x9ae16a3b2f90404fULL; member in namespace:llvm::hashing::detail
202 return shift_mix(y * k2 ^ z * k3 ^ seed) * k2;
219 uint64_t c = fetch64(s + len - 8) * k2;
244 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0);
245 return shift_mix((seed ^ (r * k0)) + vs) * k2;
260 return k2 ^ seed;
/external/aac/libSBRenc/src/
H A Dnf_est.cpp521 INT k2,kx;
526 k2=freqBandTable[nSfb];
538 ratio = fDivNorm(k2, kx, &ratio_e);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A Djsdifflib.js261 k2 = block[2];
263 k1 += k2;
268 k1 = k2;
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Dfft4g.c1004 int j, k1, k2; local
1048 k2 = 2 * k1;
1051 wk1r = w[k2];
1052 wk1i = w[k2 + 1];
1077 wk1r = w[k2 + 2];
1078 wk1i = w[k2 + 3];
1109 int j, j1, j2, j3, k, k1, k2, m, m2; local
1165 k2 = 2 * k1;
1168 wk1r = w[k2];
1169 wk1i = w[k2
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-bce.cc297 BoundsCheckKey* k2 = static_cast<BoundsCheckKey*>(key2); local
298 return k1->IndexBase() == k2->IndexBase() && k1->Length() == k2->Length();
/external/opencv/ml/src/
H A Dmlknearest.cpp153 int i, j, count = end - start, k1 = 0, k2 = 0, d = var_count; local
194 for( ii1 = k2 - 1; ii1 > ii; ii1-- )
206 k2 = MIN( k1, k-1 );
/external/webrtc/src/modules/audio_processing/utility/
H A Dfft4g.c1004 int j, k1, k2; local
1048 k2 = 2 * k1;
1051 wk1r = w[k2];
1052 wk1i = w[k2 + 1];
1077 wk1r = w[k2 + 2];
1078 wk1i = w[k2 + 3];
1109 int j, j1, j2, j3, k, k1, k2, m, m2; local
1165 k2 = 2 * k1;
1168 wk1r = w[k2];
1169 wk1i = w[k2
[all...]
/external/ceres-solver/examples/
H A Dlibmv_bundle_adjuster.cc52 // - Focal length, principal point X, principal point Y, k1, k2, k3, p1, p2
167 // BUNDLE_RADIAL actually implies bundling of k1 and k2 coefficients only,
458 const T &k2,
473 T r_coeff = (T(1) + k1*r2 + k2*r4 + k3*r6);
502 const T& k2 = intrinsics[OFFSET_K2]; local
528 k1, k2, k3,
563 APPEND_BUNDLING_INTRINSICS("k2", BUNDLE_RADIAL_K2);
589 APPEND_DISTORTION_COEFFICIENT("k2", OFFSET_K2);
453 ApplyRadialDistortionCameraIntrinsics(const T &focal_length_x, const T &focal_length_y, const T &principal_point_x, const T &principal_point_y, const T &k1, const T &k2, const T &k3, const T &p1, const T &p2, const T &normalized_x, const T &normalized_y, T *image_x, T *image_y) argument
/external/clang/test/SemaTemplate/
H A Dconstexpr-instantiate.cpp157 int k2 = sizeof(short{S2(S2())}); // expected-error {{cannot be narrowed}} expected-note {{insert an explicit cast to silence this issue}} member in namespace:Unevaluated::PR11851_Comment9
/external/eigen/Eigen/src/OrderingMethods/
H A DAmd.h96 k2, k3, jlast, ln, dense, nzmax, mindeg = 0, nvi, nvj, nvk, mark, wnvi, local
224 for(k2 = 1; k2 <= ln; k2++)

Completed in 5311 milliseconds

123456789