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

1 2 3 4 5 6 7 8 9

  /external/guava/guava/src/com/google/common/hash/
Murmur3_32HashFunction.java 56 int k1 = bb.getInt(); local
59 k1 *= c1;
60 k1 = Integer.rotateLeft(k1, 15);
61 k1 *= c2;
63 h1 ^= k1;
70 int k1 = 0; local
73 k1 ^= toInt(bb.get(2)) << 16;
76 k1 ^= toInt(bb.get(1)) << 8;
79 k1 ^= toInt(bb.get(0))
    [all...]
Murmur3_128HashFunction.java 60 long k1 = bb.getLong(); local
63 bmix64(k1, k2);
66 private void bmix64(long k1, long k2) {
67 k1 *= c1;
68 k1 = Long.rotateLeft(k1, 31);
69 k1 *= c2;
70 h1 ^= k1;
87 long k1 = 0; local
111 k1 ^= (long) toInt(bb.get(7)) << 56; // fall throug
    [all...]
  /external/clang/test/CXX/class/class.union/
p2-0x.cpp 6 static constexpr int k1 = 0; member in union:U1
7 static const int k2 = k1;
11 int n[k1 + 3];
14 constexpr int U1::k1; member in class:U1
23 static const int k1; member in union:U2
27 template<typename T> constexpr int U2<T>::k1 = sizeof(U2<T>); member in class:U2
30 static_assert(U2<int>::k1 == sizeof(int), "");
31 static_assert(U2<char>::k1 == sizeof(char), "");
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDoubleKeyMap.h 18 - (id) setObject:(id)v forKey1:(id)k1 forKey2:(NSString *)k2;
19 - (id) objectForKey1:(id)k1 forKey2:(id)k2;
20 - (AMutableDictionary *) objectForKey:(id)k1;
21 - (NSArray *) valuesForKey:(id)k1;
23 - (AMutableArray *) allKeys2:(id)k1;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 41 Int k0, k1, k2, k3, k4, k5, k6, k7; local
62 k1 = mask & (tmp << 1);
63 k0 = k1 - (k0 << 1);
64 k1 = (tmp2 >> 8) & 0xFF;
66 k1 = k2 - (k1 << 1);
93 k1 = k1 + k6;
94 k6 = k1 - (k6 << 1);
102 k1 = k1 + k2
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 40 int32 k1; local
44 k1 = k0 * 392 + round;
46 return k1;
49 __inline int32 mla554(int32 k4, int32 k12, int32 k1)
55 k0 = k4 * 554 + k1;
60 __inline int32 mla1338(int32 k6, int32 k14, int32 k1)
66 out = k6 * 1338 + k1;
71 __inline int32 mla946(int32 k6, int32 k14, int32 k1)
77 out = k6 * 946 + k1;
82 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3
125 int32 k1; local
129 smlabt k1, k0, k14, round local
189 int32 k1; local
193 mov k1, k14, asr #16 local
194 mla k1, k0, k1, round local
248 eors abs_sum, k1, k1, asr #31 ; local
    [all...]
  /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
25 static SkXfermode* Create(SkScalar k1, SkScalar k2,
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DoubleKeyMap.java 12 public Value put(Key1 k1, Key2 k2, Value v) {
13 Map<Key2, Value> data2 = data.get(k1);
17 data.put(k1, data2);
26 public Value get(Key1 k1, Key2 k2) {
27 Map<Key2, Value> data2 = data.get(k1);
32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); }
35 public Collection<Value> values(Key1 k1) {
36 Map<Key2, Value> data2 = data.get(k1);
47 public Set<Key2> keySet(Key1 k1) {
    [all...]
  /external/openssl/crypto/des/
rpw.c 64 DES_cblock k,k1; local
78 if ((i=des_read_2passwords(&k,&k1,
87 printf("%02x ",k1[i]);
ofb64ede.c 67 DES_key_schedule *k1, DES_key_schedule *k2,
94 DES_encrypt3(ti,k1,k2,k3);
120 register unsigned char *out, long length, DES_key_schedule k1,
123 DES_ede3_ofb64_encrypt(in, out, length, k1,k2,k1, ivec, num);
des_old.h 138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\
139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e))
140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\
141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e))
142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\
143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e))
144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\
145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e))
146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\
147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n)
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 27 int k1; member in class:Test1::C3
64 int k1; member in class:Test1::C7
75 int k1; member in class:Test1::C8
203 int k1; member in class:Test1::C9
static-data-member.cpp 92 static const int k1; member in union:test5::U
98 const int U::k1 = (k0 = 9, 42); member in class:test5::U
  /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
