HomeSort by relevance Sort by last modified time
    Searched defs:k4 (Results 1 - 15 of 15) sorted by null

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp 26 void k4() { function
  /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-warning {{GNU extension}} expected-note {{use 'constexpr'}}
18 const double U1::k4; member in class:U1
  /external/clang/test/PCH/
cxx11-enum-template.cpp 24 int k4 = (int)S<char>::E::e; member in struct:S
  /external/clang/test/CodeGenCXX/
static-data-member.cpp 95 static const int k4 = 81; member in union:test5::U
  /external/dropbear/libtomcrypt/src/ciphers/
kseed.c 205 ulong32 tmp, k1, k2, k3, k4; local
219 LOAD32H(k4, key+12);
223 skey->kseed.K[2*i+1] = G(k2 - k4 + KCi[i]);
226 k3 = ((k3 << 8) | (k4 >> 24)) & 0xFFFFFFFF;
227 k4 = ((k4 << 8) | (tmp >> 24)) & 0xFFFFFFFF;
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 100 int k4 = 123_ambig2; // expected-error {{ambiguous}} member in namespace:AmbiguousRawTemplate::N
  /external/skia/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/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...]
  /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/tcpdump/
print-eigrp.c 114 u_int8_t k4; member in struct:eigrp_tlv_general_parm_t
305 printf("\n\t holdtime: %us, k1 %u, k2 %u, k3 %u, k4 %u, k5 %u",
310 tlv_ptr.eigrp_tlv_general_parm->k4,
  /frameworks/av/services/camera/libcameraservice/
FakeCamera.cpp 56 * B = ( Y + k4*Cb )
64 static const double k4 = 2.018; member in namespace:android
68 * G + k1/k3*R + k2/k4*B = Y*( 1 + k1/k3 + k2/k4 )
70 * Y = ( G + k1/k3*R + k2/k4*B ) / (1 + k1/k3 + k2/k4)
71 * Y0 = ( G0 + k1/k3*R0 + k2/k4*B0 ) / ((1 + k1/k3 + k2/k4)*k0) + 16
75 * kYb = k2/k4
84 static const double kYb = k2/k4;
    [all...]
  /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...]
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 214 constexpr int k4 = c2.f(); // ok! member in namespace:UndefinedBehavior::Ptr
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 548 milliseconds