Searched defs:K1 (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/v8/test/mjsunit/compiler/
H A Duint32.js32 var K1 = 0x7fffffff; variable
36 uint32_array[0] = K1;
43 assertEquals(K1, ChangeI2T(uint32_array, 0));
46 assertEquals(K1, ChangeI2T(uint32_array, 0));
63 assertEquals(K1, Deopt({x: 0}, uint32_array, 0));
74 assertEquals(K1 + K2, ChangeI2D(uint32_array));
75 assertEquals(K1 + K2, ChangeI2D(uint32_array));
77 assertEquals(K1 + K2, ChangeI2D(uint32_array));
83 assertEquals(K1, ShrShr(K2 | 0));
84 assertEquals(K1, ShrSh
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DFlingState.cpp70 const float K1 = 0.02; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
/external/chromium_org/third_party/usrsctp/overrides/usrsctplib/netinet/
H A Dsctp_sha1.h96 #define K1 0x5a827999 /* 0 <= t <= 19 */ macro
/external/clang/test/SemaCXX/
H A Dusing-directive.cpp23 class K1 { class in namespace:A
55 void K1::foo() {} // okay
/external/dropbear/libtomcrypt/src/ciphers/
H A Dkhazad.c600 ulong64 K2, K1; local
626 K1 =
641 * K[r] = rho(c[r], K1) ^ K2;
644 T0[(int)(K1 >> 56) ] ^
645 T1[(int)(K1 >> 48) & 0xff] ^
646 T2[(int)(K1 >> 40) & 0xff] ^
647 T3[(int)(K1 >> 32) & 0xff] ^
648 T4[(int)(K1 >> 24) & 0xff] ^
649 T5[(int)(K1 >> 16) & 0xff] ^
650 T6[(int)(K1 >>
[all...]
H A Danubis.c903 ulong32 v, K0, K1, K2, K3; local
948 K1 = T4[(kappa[N - 1] >> 16) & 0xff];
957 K1 = T4[(kappa[i] >> 16) & 0xff] ^
958 (T5[(K1 >> 24) & 0xff] & 0xff000000U) ^
959 (T5[(K1 >> 16) & 0xff] & 0x00ff0000U) ^
960 (T5[(K1 >> 8) & 0xff] & 0x0000ff00U) ^
961 (T5[(K1 ) & 0xff] & 0x000000ffU);
975 K0 = K1 = K2 = K3 = 0;
978 K1 ^= U[i][(kappa[i] >> 16) & 0xff];
984 skey->anubis.roundKeyEnc[r][1] = K1;
[all...]
/external/elfutils/lib/
H A Dsha1.c209 #define K1 0x6ed9eba1 macro
307 OP (20, FG, A, B, C, D, E, K1);
308 OP (21, FG, E, A, B, C, D, K1);
309 OP (22, FG, D, E, A, B, C, K1);
310 OP (23, FG, C, D, E, A, B, K1);
311 OP (24, FG, B, C, D, E, A, K1);
312 OP (25, FG, A, B, C, D, E, K1);
313 OP (26, FG, E, A, B, C, D, K1);
314 OP (27, FG, D, E, A, B, C, K1);
315 OP (28, FG, C, D, E, A, B, K1);
[all...]
/external/skia/src/gpu/
H A DFlingState.cpp70 const float K1 = 0.02; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
/external/clang/test/SemaTemplate/
H A Dinstantiate-declref.cpp10 static enum K1 { K1Val = sizeof(T) } Kind1; enum in struct:N::Outer::Inner::InnerTemplate::VeryInner
15 K1 k1 = K1Val;
23 K1 k1 = K1Val;
/external/e2fsprogs/lib/ext2fs/
H A Ddirhash.c63 #define K1 0 macro
75 ROUND(F, a, b, c, d, in[0] + K1, 3);
76 ROUND(F, d, a, b, c, in[1] + K1, 7);
77 ROUND(F, c, d, a, b, in[2] + K1, 11);
78 ROUND(F, b, c, d, a, in[3] + K1, 19);
79 ROUND(F, a, b, c, d, in[4] + K1, 3);
80 ROUND(F, d, a, b, c, in[5] + K1, 7);
81 ROUND(F, c, d, a, b, in[6] + K1, 11);
82 ROUND(F, b, c, d, a, in[7] + K1, 19);
114 #undef K1 macro
[all...]
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java106 public <K1 extends K, V1 extends V> Cache<K1, V1> build() {
107 return new LocalManualCache<K1, V1>(this);
110 public <K1 extends K, V1 extends V> LoadingCache<K1, V1> build( argument
111 CacheLoader<? super K1, V1> loader) {
112 return new LocalLoadingCache<K1, V1>(this, loader);
/external/speex/libspeex/
H A Dmath_approx.h183 #define K1 8192 macro
195 return ADD32(K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))));
199 return SUB32(-K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))));
241 K1 = log(2)
/external/chromium_org/third_party/skia/src/views/
H A DSkTouchGesture.cpp70 const float K1 = 0.02f; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c67 K1, enumerator in enum:__anon16367
/external/guava/guava/src/com/google/common/cache/
H A DCacheBuilder.java393 * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the
410 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher( argument
411 Weigher<? super K1, ? super V1> weigher) {
420 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this;
434 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() {
435 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE);
678 * instance, this method returns {@code CacheBuilder<K1, V
694 removalListener( RemovalListener<? super K1, ? super V1> listener) argument
736 build( CacheLoader<? super K1, V1> loader) argument
[all...]
/external/skia/src/views/
H A DSkTouchGesture.cpp70 const float K1 = 0.02f; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
/external/clang/lib/Format/
H A DFormatToken.h199 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2) const { argument
200 return is(K1) || is(K2);
203 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2, tok::TokenKind K3) const { argument
204 return is(K1) || is(K2) || is(K3);
207 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2, tok::TokenKind K3, argument
216 return is(K1) || is(K2) || is(K3) || is(K4) || is(K5) || is(K6) || is(K7) ||
/external/svox/pico/lib/
H A Dpicosig2.c532 picoos_single K1; local
550 K1 = (picoos_single) PICODSP_START_FLOAT_NORM * K2;
551 XXr[0] = (picoos_int32) ((picoos_single) c1[0] * K1);
/external/chromium_org/third_party/openssl/openssl/crypto/modes/
H A Dgcm128.c1461 static const u8 K1[16], local
1469 #define K2 K1
1723 AES_set_encrypt_key(K1,sizeof(K1)*8,&key);
/external/openssl/crypto/modes/
H A Dgcm128.c1461 static const u8 K1[16], local
1469 #define K2 K1
1723 AES_set_encrypt_key(K1,sizeof(K1)*8,&key);
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp364 Instruction *&InsertionPt, Instruction *&K1,
2738 Instruction *&K1, Instruction *&K2) {
2767 K1 = new ShuffleVectorInst(K, UndefValue::get(VType),
2772 K1 = ExtractElementInst::Create(K, CV0,
2792 K1->insertAfter(K);
2793 K2->insertAfter(K1);
3077 Instruction *K1 = 0, *K2 = 0; local
3078 replaceOutputsOfPair(Context, L, H, K, InsertionPt, K1, K2);
3088 L->replaceAllUsesWith(K1);
3090 AA->replaceWithNewValue(L, K1);
2735 replaceOutputsOfPair(LLVMContext& Context, Instruction *I, Instruction *J, Instruction *K, Instruction *&InsertionPt, Instruction *&K1, Instruction *&K2) argument
[all...]
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...

Completed in 767 milliseconds