/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...] |
FEComposite.h | 49 float k1() const; 78 float k1, float k2, float k3, float k4); 81 unsigned pixelArrayLength, float k1, float k2, float k3, float k4); 83 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
|
/external/chromium_org/third_party/skia/src/effects/ |
SkArithmeticMode.cpp | 25 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) { 26 fK[0] = k1; 71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, 73 SkScalar result = SkScalarMul(k1, src * dst) + 91 SkScalar k1 = fK[0] / 255; local 111 a = arith(k1, k2, k3, k4, sa, da); 112 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc)); 113 g = arith(k1, k2, k3, k4, SkGetPackedG32(sc), SkGetPackedG32(dc)); 114 b = arith(k1, k2, k3, k4, SkGetPackedB32(sc), SkGetPackedB32(dc)); 136 a = arith(k1, k2, k3, k4, sa, da) 279 float k1() const { return fK1; } function in class:GrArithmeticEffect 400 float k1 = rand->nextF(); local [all...] |
/external/skia/src/effects/ |
SkArithmeticMode.cpp | 25 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) { 26 fK[0] = k1; 71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, 73 SkScalar result = SkScalarMul(k1, src * dst) + 91 SkScalar k1 = fK[0] / 255; local 111 a = arith(k1, k2, k3, k4, sa, da); 112 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc)); 113 g = arith(k1, k2, k3, k4, SkGetPackedG32(sc), SkGetPackedG32(dc)); 114 b = arith(k1, k2, k3, k4, SkGetPackedB32(sc), SkGetPackedB32(dc)); 136 a = arith(k1, k2, k3, k4, sa, da) 279 float k1() const { return fK1; } function in class:GrArithmeticEffect 400 float k1 = rand->nextF(); local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/des/t/ |
test | 20 ($k1,$k2)=DES::string_to_2keys($str); 21 @a=split(//,$k1);
|
/external/clang/test/Lexer/ |
cxx1y_binary_literal.cpp | 15 int k1 = 0b1234; // expected-error {{invalid digit '2' in binary constant}} variable
|
/external/openssl/crypto/des/t/ |
test | 20 ($k1,$k2)=DES::string_to_2keys($str); 21 @a=split(//,$k1);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableBiMap.java | 39 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { 40 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1)); 43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { 44 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2)); 48 K k1, V v1, K k2, V v2, K k3, V v3) { 50 k1, v1, k2, v2, k3, v3)); 54 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { 56 k1, v1, k2, v2, k3, v3, k4, v4)); 60 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { 62 k1, v1, k2, v2, k3, v3, k4, v4, k5, v5)) [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
fft.c | 276 int j, jc, jf, jj, k, k1, k2, k3, k4, kk, kt, nn, ns, nt; local 441 k1 = kspan + 2; 474 kk = k1 - k2; 483 k1 += inc + inc; 484 kk = (k1 - kspan + 1) / 2 + jc - 1; 497 k1 = kk + kspan; 498 k2 = k1 + kspan; 502 ajp = Re [k1] + Re [k3]; 503 ajm = Re [k1] - Re [k3]; 506 bjp = Im [k1] + Im [k3] [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
des_old.h | 138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\ 139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e)) 140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ 141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e)) 142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\ 143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e)) 144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ 145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e)) 146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ 147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n) [all...] |
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) [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
des_old.h | 138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\ 139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e)) 140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ 141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e)) 142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\ 143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e)) 144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ 145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e)) 146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ 147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n) [all...] |
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) [all...] |
/external/openssl/crypto/des/ |
des_old.h | 138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\ 139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e)) 140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ 141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e)) 142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\ 143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e)) 144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ 145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e)) 146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ 147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n) [all...] |
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) [all...] |
/external/openssl/include/openssl/ |
des_old.h | 138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\ 139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e)) 140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ 141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e)) 142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\ 143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e)) 144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ 145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e)) 146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ 147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n) [all...] |
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) [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/webrtc/src/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/chromium_org/ash/display/ |
display_pref_util.h | 18 std::map<T, std::string>* CreateToStringMap(T k1, const std::string& v1, 23 (*map)[k1] = v1; 31 std::map<T, std::string>* CreateToStringMap(T k1, const std::string& v1, 35 (*map)[k1] = v1;
|
/external/clang/test/CodeGenCXX/ |
catch-undef-behavior.cpp | 233 int k1 = a[n]; local 250 return k1 + *r1 + k2; 272 const int *k1 = a + n; local 279 return *k1 + *k2;
|
/external/clang/test/PCH/ |
cxx11-enum-template.cpp | 21 int k1 = (int)S<int>::E::e; member in struct:S
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
X9FieldID.java | 40 * @param k1 The integer <code>k1</code> where <code>x<sup>m</sup> + 41 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code> 44 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code> 47 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code> 50 public X9FieldID(int m, int k1, int k2, int k3) 59 fieldIdParams.add(new ASN1Integer(k1)); 65 pentanomialParams.add(new ASN1Integer(k1));
|
/external/chromium_org/media/base/simd/ |
sinc_resampler_sse.cc | 11 float SincResampler::Convolve_SSE(const float* input_ptr, const float* k1, 23 m_sums1 = _mm_add_ps(m_sums1, _mm_mul_ps(m_input, _mm_load_ps(k1 + i))); 29 m_sums1 = _mm_add_ps(m_sums1, _mm_mul_ps(m_input, _mm_load_ps(k1 + i)));
|
/external/chromium_org/media/base/ |
sinc_resampler.h | 83 // Compute convolution of |k1| and |k2| over |input_ptr|, resultant sums are 87 static float Convolve_C(const float* input_ptr, const float* k1, 90 static float Convolve_SSE(const float* input_ptr, const float* k1, 94 static float Convolve_NEON(const float* input_ptr, const float* k1,
|