Searched refs:k3 (Results 1 - 25 of 99) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
13 k3 = k2*k;
21 a4 += 1.0/(k3 * sk*sk);
22 a5 += 1.0/(k3 * ck*ck);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
13 k3 = k2*k;
21 a4 += 1.0/(k3 * sk*sk);
22 a5 += 1.0/(k3 * ck*ck);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
13 k3 = k2*k;
21 a4 += 1.0/(k3 * sk*sk);
22 a5 += 1.0/(k3 * ck*ck);
/external/openssh/
H A Dcipher-3des1.c56 EVP_CIPHER_CTX k1, k2, k3; member in struct:ssh1_3des_ctx
67 u_char *k1, *k2, *k3; local
77 k1 = k2 = k3 = (u_char *) key;
81 k3 += 16;
87 EVP_CIPHER_CTX_init(&c->k3);
91 EVP_CipherInit(&c->k3, EVP_des_cbc(), k3, NULL, enc);
95 EVP_CipherInit(&c->k3, EVP_des_cbc(), k3, NULL, enc) == 0) {
118 EVP_Cipher(&c->k3, des
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkArithmeticMode.cpp25 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) { argument
28 fK[2] = k3;
71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, argument
75 SkScalarMul(k3, dst) +
93 SkScalar k3 = fK[2]; 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, k
209 Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) argument
264 Create(float k1, float k2, float k3, float k4, GrTexture* background) argument
281 float k3() const { return fK3; } function in class:GrArithmeticEffect
299 GrArithmeticEffect(float k1, float k2, float k3, float k4, GrTexture* background) argument
402 float k3 = rand->nextF(); local
[all...]
/external/skia/src/effects/
H A DSkArithmeticMode.cpp25 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) { argument
28 fK[2] = k3;
71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, argument
75 SkScalarMul(k3, dst) +
93 SkScalar k3 = fK[2]; 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, k
209 Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) argument
264 Create(float k1, float k2, float k3, float k4, GrTexture* background) argument
281 float k3() const { return fK3; } function in class:GrArithmeticEffect
299 GrArithmeticEffect(float k1, float k2, float k3, float k4, GrTexture* background) argument
402 float k3 = rand->nextF(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComposite.h55 float k3() 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);
H A DFEComposite.cpp43 FEComposite::FEComposite(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4) argument
48 , m_k3(k3)
53 PassRefPtr<FEComposite> FEComposite::create(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4) argument
55 return adoptRef(new FEComposite(filter, type, k1, k2, k3, k4));
97 float FEComposite::k3() const function in class:WebCore::FEComposite
102 bool FEComposite::setK3(float k3) argument
104 if (m_k3 == k3)
106 m_k3 = k3;
133 float k1, float k2, float k3, float k4)
145 float result = k2 * i1 + k3 * i
132 computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
165 computeArithmeticPixelsUnclamped(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
189 arithmeticSoftware(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
221 platformArithmeticSoftware(Uint8ClampedArray* source, Uint8ClampedArray* destination, float k1, float k2, float k3, float k4) argument
[all...]
/external/chromium_org/third_party/skia/include/effects/
H A DSkArithmeticMode.h19 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
24 * k1=k2=k3=0, k4=1.0 results in returning opaque white
25 * k1=k3=k4=0, k2=1.0 results in returning the src
26 * k1=k2=k4=0, k3=1.0 results in returning the dst
29 SkScalar k3, SkScalar k4);
/external/clang/test/Lexer/
H A Dcxx1y_binary_literal.cpp19 int k3 = 0b10010g; // expected-error {{invalid suffix 'g' on integer constant}} variable
/external/clang/test/PCH/
H A Dcxx11-enum-template.cpp23 int k3 = (int)decltype(c)::e; // expected-error@10 {{conversion from 'double' to 'int'}} expected-note {{here}} member in struct:S
/external/skia/include/effects/
H A DSkArithmeticMode.h19 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
24 * k1=k2=k3=0, k4=1.0 results in returning opaque white
25 * k1=k3=k4=0, k2=1.0 results in returning the src
26 * k1=k2=k4=0, k3=1.0 results in returning the dst
29 SkScalar k3, SkScalar k4);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
H A DFECompositeArithmeticNEON.h39 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
43 float32x4_t k3x4 = vdupq_n_f32(k3);
76 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
80 computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
84 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
89 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
92 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
38 computeArithmeticPixelsNeon(unsigned char* source, unsigned char* destination, unsigned pixelArrayLength, float k1, float k2, float k3, float k4) argument
75 platformArithmeticNeon(unsigned char* source, unsigned char* destination, unsigned pixelArrayLength, float k1, float k2, float k3, float k4) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java350 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
358 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
365 // * PPB: The integer <code>k3</code> where <code>x<sup>m</sup> +
366 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
369 // private int k3;
376 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
379 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
381 // * @param k3 The integer <code>k3</code> where <code>x<sup>m</sup> +
382 // * x<sup>k3</su
828 private int k3; field in class:ECFieldElement.F2m
855 F2m( int m, int k1, int k2, int k3, BigInteger x) argument
911 F2m(int m, int k1, int k2, int k3, IntArray x) argument
[all...]
H A DECCurve.java208 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
216 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
223 * PPB: The integer <code>k3</code> where <code>x<sup>m</sup> +
224 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
227 private int k3; // can't be final - JDK 1.1 field in class:ECCurve.F2m
313 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
316 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
318 * @param k3 The integer <code>k3</code> where <code>x<sup>m</sup> +
319 * x<sup>k3</su
328 F2m( int m, int k1, int k2, int k3, BigInteger a, BigInteger b) argument
362 F2m( int m, int k1, int k2, int k3, BigInteger a, BigInteger b, BigInteger n, BigInteger h) argument
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfft.c74 WebRtc_Word16 k0, k1, k2, k3, k4, kk; local
101 k3 = k2 + 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];
143 // RexQ16[k3] = akmQ16 * ccc3Q14 - bkmQ16 * sss3Q14;
146 // ImxQ16[k3] = akmQ16 * sss3Q14 + bkmQ16 * ccc3Q14;
152 RexQx[k3] = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(ccc3Q14, akmQx, 14) -
158 ImxQx[k3]
[all...]
/external/clang/test/CXX/class/class.union/
H A Dp2-0x.cpp8 static int k3 = k2; // expected-error {{non-const static data member must be initialized out of line}} member in union:U1
16 int U1::k3; member in class:U1
/external/clang/test/CodeGenCXX/
H A Dvtable-layout-extreme.cpp29 int k3; member in class:Test1::C3
205 int k3; member in class:Test1::C9
H A Dstatic-data-member.cpp94 static const int k3; member in union:test5::U
/external/chromium_org/ash/display/
H A Ddisplay_pref_util.h20 T k3, const std::string& v3,
25 (*map)[k3] = v3;
33 T k3, const std::string& v3) {
37 (*map)[k3] = v3;
18 CreateToStringMap(T k1, const std::string& v1, T k2, const std::string& v2, T k3, const std::string& v3, T k4, const std::string& v4) argument
31 CreateToStringMap(T k1, const std::string& v1, T k2, const std::string& v2, T k3, const std::string& v3) argument
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.cpp175 uint32_t k3 = getblock(blocks,i*4+2); local
186 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
202 uint32_t k3 = 0; local
212 case 12: k3 ^= tail[11] << 24;
213 case 11: k3 ^= tail[10] << 16;
214 case 10: k3
[all...]
/external/chromium_org/third_party/smhasher/src/
H A DMurmurHash3.cpp175 uint32_t k3 = getblock(blocks,i*4+2); local
186 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
202 uint32_t k3 = 0; local
212 case 12: k3 ^= tail[11] << 24;
213 case 11: k3 ^= tail[10] << 16;
214 case 10: k3
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java82 K k1, V v1, K k2, V v2, K k3, V v3) {
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
81 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
96 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
111 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableBiMap.java48 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));
47 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
53 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
59 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp17.cpp19 void k3() { function

Completed in 843 milliseconds

1234