25 static SkXfermode* Create(SkScalar k1, SkScalar k2,
  /external/openssh/
cipher-3des1.c 56 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;
83 k1 += 16;
85 EVP_CIPHER_CTX_init(&c->k1);
89 EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc);
93 if (EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc) == 0 ||
116 EVP_Cipher(&c->k1, dest, (u_char *)src, len)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedMapFauxverideShim.java 53 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) {
67 K k1, V v1, K k2, V v2) {
82 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) {
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
fft.c 74 WebRtc_Word16 k0, k1, k2, k3, k4, kk; local
99 k1 = k0 + 60;
100 k2 = k1 + 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];
141 // RexQ16[k1] = akpQ16 * ccc1Q14 - bkpQ16 * sss1Q14;
144 // ImxQ16[k1] = akpQ16 * sss1Q14 + bkpQ16 * ccc1Q14;
148 RexQx[k1] = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(ccc1Q14, akpQx, 14)
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft.c 47 int j, j1, k, k1, m, m2; local
66 k1 = 2 * k + ip[j];
69 yr = a[k1];
70 yi = a[k1 + 1];
73 a[k1] = xr;
74 a[k1 + 1] = xi;
76 k1 += 2 * m2;
79 yr = a[k1];
80 yi = a[k1 + 1];
83 a[k1] = xr
148 int k1; local
212 int j, k1, k2; local
318 int j0, j1, j2, j3, k, k1, k2, m2; local
504 int j1, j2, k1, k2; local
525 int j1, j2, k1, k2; local
    [all...]
  /external/svox/pico/lib/
picofftsg.c 670 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; local
693 k1 = k + m2;
696 yr = a[k1];
697 yi = a[k1 + 1];
700 a[k1] = xr;
701 a[k1 + 1] = xi;
703 k1 -= m;
706 yr = a[k1];
707 yi = a[k1 + 1];
710 a[k1] = xr
1029 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; local
1583 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh; local
    [all...]
  /external/skia/legacy/src/effects/
SkArithmeticMode.cpp 7 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) {
8 fK[0] = k1;
39 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4,
41 SkScalar result = SkScalarMul(k1, src * dst) +
59 SkScalar k1 = fK[0] / 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) {
16 fK[0] = k1;
43 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4,
45 SkScalar result = SkScalarMul(k1, src * dst) +
63 SkScalar k1 = fK[0] / 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)
41 , m_k1(k1)
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));
66 float FEComposite::k1() const function in class:WebCore::FEComposite
71 bool FEComposite::setK1(float k1)
73 if (m_k1 == k1)
75 m_k1 = k1;
120 float k1, float k2, float k3, float k4)
125 scaledK1 = k1 / 255.f
    [all...]
  /external/openssl/crypto/des/t/
test 20 ($k1,$k2)=DES::string_to_2keys($str);
21 @a=split(//,$k1);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableBiMap.java 39 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) {
40 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1));
43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) {
44 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
48 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))
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
fft.c 276 int j, jc, jf, jj, k, k1, k2, k3, k4, kk, kt, nn, ns, nt; local
441 k1 = kspan + 2;
474 kk = k1 - k2;
483 k1 += inc + inc;
484 kk = (k1 - kspan + 1) / 2 + jc - 1;
497 k1 = kk + kspan;
498 k2 = k1 + kspan;
502 ajp = Re [k1] + Re [k3];
503 ajm = Re [k1] - Re [k3];
506 bjp = Im [k1] + Im [k3]
    [all...]

Completed in 1833 milliseconds

1 2 3 4 5 6 7 8 9