HomeSort by relevance Sort by last modified time
    Searched defs:k1 (Results 51 - 75 of 227) sorted by null

1 23 4 5 6 7 8 910

  /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;
  /bionic/libc/arch-mips/include/machine/
regdef.h 86 #define k1 $27 macro
  /bionic/libc/arch-mips64/include/machine/
regdef.h 93 #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
  /development/ndk/platforms/android-9/arch-mips/include/machine/
regdef.h 86 #define k1 $27 macro
  /development/ndk/platforms/android-L/arch-mips/include/machine/
regdef.h 86 #define k1 $27 macro
  /development/ndk/platforms/android-L/arch-mips64/include/machine/
regdef.h 93 #define k1 $27 macro
  /development/perftests/panorama/feature_stab/db_vlvm/
db_metrics.h 328 int k1=0; local
356 x_i[k1]=x_i[ind1];
357 x_i[k1+1]=x_i[ind1+1];
359 xp_i[k1]=xp_i[ind1];
360 xp_i[k1+1]=xp_i[ind1+1];
362 k1=k1+2;
db_utilities_camera.h 174 double k1,k2; local
176 k1=db_sqr(H[2])+db_sqr(H[5]);
178 if(k1>=k2)
180 return(db_SafeSqrt(db_SafeDivision(k1,1.0-db_sqr(H[8]))));
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 195 Choose a stop band between k1 and 64 depending on stopFreq (0..13),
292 INT k1; local
306 k1 = 2*k0;
308 num_bands0 = numberOfBands(bpo_div16, k0, k1, 0);
309 num_bands1 = numberOfBands(bpo_div16, k1, k2, hHeaderData->bs_data.alterScale );
317 CalcBands(diff0, k0, k1, num_bands0);
327 CalcBands(diff1, k1, k2, num_bands1);
338 cumSum(k1, diff1, num_bands1, &v_k_master[num_bands0]);
343 k1=k2;
345 num_bands0 = numberOfBands(bpo_div16, k0, k1, 0)
    [all...]
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.cpp 424 INT k1 = 0, i; local
450 k1=2*k0;
452 num_bands0=numberOfBands(b_p_o, k0, k1, FL2FXCONST_DBL(0.5f));
453 num_bands1=numberOfBands(b_p_o, k1, k2, warp);
455 CalcBands(diff0, k0, k1, num_bands0);/*CalcBands1 => diff0 */
466 CalcBands(diff1, k1, k2, num_bands1); /* CalcBands2 => diff1 */
475 cumSum(k1, diff1, num_bands1, &v_k_master[num_bands0]);
481 k1=k2;
483 num_bands0=numberOfBands(b_p_o, k0, k1, FL2FXCONST_DBL(0.5f));
484 CalcBands(diff0, k0, k1, num_bands0);/* CalcBands1 => diff0 *
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
NodeSorter.java 497 NodeSortKey k1 = (NodeSortKey) m_keys.elementAt(0); local
498 XObject r = k1.m_selectPat.execute(m_execContext, node,
499 k1.m_namespaceContext);
503 if (k1.m_treatAsNumbers)
512 m_key1Value = k1.m_col.getCollationKey(r.str());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafUtil.java 114 BigInteger k0 = g, k1 = h; local
117 while (k0.signum() > 0 || k1.signum() > 0 || d0 > 0 || d1 > 0)
119 int n0 = (k0.intValue() + d0) & 7, n1 = (k1.intValue() + d1) & 7;
151 k1 = k1.shiftRight(1);
  /external/chromium_org/media/base/
sinc_resampler.cc 257 const float* const k1 = kernel_ptr + offset_idx * kKernelSize; local
258 const float* const k2 = k1 + kKernelSize;
260 // Ensure |k1|, |k2| are 16-byte aligned for SIMD usage. Should always be
262 DCHECK_EQ(0u, reinterpret_cast<uintptr_t>(k1) & 0x0F);
272 input_ptr, k1, k2, kernel_interpolation_factor);
311 float SincResampler::Convolve_C(const float* input_ptr, const float* k1,
321 sum1 += *input_ptr * *k1++;
331 float SincResampler::Convolve_SSE(const float* input_ptr, const float* k1,
343 m_sums1 = _mm_add_ps(m_sums1, _mm_mul_ps(m_input, _mm_load_ps(k1 + i)));
349 m_sums1 = _mm_add_ps(m_sums1, _mm_mul_ps(m_input, _mm_load_ps(k1 + i)))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
SincResampler.cpp 240 float* k1 = m_kernelStorage.data() + offsetIndex * m_kernelSize; local
241 float* k2 = k1 + m_kernelSize;
258 sum1 += input * *k1; \
260 ++k1; \
283 bool k1Aligned = !(reinterpret_cast<uintptr_t>(k1) & 0x0F);
288 mK1 = _mm_##l1##_ps(k1); \
297 k1 += 4; \
310 } else if (k1Aligned && !k2Aligned) { // only k1 aligned
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComposite.cpp 43 FEComposite::FEComposite(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
46 , m_k1(k1)
53 PassRefPtr<FEComposite> FEComposite::create(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
55 return adoptRef(new FEComposite(filter, type, k1, k2, k3, k4));
71 float FEComposite::k1() const function in class:WebCore::FEComposite
76 bool FEComposite::setK1(float k1)
78 if (m_k1 == k1)
80 m_k1 = k1;
133 float k1, float k2, float k3, float k4)
138 scaledK1 = k1 / 255.0f
    [all...]
  /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/chromium_org/third_party/smhasher/src/
City.cpp 94 static const uint64 k1 = 0xb492b66fbe98f273ULL; variable
144 uint64 a = Fetch64(s) * k1;
217 pair<uint64, uint64> w = WeakHashLen32WithSeeds(s + len - 32, y + k1, x);
218 x = x * k1 + Fetch64(s);
223 x = Rotate(x + y + v.first + Fetch64(s + 8), 37) * k1;
224 y = Rotate(y + v.second + Fetch64(s + 48), 42) * k1;
227 z = Rotate(z + w.first, 33) * k1;
228 v = WeakHashLen32WithSeeds(s, v.second * k1, x + w.first);
234 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z,
256 a = ShiftMix(a * k1) * k1
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
fft.c 74 int16_t k0, k1, k2, k3, k4, kk; local
99 k1 = k0 + 60;
100 k2 = k1 + 60;
105 ajpQx = RexQx[k1] + RexQx[k3];
106 ajmQx = RexQx[k1] - RexQx[k3];
109 bjpQx = ImxQx[k1] + ImxQx[k3];
110 bjmQx = ImxQx[k1] - ImxQx[k3];
141 // RexQ16[k1] = akpQ16 * ccc1Q14 - bkpQ16 * sss1Q14;
144 // ImxQ16[k1] = akpQ16 * sss1Q14 + bkpQ16 * ccc1Q14;
148 RexQx[k1] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(ccc1Q14, akpQx, 14)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
fft4g.c 695 int j, j1, k, k1, l, m, m2; local
713 k1 = 2 * k + ip[j];
716 yr = a[k1];
717 yi = a[k1 + 1];
720 a[k1] = xr;
721 a[k1 + 1] = xi;
723 k1 += 2 * m2;
726 yr = a[k1];
727 yi = a[k1 + 1];
730 a[k1] = xr
795 int j, j1, k, k1, l, m, m2; local
1004 int j, k1, k2; local
1109 int j, j1, j2, j3, k, k1, k2, m, m2; local
    [all...]
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 73 int k1 = 'x'_using; // expected-error {{no matching literal operator for call to 'operator "" _using'}} member in namespace:Using
83 int k1 = 123_ambig1; // expected-error {{call to 'operator "" _ambig1' is ambiguous}} member in namespace:AmbiguousRawTemplate
  /external/clang/test/SemaTemplate/
constexpr-instantiate.cpp 151 int k1 = sizeof(short{S1(S1())}); member in namespace:Unevaluated::PR11851_Comment9
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
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 95 int d, dk, dext, lemax = 0, e, elenk, eln, i, j, k, k1, local
210 for(k1 = 1; k1 <= elenk + 1; k1++)
212 if(k1 > elenk)
  /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...]

Completed in 534 milliseconds

1 23 4 5 6 7 8 910