Searched refs:K2 (Results 1 - 15 of 15) sorted by relevance

/external/clang/test/SemaCXX/
H A Dusing-directive.cpp48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}} struct in namespace:A
51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}} struct
57 struct K2 *k2; // expected-error{{reference to 'K2' is ambiguous}}
59 K2 *k3; // expected-error{{reference to 'K2' is ambiguous}}
67 struct K2;
68 struct K2 { }; struct in namespace:N
[all...]
/external/v8/test/mjsunit/compiler/
H A Duint32.js33 var K2 = 0xffffffff; variable
37 uint32_array[1] = K2;
44 assertEquals(K2, ChangeI2T(uint32_array, 1));
49 assertEquals(K2, ChangeI2T(uint32_array, 1));
64 assertEquals(K2, Deopt({x: 0}, uint32_array, 1));
66 assertEquals(K2, Deopt({}, uint32_array, 1));
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 |
[all...]
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c68 K2, enumerator in enum:__anon2428
70 K4 = K2,
/external/elfutils/src/lib/
H A Dsha1.c215 #define K2 0x8f1bbcdc macro
334 OP (40, FH, A, B, C, D, E, K2);
335 OP (41, FH, E, A, B, C, D, K2);
336 OP (42, FH, D, E, A, B, C, K2);
337 OP (43, FH, C, D, E, A, B, K2);
338 OP (44, FH, B, C, D, E, A, K2);
339 OP (45, FH, A, B, C, D, E, K2);
340 OP (46, FH, E, A, B, C, D, K2);
341 OP (47, FH, D, E, A, B, C, K2);
342 OP (48, FH, C, D, E, A, B, K2);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Ddirhash.c64 #define K2 013240474631UL macro
85 ROUND(G, a, b, c, d, in[1] + K2, 3);
86 ROUND(G, d, a, b, c, in[3] + K2, 5);
87 ROUND(G, c, d, a, b, in[5] + K2, 9);
88 ROUND(G, b, c, d, a, in[7] + K2, 13);
89 ROUND(G, a, b, c, d, in[0] + K2, 3);
90 ROUND(G, d, a, b, c, in[2] + K2, 5);
91 ROUND(G, c, d, a, b, in[4] + K2, 9);
92 ROUND(G, b, c, d, a, in[6] + K2, 13);
115 #undef K2 macro
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-declref.cpp47 enum K2 { K2Val = sizeof(T)*2 } k2a; enum
49 K2 k2b = K2Val;
/external/openssh/openbsd-compat/
H A Drmd160.c63 #define K2 0x6ED9EBA1U macro
223 R(d, e, a, b, c, F2, K2, 11, 3);
224 R(c, d, e, a, b, F2, K2, 13, 10);
225 R(b, c, d, e, a, F2, K2, 6, 14);
226 R(a, b, c, d, e, F2, K2, 7, 4);
227 R(e, a, b, c, d, F2, K2, 14, 9);
228 R(d, e, a, b, c, F2, K2, 9, 15);
229 R(c, d, e, a, b, F2, K2, 13, 8);
230 R(b, c, d, e, a, F2, K2, 15, 1);
231 R(a, b, c, d, e, F2, K2, 1
[all...]
/external/libvpx/libvpx/vpx_mem/memory_manager/
H A Dhmm_base.c391 #define COMPARE_KEY_KEY(K1, K2) ((K1) == (K2) ? 0 : ((K1) > (K2) ? 1 : -1))
/external/speex/libspeex/
H A Dmath_approx.h184 #define K2 -4096 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))))));
242 K2 = 3-4*log(2)
/external/clang/lib/Format/
H A DFormatToken.h281 template <typename A, typename B> bool isOneOf(A K1, B K2) const {
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/Transforms/Vectorize/
H A DBBVectorize.cpp371 Instruction *&K2);
2808 Instruction *&K1, Instruction *&K2) {
2845 K2 = new ShuffleVectorInst(K, UndefValue::get(VType),
2850 K2 = ExtractElementInst::Create(K, CV1,
2855 K2->insertAfter(K1);
2856 InsertionPt = K2;
3125 Instruction *K1 = nullptr, *K2 = nullptr; local
3126 replaceOutputsOfPair(Context, L, H, K, InsertionPt, K1, K2);
3137 H->replaceAllUsesWith(K2);
3139 AA->replaceWithNewValue(H, K2);
2805 replaceOutputsOfPair(LLVMContext& Context, Instruction *I, Instruction *J, Instruction *K, Instruction *&InsertionPt, Instruction *&K1, Instruction *&K2) argument
[all...]
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h321 ENTRY(K2) \
/external/svox/pico/lib/
H A Dpicosig2.c533 picoos_int32 *D, K2, shift; local
549 K2 = 1 << shift;
550 K1 = (picoos_single) PICODSP_START_FLOAT_NORM * K2;
/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. ...

Completed in 437 milliseconds