Searched refs:k4 (Results 1 - 25 of 69) sorted by relevance

123

/external/clang/test/CXX/class/class.union/
H A Dp2-0x.cpp9 static constexpr double k4 = k2; member in union:U1
10 static const double k5 = k4; // expected-error {{requires 'constexpr' specifier}} expected-note {{add 'constexpr'}}
18 const double U1::k4; member in class:U1
/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)
44 float32x4_t k4x4 = vdupq_n_f32(k4 * 255);
76 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
78 if (!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/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComposite.cpp42 FEComposite::FEComposite(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4) argument
48 , m_k4(k4)
52 PassRefPtr<FEComposite> FEComposite::create(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4) argument
54 return adoptRef(new FEComposite(filter, type, k1, k2, k3, k4));
109 float FEComposite::k4() const function in class:blink::FEComposite
114 bool FEComposite::setK4(float k4) argument
116 if (m_k4 == k4)
118 m_k4 = k4;
132 float k1, float k2, float k3, float k4)
139 scaledK4 = k4 * 255.
131 computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
164 computeArithmeticPixelsUnclamped(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
188 arithmeticSoftware(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
220 platformArithmeticSoftware(Uint8ClampedArray* source, Uint8ClampedArray* destination, float k1, float k2, float k3, float k4) argument
[all...]
H A DFEComposite.h58 float k4() const;
80 float k1, float k2, float k3, float k4);
83 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
85 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
/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.cpp20 int k4 = 0b; // expected-error {{invalid digit 'b' in octal constant}} variable
/external/clang/test/PCH/
H A Dcxx11-enum-template.cpp24 int k4 = (int)S<char>::E::e; 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/skia/src/effects/
H A DSkArithmeticMode.cpp26 static SkArithmeticMode_scalar* Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, argument
28 return SkNEW_ARGS(SkArithmeticMode_scalar, (k1, k2, k3, k4, enforcePMColor));
43 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, bool enforcePMColor) { argument
47 fK[3] = k4;
80 const SkScalar k4 = buffer.readScalar(); local
82 return Create(k1, k2, k3, k4, enforcePMColor);
94 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, argument
99 k4;
117 SkScalar k4 = fK[3] * 255; local
134 a = arith(k1, k2, k3, k4, s
220 Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, bool enforcePMColor) argument
279 Create(float k1, float k2, float k3, float k4, bool enforcePMColor, GrTexture* background) argument
297 float k4() const { return fK4; } function in class:GrArithmeticEffect
317 GrArithmeticEffect(float k1, float k2, float k3, float k4, bool enforcePMColor, GrTexture* background) argument
436 float k4 = rand->nextF(); local
[all...]
/external/clang/test/Modules/
H A Dtemplate-specialization-visibility.cpp20 int k4 = explicit_inst_member_class_template.n; variable
/external/skia/src/effects/
H A DSkArithmeticMode.cpp25 static SkArithmeticMode_scalar* Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, argument
27 return SkNEW_ARGS(SkArithmeticMode_scalar, (k1, k2, k3, k4, enforcePMColor));
41 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, bool enforcePMColor) { argument
45 fK[3] = k4;
80 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, argument
85 k4;
103 SkScalar k4 = fK[3] * 255; local
120 a = arith(k1, k2, k3, k4, sa, da);
121 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc));
122 g = arith(k1, k2, k3, k4, SkGetPackedG3
206 Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, bool enforcePMColor) argument
265 Create(float k1, float k2, float k3, float k4, bool enforcePMColor, GrTexture* background) argument
285 float k4() const { return fK4; } function in class:GrArithmeticEffect
305 GrArithmeticEffect(float k1, float k2, float k3, float k4, bool enforcePMColor, GrTexture* background) argument
422 float k4 = rand->nextF(); local
[all...]
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.cpp176 uint32_t k4 = getblock(blocks,i*4+3); local
190 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
203 uint32_t k4 = 0; local
207 case 15: k4 ^= tail[14] << 16;
208 case 14: k4 ^= tail[13] << 8;
209 case 13: k4
[all...]
/external/chromium_org/third_party/smhasher/src/
H A DMurmurHash3.cpp176 uint32_t k4 = getblock32(blocks,i*4+3); local
190 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
203 uint32_t k4 = 0; local
207 case 15: k4 ^= tail[14] << 16;
208 case 14: k4 ^= tail[13] << 8;
209 case 13: k4
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dhash.h164 uint32_t k4 = hash_get_block_32(blocks, i*4 + 3); local
181 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
194 uint32_t k4 = 0; local
197 case 15: k4 ^= tail[14] << 16;
198 case 14: k4 ^= tail[13] << 8;
199 case 13: k4
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp17.cpp26 void k4() { function
/external/clang/test/CodeGenCXX/
H A Dstatic-data-member.cpp95 static const int k4 = 81; member in union:test5::U
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFECompositeElement.idl46 readonly attribute SVGAnimatedNumber k4;
H A DSVGFECompositeElement.h41 SVGAnimatedNumber* k4() { return m_k4.get(); } function in class:blink::FINAL
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java97 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) {
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/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dstack_trace_table_test.cc77 static const uintptr_t k4[] = {2, 2048, 2, 1, 2, 1, 512, 2, 2, 1, 0}; local
78 CheckTracesAndReset(&table, k4, ARRAYSIZE(k4));
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dstack_trace_table_test.cc77 static const uintptr_t k4[] = {2, 2048, 2, 1, 2, 1, 512, 2, 2, 1, 0}; local
78 CheckTracesAndReset(&table, k4, ARRAYSIZE(k4));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableBiMap.java54 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));
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/chromium_org/ash/display/
H A Ddisplay_pref_util.h21 T k4, const std::string& v4) {
26 (*map)[k4] = v4;
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
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfft.c74 int16_t k0, k1, k2, k3, k4, kk; local
252 k4 = k3 + 4;
254 akpQx = RexQx[k1] + RexQx[k4];
255 akmQx = RexQx[k1] - RexQx[k4];
256 bkpQx = ImxQx[k1] + ImxQx[k4];
257 bkmQx = ImxQx[k1] - ImxQx[k4];
278 RexQx[k4] = akQx + bjQx;
280 ImxQx[k4] = bkQx - ajQx;
297 kk = k4 + 4;
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfft.c74 WebRtc_Word16 k0, k1, k2, k3, k4, kk; local
252 k4 = k3 + 4;
254 akpQx = RexQx[k1] + RexQx[k4];
255 akmQx = RexQx[k1] - RexQx[k4];
256 bkpQx = ImxQx[k1] + ImxQx[k4];
257 bkmQx = ImxQx[k1] - ImxQx[k4];
278 RexQx[k4] = akQx + bjQx;
280 ImxQx[k4] = bkQx - ajQx;
297 kk = k4 + 4;

Completed in 754 milliseconds

123