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

1 23 4 5 6 7 8 910

  /external/chromium_org/media/base/simd/
sinc_resampler_sse.cc 12 const float* k2,
24 m_sums2 = _mm_add_ps(m_sums2, _mm_mul_ps(m_input, _mm_load_ps(k2 + i)));
30 m_sums2 = _mm_add_ps(m_sums2, _mm_mul_ps(m_input, _mm_load_ps(k2 + i)));
  /external/chromium_org/media/base/
sinc_resampler.h 83 // Compute convolution of |k1| and |k2| over |input_ptr|, resultant sums are
88 const float* k2, double kernel_interpolation_factor);
91 const float* k2,
95 const float* k2,
sinc_resampler.cc 295 const float* const k2 = k1 + kKernelSize; local
297 // Ensure |k1|, |k2| are 16-byte aligned for SIMD usage. Should always be
300 DCHECK_EQ(0u, reinterpret_cast<uintptr_t>(k2) & 0x0F);
309 input_ptr, k1, k2, kernel_interpolation_factor);
354 const float* k2,
364 sum2 += *input_ptr++ * *k2++;
374 const float* k2,
386 m_sums2 = vmlaq_f32(m_sums2, m_input, vld1q_f32(k2));
387 k2 += 4;
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h 132 for(Index k2=IsLower ? depth : 0;
133 IsLower ? k2>0 : k2<depth;
134 IsLower ? k2-=kc : k2+=kc)
136 Index actual_kc = (std::min)(IsLower ? k2 : depth-k2, kc);
137 Index actual_k2 = IsLower ? k2-actual_kc : k2;
140 if((!IsLower)&&(k2<rows)&&(k2+actual_kc>rows)
    [all...]
TriangularSolverMatrix.h 80 for(Index k2=IsLower ? 0 : size;
81 IsLower ? k2<size : k2>0;
82 IsLower ? k2+=kc : k2-=kc)
84 const Index actual_kc = (std::min)(IsLower ? size-k2 : k2, kc);
110 Index i = IsLower ? k2+k1+k : k2-k1-k-1;
111 Index s = IsLower ? k2+k1 : i+1
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft_sse2.c 23 int j, k2; local
25 for (k2 = 0, j = 0; j < 128; j += 16, k2 += 4) {
35 const __m128 wk1rv = _mm_load_ps(&rdft_wk1r[k2]);
36 const __m128 wk1iv = _mm_load_ps(&rdft_wk1i[k2]);
37 const __m128 wk2rv = _mm_load_ps(&rdft_wk2r[k2]);
38 const __m128 wk2iv = _mm_load_ps(&rdft_wk2i[k2]);
39 const __m128 wk3rv = _mm_load_ps(&rdft_wk3r[k2]);
40 const __m128 wk3iv = _mm_load_ps(&rdft_wk3i[k2]);
158 int k2 = 2 * k1 local
244 int j1, j2, k1, k2; local
334 int j1, j2, k1, k2; local
    [all...]
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.cpp 340 *k2 Output parameter
352 INT *k2
367 *k2 = getStopFreq(srCore, stopFreq);
369 *k2 = 2 * *k0;
371 *k2 = 3 * *k0;
375 if (*k2 > noChannels) {
376 *k2 = noChannels;
381 /* Test for invalid k0 k2 combinations */
382 if ( (srCore == 22050) && ( (*k2 - *k0) > MAX_FREQ_COEFFS_FS44100 ) )
385 if ( (srCore >= 24000) && ( (*k2 - *k0) > MAX_FREQ_COEFFS_FS48000 )
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
Utils.java 129 Keyframe k2 = Keyframe.ofFloat(0.69f, increaseRatio); local
132 PropertyValuesHolder scaleX = PropertyValuesHolder.ofKeyframe("scaleX", k0, k1, k2, k3);
133 PropertyValuesHolder scaleY = PropertyValuesHolder.ofKeyframe("scaleY", k0, k1, k2, k3);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
saturation.rs 25 static const int k2=HSCALE << ABITS;
134 rh = (short) ((k2 * (6 * chroma + gi - bi))/(6 * chroma));
135 if (rh >= k2) {
136 rh -= k2;
142 return(short) ((k2 * (2 * chroma + bi - ri)) / (6 * chroma));
145 return (short) ((k2 * (4 * chroma + ri - gi)) / (6 * chroma));
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp 13 void k2() { function
  /external/bluetooth/bluedroid/stack/smp/
smp_cmac.c 185 static void cmac_prepare_last_block (BT_OCTET16 k1, BT_OCTET16 k2)
200 else /* padding then xor with k2 */
204 smp_xor_128(&cmac_cb.text[0], k2);
218 UINT8 k1[BT_OCTET16_LEN], k2[BT_OCTET16_LEN]; local
237 /* K2 = (K1 << 1) (+) Rb */
238 leftshift_onebit(k1, k2);
239 smp_xor_128(k2, const_Rb);
243 /* If MSB(K1) = 0, then K2 = K1 << 1 */
244 leftshift_onebit(k1, k2);
248 print128(k2, (const UINT8 *)"K2")
    [all...]
  /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())));
X9Curve.java 67 int k2 = 0; local
80 k2 = ASN1Integer.getInstance(pentanomial.getObjectAt(1)).getValue().intValue();
87 X9FieldElement x9A = new X9FieldElement(m, k1, k2, k3, (ASN1OctetString)seq.getObjectAt(0));
88 X9FieldElement x9B = new X9FieldElement(m, k1, k2, k3, (ASN1OctetString)seq.getObjectAt(1));
90 curve = new ECCurve.F2m(m, k1, k2, k3, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger());
  /external/chromium_org/courgette/
analyze_mem_test 64 done | sort -k2 -n > "${metrics_tmp}"
86 done | sort -k2 -n > "${metrics_bsdiff_tmp}"
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFECompositeElement.idl 42 readonly attribute SVGAnimatedNumber k2;
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des.h 113 #define DES_ecb2_encrypt(i,o,k1,k2,e) \
114 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
116 #define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
117 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
119 #define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
120 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
122 #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \
123 DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n))
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
des.h 113 #define DES_ecb2_encrypt(i,o,k1,k2,e) \
114 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
116 #define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
117 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
119 #define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
120 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
122 #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \
123 DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n))
  /external/guava/guava/src/com/google/common/collect/
