/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
dct.cpp | 41 Int k0, k1, k2, k3, k4, k5, k6, k7; local 71 k4 = mask & (tmp >> 23); 72 k3 = k4 - (k3 << 1); 75 k4 = tmp2 & 0xFF; 77 k4 = k5 - (k4 << 1); 97 k3 = k3 + k4; 98 k4 = k3 - (k4 << 1); 111 k4 = k4 + k5 270 register Int k0, k1, k2, k3, k4, k5, k6, k7; local 476 register Int k0, k1, k2, k3, k4, k5, k6, k7; local 655 Int k0, k1, k2, k3, k4, k5, k6, k7; local 866 register Int k0, k1, k2, k3, k4, k5, k6, k7; local 1053 register Int k0, k1, k2, k3, k4, k5, k6, k7; local [all...] |
dct_inline.h | 49 __inline int32 mla554(int32 k4, int32 k12, int32 k1) 55 k0 = k4 * 554 + k1; 83 int32 k4, int32 k5, int32 k6, int32 k7) 95 carry = k4 >> 31; 96 abs_sum += (k4 ^ carry) - carry; 135 __inline int32 mla554(int32 k4, int32 k12, int32 k1) 141 smlabt k0, k4, k12, k1 local 200 __inline int32 mla554(int32 k4, int32 k12, int32 k1) 207 mla k0, k4, k0, k1 local 242 int32 k4, int32 k5, int32 k6, int32 k7 254 eors carry, k4, k4, asr #31 ; local [all...] |
/external/chromium_org/third_party/skia/include/effects/ |
SkArithmeticMode.h | 19 * 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/skia/include/effects/ |
SkArithmeticMode.h | 19 * 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/CXX/class/class.union/ |
p2-0x.cpp | 9 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/ |
FECompositeArithmeticNEON.h | 39 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);
|
/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) 49 , m_k4(k4) 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)); 110 float FEComposite::k4() const function in class:WebCore::FEComposite 115 bool FEComposite::setK4(float k4) 117 if (m_k4 == k4) 119 m_k4 = k4; 133 float k1, float k2, float k3, float k4) 140 scaledK4 = k4 * 255.0f [all...] |
FEComposite.h | 58 float k4() 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) { 29 fK[3] = k4; 71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, 76 k4; 94 SkScalar k4 = fK[3] * 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) 282 float k4() const { return fK4; } function in class:GrArithmeticEffect 403 float k4 = rand->nextF(); local [all...] |
/external/skia/src/effects/ |
SkArithmeticMode.cpp | 25 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) { 29 fK[3] = k4; 71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, 76 k4; 94 SkScalar k4 = fK[3] * 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) 282 float k4() const { return fK4; } function in class:GrArithmeticEffect 403 float k4 = rand->nextF(); local [all...] |
/external/clang/test/PCH/ |
cxx11-enum-template.cpp | 24 int k4 = (int)S<char>::E::e; member in struct:S
|
/external/chromium_org/third_party/angle/src/third_party/murmurhash/ |
MurmurHash3.cpp | 176 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 ^= tail[12] << 0 [all...] |
/external/chromium_org/third_party/smhasher/src/ |
MurmurHash3.cpp | 176 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 ^= tail[12] << 0 [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p17.cpp | 26 void k4() { function
|
/external/clang/test/CodeGenCXX/ |
static-data-member.cpp | 95 static const int k4 = 81; member in union:test5::U
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGFECompositeElement.idl | 44 readonly attribute SVGAnimatedNumber k4;
|
SVGFECompositeElement.h | 96 DECLARE_ANIMATED_NUMBER(K4, k4)
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableSortedMapFauxverideShim.java | 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) {
|
ImmutableBiMap.java | 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/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
stack_trace_table_test.cc | 77 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/ |
stack_trace_table_test.cc | 77 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/ |
ImmutableBiMap.java | 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));
|
/external/chromium_org/ash/display/ |
display_pref_util.h | 21 T k4, const std::string& v4) { 26 (*map)[k4] = v4;
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
fft.c | 74 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;
|
arith_routines_logist.c | 276 int k4; local 295 for(k4 = 0; k4 < 4; k4++)
|