Home
last modified time | relevance | path

Searched refs:TWO (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/third_party/openssl/crypto/poly1305/
Dpoly1305_ieee754.c60 #define TWO(p) ((double)(1ULL<<(p))) macro
61 #define TWO0 TWO(0)
62 #define TWO32 TWO(32)
63 #define TWO64 (TWO32*TWO(32))
64 #define TWO96 (TWO64*TWO(32))
65 #define TWO130 (TWO96*TWO(34))
117 st->h[0].d = TWO(52)*TWO0; in poly1305_init()
118 st->h[1].d = TWO(52)*TWO32; in poly1305_init()
119 st->h[2].d = TWO(52)*TWO64; in poly1305_init()
120 st->h[3].d = TWO(52)*TWO96; in poly1305_init()
[all …]
/third_party/mesa3d/src/mesa/x86/
Dmmx_blend.S30 TWO(PSUBW ( MX1, MA2 )) /* a2 + 1 | a2 + 1 | a2 + 1 | a2 + 1 */ ;\
31 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;\
34 TWO(PSRLW ( CONST(8), MA2 )) /* t2 >> 8 ~= t2/255 */
52 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;\
57 TWO(MOVQ ( MA2, MP2 )) ;\
58 TWO(PSRLW ( CONST(8), MA2 )) /* t2 >> 8 */ ;\
63 TWO(PADDW ( MP2, MA2 )) /* t2 + (t2 >> 8) ~= (t2/255) << 8 */ ;\
64 TWO(PSRLW ( CONST(8), MA2 )) /* sa2 | sb2 | sg2 | sr2 */
82 TWO(PMULLW ( MP2, MA2 )) /* t2 = p2*a2 */ ;\
83 TWO(PADDW ( M80, MA2 )) /* t2 += 0x80 */ ;\
[all …]
/third_party/typescript/tests/baselines/reference/
DinvalidForContinueStatements.js9 for(;;) continue TWO;
12 TWO:
15 continue TWO;
46 continue TWO;
48 TWO: for (;;) {
50 continue TWO;
DinvalidWhileBreakStatements.js9 while (true) break TWO;
12 TWO:
15 break TWO;
47 break TWO;
49 TWO: while (true) {
51 break TWO;
DinvalidForBreakStatements.js9 for(;;) break TWO;
12 TWO:
15 break TWO;
46 break TWO;
48 TWO: for (;;) {
50 break TWO;
DinvalidDoWhileContinueStatements.js9 do continue TWO; while (true)
12 TWO:
15 continue TWO;
47 continue TWO;
50 TWO: do {
52 continue TWO;
DinvalidWhileContinueStatements.js9 while (true) continue TWO;
12 TWO:
15 continue TWO;
47 continue TWO;
49 TWO: while (true) {
51 continue TWO;
DinvalidDoWhileBreakStatements.js9 do break TWO; while (true)
12 TWO:
15 break TWO;
47 break TWO;
50 TWO: do {
52 break TWO;
DinvalidForInContinueStatements.js9 for (var x in {}) continue TWO;
12 TWO:
15 continue TWO;
47 continue TWO;
49 TWO: for (var x in {}) {
51 continue TWO;
DinvalidForInBreakStatements.js9 for (var x in {}) break TWO;
12 TWO:
15 break TWO;
47 break TWO;
49 TWO: for (var x in {}) {
51 break TWO;
DinvalidForContinueStatements.types11 for(;;) continue TWO;
12 >TWO : any
15 TWO:
16 >TWO : any
21 >() => { continue TWO; } : () => void
23 continue TWO;
24 >TWO : any
DinvalidForBreakStatements.types11 for(;;) break TWO;
12 >TWO : any
15 TWO:
16 >TWO : any
21 >() => { break TWO; } : () => void
23 break TWO;
24 >TWO : any
DinvalidWhileBreakStatements.types11 while (true) break TWO;
13 >TWO : any
16 TWO:
17 >TWO : any
24 >() => { break TWO; } : () => void
26 break TWO;
27 >TWO : any
DinvalidWhileContinueStatements.types11 while (true) continue TWO;
13 >TWO : any
16 TWO:
17 >TWO : any
24 >() => { continue TWO; } : () => void
26 continue TWO;
27 >TWO : any
DinvalidForInContinueStatements.types11 for (var x in {}) continue TWO;
14 >TWO : any
17 TWO:
18 >TWO : any
26 >() => { continue TWO; } : () => void
28 continue TWO;
29 >TWO : any
DinvalidDoWhileContinueStatements.types11 do continue TWO; while (true)
12 >TWO : any
16 TWO:
17 >TWO : any
22 >() => { continue TWO; } : () => void
24 continue TWO;
25 >TWO : any
DinvalidForInBreakStatements.types11 for (var x in {}) break TWO;
14 >TWO : any
17 TWO:
18 >TWO : any
26 >() => { break TWO; } : () => void
28 break TWO;
29 >TWO : any
DinvalidDoWhileBreakStatements.types11 do break TWO; while (true)
12 >TWO : any
16 TWO:
17 >TWO : any
22 >() => { break TWO; } : () => void
24 break TWO;
25 >TWO : any
DcontinueNotInIterationStatement4.types2 TWO:
3 >TWO : any
10 >() => { continue TWO; } : () => void
12 continue TWO;
13 >TWO : any
Dparser_continueNotInIterationStatement4.types2 TWO:
3 >TWO : any
10 >() => { continue TWO; } : () => void
12 continue TWO;
13 >TWO : any
DnumericEnumMappedType.types4 enum E1 { ONE, TWO, THREE }
7 >TWO : E1.TWO
10 declare enum E2 { ONE, TWO, THREE }
13 >TWO : E2
97 // ONE and TWO below are not computed members but rather just numerically valued members
100 declare enum E { ONE, TWO, THREE = 'x' }
103 >TWO : E.TWO
Dparser_continueNotInIterationStatement4.js2 TWO:
5 continue TWO;
11 TWO: while (true) {
13 continue TWO;
DcontinueNotInIterationStatement4.js2 TWO:
5 continue TWO;
11 TWO: while (true) {
13 continue TWO;
DnumericEnumMappedType.js4 enum E1 { ONE, TWO, THREE }
5 declare enum E2 { ONE, TWO, THREE }
35 declare enum E { ONE, TWO, THREE = 'x' }
74 TWO = 1,
79 TWO,
106 TWO = 1,
/third_party/musl/libc-test/src/functionalext/supplement/prng/
Dmrand48.c21 #define TWO 2 macro
33 EXPECT_TRUE("jrand48_0100", rev < pow(TWO, THIRTYONE) && rev > -pow(TWO, THIRTYONE)); in jrand48_0100()
58 EXPECT_TRUE("mrand48_0100", ret < pow(TWO, THIRTYONE) && ret > -pow(TWO, THIRTYONE)); in mrand48_0100()

12345678910>>...15