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

/external/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/guava/guava-tests/test/com/google/common/hash/
H A DSipHashFunctionTest.java33 private static final long K1 = 0x0f0e0d0c0b0a0908L; field in class:SipHashFunctionTest
34 private static final HashFunction SIP_WITH_KEY = Hashing.sipHash24(K0, K1);
159 assertEquals("Hashing.sipHash24(" + K0 + ", " + K1 + ")", SIP_WITH_KEY.toString());
160 assertEquals("Hashing.sipHash24(" + K0 + ", " + K1 + ")", SIP_WITHOUT_KEY.toString());
/external/clang/test/SemaCXX/
H A Dusing-directive.cpp23 class K1 { class in namespace:A
55 void K1::foo() {} // okay
/external/elfutils/src/lib/
H A Dsha1.c214 #define K1 0x6ed9eba1 macro
312 OP (20, FG, A, B, C, D, E, K1);
313 OP (21, FG, E, A, B, C, D, K1);
314 OP (22, FG, D, E, A, B, C, K1);
315 OP (23, FG, C, D, E, A, B, K1);
316 OP (24, FG, B, C, D, E, A, K1);
317 OP (25, FG, A, B, C, D, E, K1);
318 OP (26, FG, E, A, B, C, D, K1);
319 OP (27, FG, D, E, A, B, C, K1);
320 OP (28, FG, C, D, E, A, B, K1);
[all...]
/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/openssh/openbsd-compat/
H A Drmd160.c62 #define K1 0x5A827999U macro
206 R(e, a, b, c, d, F1, K1, 7, 7);
207 R(d, e, a, b, c, F1, K1, 6, 4);
208 R(c, d, e, a, b, F1, K1, 8, 13);
209 R(b, c, d, e, a, F1, K1, 13, 1);
210 R(a, b, c, d, e, F1, K1, 11, 10);
211 R(e, a, b, c, d, F1, K1, 9, 6);
212 R(d, e, a, b, c, F1, K1, 7, 15);
213 R(c, d, e, a, b, F1, K1, 15, 3);
214 R(b, c, d, e, a, F1, K1,
[all...]
/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/clang/test/Sema/
H A Dwarn-duplicate-enum.c67 K1, enumerator in enum:__anon2428
/external/guava/guava/src/com/google/common/cache/
H A DCacheBuilder.java458 * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the
476 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher( argument
477 Weigher<? super K1, ? super V1> weigher) {
486 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this;
500 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() {
501 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE);
736 public <K1 extend argument
786 build( CacheLoader<? super K1, V1> loader) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java353 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() {
354 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE);
491 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> removalListener( argument
492 RemovalListener<? super K1, ? super V1> listener) {
497 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this;
504 <K1 extends K, V1 extends V> RemovalListener<K1, V
541 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/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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsintrp.c263 cmsS15Fixed16Number k0, k1, rk, K0, K1; local
277 K1 = p16 -> opta[0] * k1;
281 Output[OutChan] = LinearInterp(rk, LutTable[K0+OutChan], LutTable[K1+OutChan]);
834 int K0, K1; local
861 K1 = K0 + (Input[0] == 0xFFFFU ? 0 : p16->opta[3]);
937 LutTable += K1;
1020 int k0, K0, K1; local
1031 K1 = K0 + (Input[0] >= 1.0 ? 0 : p->opta[3]);
1041 T = LutTable + K1;
1064 int K0, K1; local
1107 int k0, K0, K1; local
1152 int K0, K1; local
1194 int k0, K0, K1; local
1238 int K0, K1; local
1279 int k0, K0, K1; local
1324 int K0, K1; local
1364 int k0, K0, K1; local
[all...]
/external/clang/lib/Format/
H A DFormatToken.h281 template <typename A, typename B> bool isOneOf(A K1, B K2) const { argument
282 return is(K1) || is(K2);
285 bool isOneOf(A K1, B K2, Ts... Ks) const { argument
286 return is(K1) || isOneOf(K2, Ks...);
/external/llvm/lib/Target/R600/
H A DSIISelLowering.cpp1100 const SDValue K1 = DAG.getConstantFP(K1Val, MVT::f32); local
1108 SDValue r3 = DAG.getNode(ISD::SELECT, SL, MVT::f32, r2, K1, One);
H A DAMDGPUISelLowering.cpp2209 SDValue K1 local
2217 SDValue Fma = DAG.getNode(ISD::FMA, SL, MVT::f64, FloorMul, K1, Trunc);
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp370 Instruction *&InsertionPt, Instruction *&K1,
2808 Instruction *&K1, Instruction *&K2) {
2829 K1 = new ShuffleVectorInst(K, UndefValue::get(VType),
2834 K1 = ExtractElementInst::Create(K, CV0,
2854 K1->insertAfter(K);
2855 K2->insertAfter(K1);
3125 Instruction *K1 = nullptr, *K2 = nullptr; local
3126 replaceOutputsOfPair(Context, L, H, K, InsertionPt, K1, K2);
3136 L->replaceAllUsesWith(K1);
3138 AA->replaceWithNewValue(L, K1);
2805 replaceOutputsOfPair(LLVMContext& Context, Instruction *I, Instruction *J, Instruction *K, Instruction *&InsertionPt, Instruction *&K1, Instruction *&K2) argument
[all...]
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/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 1429 milliseconds