ImmutableBiMap.java 70 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) {
71 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
80 K k1, V v1, K k2, V v2, K k3, V v3) {
82 k1, v1, k2, v2, k3, v3));
91 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
93 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) {
104 k1, v1, k2, v2, k3, v3, k4, v4, k5, v5));
  /external/openssl/crypto/des/
des.h 113 #define DES_ecb2_encrypt(i,o,k1,k2,e) \
114 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
116 #define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
117 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
119 #define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
120 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
122 #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \
123 DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n))
  /external/openssl/include/openssl/
des.h 113 #define DES_ecb2_encrypt(i,o,k1,k2,e) \
114 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
116 #define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
117 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
119 #define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
120 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
122 #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \
123 DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n))
  /external/valgrind/main/perf/
ffbench.c 174 int ibit, idim, k1, k2, n, nprev, nrem, ntot; local
219 k2 = k1 + ifp1;
220 tempr = wr * data[k2] - wi * data[k2 + 1];
221 tempi = wr * data[k2 + 1] + wi * data[k2];
222 data[k2] = data[k1] - tempr;
223 data[k2 + 1] = data[k1 + 1] - tempi;
  /external/chromium_org/third_party/icu/source/test/intltest/
thcoll.cpp 169 CollationKey k1, k2; local
171 coll->getCollationKey(word, k2, status);
177 msg.append("key2: ").append(prettify(k2, str));
288 CollationKey k1, k2;
290 c.getCollationKey(s2, k2, status);
296 errln((UnicodeString)" key2: " + prettify(k2, t2) );
301 CollationKey k1, k2;
303 c.getCollationKey(s2, k2, status);
309 result = k1.compareTo(k2);
317 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
  /external/icu4c/test/intltest/
thcoll.cpp 168 CollationKey k1, k2; local
170 coll->getCollationKey(word, k2, status);
176 msg.append("key2: ").append(prettify(k2, str));
287 CollationKey k1, k2;
289 c.getCollationKey(s2, k2, status);
295 errln((UnicodeString)" key2: " + prettify(k2, t2) );
300 CollationKey k1, k2;
302 c.getCollationKey(s2, k2, status);
308 result = k1.compareTo(k2);
316 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
stack_trace_table_test.cc 60 static const uintptr_t k2[] = {1, 1024, 2, 1, 2, 0}; local
61 CheckTracesAndReset(&table, k2, ARRAYSIZE(k2));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
stack_trace_table_test.cc 60 static const uintptr_t k2[] = {1, 1024, 2, 1, 2, 0}; local
61 CheckTracesAndReset(&table, k2, ARRAYSIZE(k2));

Completed in 292 milliseconds

1 23 4 5 6 7 8 910