HomeSort by relevance Sort by last modified time
    Searched refs:k2 (Results 151 - 175 of 277) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_subpixel_8t_sse2.asm 24 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 [rsp + 16 * 2
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_subpixel_8t_sse2.asm 24 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 [rsp + 16 * 2
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_subpixel_8t_sse2.asm 24 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 [rsp + 16 * 2
    [all...]
  /external/openssl/crypto/ec/
ec_asn1.c 106 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 && penta->k2 > penta->k1 && penta->k1 > 0)
    [all...]
  /external/clang/test/Parser/
recovery.cpp 46 int k2 = S().f() + N::g(); member in struct:MissingBrace::S
  /external/clang/test/Sema/
struct-packed-align.c 107 extern int k2[__alignof(union au6) == 2 ? 1 : -1];
  /external/opencv/cv/src/
cvundistort.cpp 55 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/chromium_org/third_party/smhasher/src/
Stats.h 86 keytype & k2 = (*it).second; local
91 printbits(&k2,sizeof(keytype));
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
atlantis.c 75 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/
atlantis.c 75 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/
atlantis.c 75 static double k2 = 0.05; local
78 save[1] = save[0]*k1 + k2*(save[3] + save[2]);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 279 def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2
281 pos2key2(1, 2, k1=100, k2=200)
282 pos2key2(1, 2, k2=100, k1=200)
283 def pos2key2dict(p1, p2, *, k1=100, k2, **kwarg): return p1,p2,k1,k2,kwarg
284 pos2key2dict(1,2,k2=100,tokwarg1=100,tokwarg2=200)
285 pos2key2dict(1,2,tokwarg1=100,tokwarg2=200, k2=100)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 279 def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2
281 pos2key2(1, 2, k1=100, k2=200)
282 pos2key2(1, 2, k2=100, k1=200)
283 def pos2key2dict(p1, p2, *, k1=100, k2, **kwarg): return p1,p2,k1,k2,kwarg
284 pos2key2dict(1,2,k2=100,tokwarg1=100,tokwarg2=200)
285 pos2key2dict(1,2,tokwarg1=100,tokwarg2=200, k2=100)
  /external/llvm/include/llvm/ADT/
Hashing.h 170 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/
nf_est.cpp 521 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/
jsdifflib.js 261 k2 = block[2];
263 k1 += k2;
268 k1 = k2;
  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
fft4g.c 1004 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]
    [all...]
  /external/chromium_org/v8/src/
hydrogen-bce.cc 297 BoundsCheckKey* k2 = static_cast<BoundsCheckKey*>(key2); local
298 return k1->IndexBase() == k2->IndexBase() && k1->Length() == k2->Length();
  /external/clang/test/SemaCXX/
cxx1y-deduced-return-type.cpp 129 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/opencv/ml/src/
mlknearest.cpp 153 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/
fft4g.c 1004 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]
    [all...]
  /frameworks/native/services/sensorservice/
Fusion.cpp 412 const float k2 = cosf(hlwedT); local
414 const mat33_t O33(crossMatrix(-psi, k2));
419 O[3].xyz = psi; O[3].w = k2;
  /external/ceres-solver/examples/
libmv_bundle_adjuster.cc 52 // - 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);
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 96 k2, k3, jlast, ln, dense, nzmax, mindeg = 0, nvi, nvj, nvk, mark, wnvi, local
224 for(k2 = 1; k2 <= ln; k2++)
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 114 * @param k2 The XSLT name of the enumerated value.
115 * @param v2 An integer representation of k2.
118 boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2)
130 m_enums.put(k2, v2);
145 * @param k2 The XSLT name of the enumerated value.
146 * @param v2 An integer representation of k2.
151 boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3)
163 m_enums.put(k2, v2);
178 * @param k2 The XSLT name of the enumerated value.
179 * @param v2 An integer representation of k2
    [all...]

Completed in 1293 milliseconds

1 2 3 4 5 67 8 91011>>