HomeSort by relevance Sort by last modified time
    Searched refs:k4 (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/skia/legacy/include/effects/
SkArithmeticMode.h 16 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
21 * k1=k2=k3=0, k4=1.0 results in returning opaque white
22 * k1=k3=k4=0, k2=1.0 results in returning the src
23 * k1=k2=k4=0, k3=1.0 results in returning the dst
26 SkScalar k3, SkScalar k4);
  /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/skia/include/effects/
SkArithmeticMode.h 16 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
21 * k1=k2=k3=0, k4=1.0 results in returning opaque white
22 * k1=k3=k4=0, k2=1.0 results in returning the src
23 * k1=k2=k4=0, k3=1.0 results in returning the dst
26 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/skia/legacy/src/effects/
SkArithmeticMode.cpp 7 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) {
11 fK[3] = k4;
39 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4,
44 k4;
62 SkScalar k4 = fK[3] * 255; local
77 a = arith(k1, k2, k3, k4, sa, sa);
78 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc));
79 g = arith(k1, k2, k3, k4, SkGetPackedG32(sc), SkGetPackedG32(dc));
80 b = arith(k1, k2, k3, k4, SkGetPackedB32(sc), SkGetPackedB32(dc));
102 a = arith(k1, k2, k3, k4, sa, sa)
    [all...]
  /external/skia/src/effects/
SkArithmeticMode.cpp 15 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) {
19 fK[3] = k4;
43 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4,
48 k4;
66 SkScalar k4 = fK[3] * 255; local
81 a = arith(k1, k2, k3, k4, sa, sa);
82 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc));
83 g = arith(k1, k2, k3, k4, SkGetPackedG32(sc), SkGetPackedG32(dc));
84 b = arith(k1, k2, k3, k4, SkGetPackedB32(sc), SkGetPackedB32(dc));
106 a = arith(k1, k2, k3, k4, sa, sa)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEComposite.cpp 38 FEComposite::FEComposite(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
44 , m_k4(k4)
48 PassRefPtr<FEComposite> FEComposite::create(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
50 return adoptRef(new FEComposite(filter, type, k1, k2, k3, k4));
105 float FEComposite::k4() const function in class:WebCore::FEComposite
110 bool FEComposite::setK4(float k4)
112 if (m_k4 == k4)
114 m_k4 = k4;
120 float k1, float k2, float k3, float k4)
127 scaledK4 = k4 * 255.f
    [all...]
FEComposite.h 59 float k4() const;
  /external/clang/test/PCH/
cxx11-enum-template.cpp 24 int k4 = (int)S<char>::E::e; member in struct:S
  /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/webkit/Source/WebCore/svg/
SVGFECompositeElement.h 54 DECLARE_ANIMATED_NUMBER(K4, k4)
SVGFECompositeElement.idl 48 readonly attribute SVGAnimatedNumber 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));
ImmutableListMultimap.java 102 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
108 builder.put(k4, v4);
116 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
122 builder.put(k4, v4);
ImmutableMap.java 105 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
107 entryOf(k1, v1), entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4));
116 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
118 entryOf(k2, v2), entryOf(k3, v3), entryOf(k4, v4), entryOf(k5, v5));
  /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));
ImmutableListMultimap.java 97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
103 builder.put(k4, v4);
111 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
117 builder.put(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++)
  /external/openssh/
umac.c 340 UINT32 k0,k1,k2,k3,k4,k5,k6,k7; local
349 k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
350 h += MUL64((k0 + d0), (k4 + d4));
373 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local
384 k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
387 h1 += MUL64((k0 + d0), (k4 + d4));
388 h2 += MUL64((k4 + d0), (k8 + d4));
420 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local
427 k4 = *(k+4); k5 = *(k+5); k6 = *(k+6); k7 = *(k+7);
436 h1 += MUL64((k0 + d0), (k4 + d4))
475 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
TimePickerDialog.java 745 int k4 = KeyEvent.KEYCODE_4;
756 Node minuteFirstDigit = new Node(k0, k1, k2, k3, k4, k5);
757 Node minuteSecondDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9);
766 Node secondDigit = new Node(k0, k1, k2, k3, k4, k5);
793 secondDigit = new Node(k4, k5);
799 firstDigit = new Node(k3, k4, k5, k6, k7, k8, k9);
821 Node thirdDigit = new Node(k0, k1, k2, k3, k4, k5);
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h 65 int k4 = -1, int k5 = -1, int k6 = -1, int k7 = -1, int k8 = -1,
70 template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5, int k6,
76 GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4),
82 return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t),
143 template <class Tuple, int k0, int k1, int k2, int k3, int k4>
144 class TupleFields<Tuple, k0, k1, k2, k3, k4, -1, -1, -1, -1, -1> {
148 GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4)> type;
151 return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t));
155 template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5>
156 class TupleFields<Tuple, k0, k1, k2, k3, k4, k5, -1, -1, -1, -1>
    [all...]

Completed in 1086 milliseconds

1 2 3