Searched refs:op2 (Results 1 - 25 of 110) sorted by relevance

12345

/external/valgrind/none/tests/s390x/
H A Dcds.c16 uint64_t op2 = op2_init; local
20 uint64_t op2_before = op2;
24 printf("before op2 = %#lx\n", op2);
35 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
40 printf("after op2 = %#lx\n", op2);
62 // lower 32 bits of op2 are the lower 32 bits of op3.low
63 if ((op2 & 0xffffffff) != (op3.low & 0xffffffff)) {
66 // higher 32 bits of op2 ar
96 uint64_t op2; local
[all...]
H A Dlaa.c11 int32_t op2 = op2_init; local
15 printf("before op2 = %#x\n", op2);
22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
27 printf("after op2 = %#x\n", op2);
34 if (expected_cc == 0 && op2 != 0) {
37 if (expected_cc == 1 && op2 >= 0) {
40 if (expected_cc == 2 && op2 <= 0) {
H A Dcs.c11 int32_t op2 = op2_init; local
15 printf("before op2 = %#x\n", op2);
22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
27 printf("after op2 = %#x\n", op2);
35 if (op2 != op3) {
39 if (op1 != op2) {
H A Dcsg.c11 int64_t op2 = op2_init; local
15 printf("before op2 = %#lx\n", op2);
22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
27 printf("after op2 = %#lx\n", op2);
35 if (op2 != op3) {
39 if (op1 != op2) {
H A Dcds.stdout.exp2 before op2 = 0x445566778899aabb
5 after op2 = 0xdeadbabedeadbabe
9 before op2 = 0x8000000000000001
12 after op2 = 0x8000000000000001
H A Dcs.stdout.exp2 before op2 = 0x10000000
5 after op2 = 0x12345678
9 before op2 = 0x20000000
12 after op2 = 0x20000000
H A Dcsg.stdout.exp2 before op2 = 0x1000000000000000
5 after op2 = 0x1234567887654321
9 before op2 = 0x2000000000000000
12 after op2 = 0x2000000000000000
H A Dlaa.stdout.exp2 before op2 = 0
5 after op2 = 0
9 before op2 = 0xffffffff
12 after op2 = 0xfffffffe
16 before op2 = 0x10000000
19 after op2 = 0x22345678
23 before op2 = 0x20000000
26 after op2 = 0x32345678
30 before op2 = 0x3
33 after op2
[all...]
H A Dcdsg.stdout.exp2 before op2 = (0x11223344556677, 0x8899aabbccddeeff)
5 after op2 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
9 before op2 = (0, 0x1)
12 after op2 = (0, 0x1)
16 before op2 = (0x1, 0)
19 after op2 = (0x1, 0)
H A Dcdsg.c29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
84 quad_word op1, op2, op3; local
86 // op1 == op2
89 op2 = op1;
91 test(op1, op2, op3, 0);
93 // op1 != op2 (only MSB differs)
96 op2.high = 0;
97 op2.low = 1;
99 test(op1, op2, op
[all...]
H A Ddfp_utils.h22 #define DFP_BINOP_PRINT(op1, op2, result, type, op, cc) \
26 DFP_VAL_PRINT(op2, type); \
H A Dcomp-1.c14 #define RIL_RI(op1,r1,op2,i2) \
15 ".short 0x" #op1 #r1 #op2 "\n\t" \
25 int64_t op2 = v2; \
30 : "d" (op1), "d" (op2) \
33 #insn, op1, op2, cc); \
42 op2_t op2 = v2; \
47 : "d" (op1), "Q" (op2) \
50 #insn, op1, (int64_t)op2, cc); \
H A Dcomp-2.c14 #define RIL_RU(op1,r1,op2,i2) \
15 ".short 0x" #op1 #r1 #op2 "\n\t" \
25 uint64_t op2 = v2; \
30 : "d" (op1), "d" (op2) \
33 #insn, op1, op2, cc); \
42 op2_t op2 = v2; \
47 : "d" (op1), "Q" (op2) \
50 #insn, op1, (uint64_t)op2, cc); \
H A Dopcodes.h19 #define RIL_RI(op1,r1,op2,i2) \
20 ".short 0x" #op1 #r1 #op2 "\n\t" \
22 #define RIE_RRI0(op1,r1,r3,i2,u0,op2) \
24 ".long 0x" #i2 #u0 #op2 "\n\t"
26 #define SIY_IRD(op1,i2,b1,dl1,dh1,op2) \
28 ".long 0x" #b1 #dl1 #dh1 #op2 "\n\t"
29 #define RXY_RRRD(op1,r1,x2,b2,dl2,dh2,op2) \
31 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
32 #define RIL_RU(op1,r1,op2,i2) \
33 ".short 0x" #op1 #r1 #op2 "\
[all...]
/external/valgrind/memcheck/tests/s390x/
H A Dcds.c14 uint64_t op2 = op2_init; local
23 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
44 uint64_t op2; local
48 op2 = 42;
50 test(op1, op2, op3); // complaint
56 uint64_t op2; local
59 // op2 undefined
61 test(op1, op2, op3); // complaint
67 uint64_t op2; local
70 op2
[all...]
H A Dcdsg.c34 quad_word op1, op2, op3; local
37 op2.high = op2.low = 42;
39 test(op1, op2, op3); // complaint
44 quad_word op1, op2, op3; local
47 // op2 undefined
49 test(op1, op2, op3); // complaint
54 quad_word op1, op2, op3; local
57 op2 = op1;
59 test(op1, op2, op
[all...]
H A Dcs.c11 int32_t op2 = op2_init; local
18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
25 int op1, op2, op3; local
28 test(0x10000000, op2, 0x12345678); // complaint
H A Dcsg.c11 int64_t op2 = op2_init; local
18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
25 int64_t op1, op2, op3; local
28 test(0x1000000000000000ull, op2, 0x1234567887654321ull); // complaint
/external/javassist/src/main/javassist/compiler/ast/
H A DStmnt.java45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) { argument
46 return new Stmnt(op, op1, new ASTList(op2, new ASTList(op3)));
/external/valgrind/VEX/priv/
H A Dguest_s390_toIR.c161 binop(IROp kind, IRExpr *op1, IRExpr *op2) argument
163 return IRExpr_Binop(kind, op1, op2);
168 triop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3) argument
170 return IRExpr_Triop(kind, op1, op2, op3);
175 qop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3, IRExpr *op4) argument
177 return IRExpr_Qop(kind, op1, op2, op3, op4);
785 s390_call_calculate_icc(UInt m, UInt opc, IRTemp op1, IRTemp op2) argument
792 dep2 = s390_cc_widen(op2, True);
797 dep2 = s390_cc_widen(op2, False);
2601 IRTemp op2 local
2617 IRTemp op2 = newTemp(Ity_I64); local
2633 IRTemp op2 = newTemp(Ity_I64); local
2648 IRTemp op2 = newTemp(Ity_I32); local
2664 IRTemp op2 = newTemp(Ity_I64); local
2681 IRTemp op2 = newTemp(Ity_I32); local
2697 IRTemp op2 = newTemp(Ity_I32); local
2713 IRTemp op2 = newTemp(Ity_I64); local
2729 IRTemp op2 = newTemp(Ity_I64); local
2745 Int op2; local
2762 Long op2; local
2778 Int op2; local
2795 Long op2; local
2813 Int op2; local
2830 Long op2; local
2847 IRTemp op2 = newTemp(Ity_I32); local
2863 IRTemp op2 = newTemp(Ity_I32); local
2879 Int op2; local
2896 Long op2; local
2912 IRTemp op2 = newTemp(Ity_I32); local
2928 IRTemp op2 = newTemp(Ity_I32); local
2945 Int op2; local
2962 IRTemp op2 = newTemp(Ity_I32); local
2978 IRTemp op2 = newTemp(Ity_I64); local
2994 IRTemp op2 = newTemp(Ity_I64); local
3009 IRTemp op2 = newTemp(Ity_I32); local
3025 IRTemp op2 = newTemp(Ity_I64); local
3042 IRTemp op2 = newTemp(Ity_I32); local
3058 IRTemp op2 = newTemp(Ity_I32); local
3074 IRTemp op2 = newTemp(Ity_I64); local
3090 IRTemp op2 = newTemp(Ity_I64); local
3106 UInt op2; local
3123 ULong op2; local
3139 IRTemp op2 = newTemp(Ity_I32); local
3155 IRTemp op2 = newTemp(Ity_I32); local
3172 IRTemp op2 = newTemp(Ity_I32); local
3191 IRTemp op2 = newTemp(Ity_I64); local
3211 IRTemp op2 = newTemp(Ity_I32); local
3230 IRTemp op2 = newTemp(Ity_I64); local
3250 UInt op2; local
3267 ULong op2; local
3283 UInt op2; local
3300 ULong op2; local
3318 UInt op2; local
3335 UInt op2; local
3350 IRTemp op2 = newTemp(Ity_I32); local
3366 IRTemp op2 = newTemp(Ity_I64); local
3381 IRTemp op2 = newTemp(Ity_I32); local
3397 IRTemp op2 = newTemp(Ity_I64); local
3414 IRTemp op2 = newTemp(Ity_I32); local
3430 IRTemp op2 = newTemp(Ity_I32); local
3446 IRTemp op2 = newTemp(Ity_I64); local
3462 UChar op2; local
3478 UChar op2; local
3494 UInt op2; local
3510 UShort op2; local
3526 UShort op2; local
3542 UInt op2; local
3558 UShort op2; local
3574 UShort op2; local
3899 IRTemp op2 = newTemp(Ity_I32); local
3912 IRTemp op2 = newTemp(Ity_I64); local
3925 IRTemp op2 = newTemp(Ity_I64); local
3938 IRTemp op2 = newTemp(Ity_I32); local
3951 IRTemp op2 = newTemp(Ity_I32); local
3964 IRTemp op2 = newTemp(Ity_I64); local
3977 IRTemp op2 = newTemp(Ity_I64); local
3990 Int op2; local
4004 Long op2; local
4018 IRTemp op2 = newTemp(Ity_I32); local
4032 IRTemp op2 = newTemp(Ity_I64); local
4046 IRTemp op2 = newTemp(Ity_I64); local
4060 IRTemp op2 = newTemp(Ity_I32); local
4084 IRTemp op2 = newTemp(Ity_I64); local
4108 IRTemp op2 = newTemp(Ity_I32); local
4134 IRTemp op2 = newTemp(Ity_I64); local
4160 Int op2; local
4184 Long op2; local
4208 Int op2; local
4233 Long op2; local
4258 IRTemp op2 = newTemp(Ity_I32); local
4271 IRTemp op2 = newTemp(Ity_I32); local
4284 IRTemp op2 = newTemp(Ity_I64); local
4297 Int op2; local
4311 Long op2; local
4325 Short op2; local
4339 Int op2; local
4353 Long op2; local
4367 IRTemp op2 = newTemp(Ity_I32); local
4381 IRTemp op2 = newTemp(Ity_I64); local
4395 IRTemp op2 = newTemp(Ity_I32); local
4408 IRTemp op2 = newTemp(Ity_I32); local
4421 IRTemp op2 = newTemp(Ity_I32); local
4434 Int op2; local
4448 IRTemp op2 = newTemp(Ity_I32); local
4461 IRTemp op2 = newTemp(Ity_I64); local
4474 IRTemp op2 = newTemp(Ity_I64); local
4487 IRTemp op2 = newTemp(Ity_I32); local
4500 IRTemp op2 = newTemp(Ity_I32); local
4513 IRTemp op2 = newTemp(Ity_I64); local
4526 IRTemp op2 = newTemp(Ity_I64); local
4539 UInt op2; local
4553 ULong op2; local
4567 UChar op2; local
4581 UChar op2; local
4595 UInt op2; local
4609 ULong op2; local
4623 UShort op2; local
4637 IRTemp op2 = newTemp(Ity_I32); local
4651 IRTemp op2 = newTemp(Ity_I64); local
4665 IRTemp op2 = newTemp(Ity_I64); local
4679 IRTemp op2 = newTemp(Ity_I32); local
4693 IRTemp op2 = newTemp(Ity_I64); local
4707 IRTemp op2 = newTemp(Ity_I32); local
4731 IRTemp op2 = newTemp(Ity_I64); local
4755 IRTemp op2 = newTemp(Ity_I32); local
4780 IRTemp op2 = newTemp(Ity_I64); local
4805 UInt op2; local
4829 ULong op2; local
4853 UInt op2; local
4878 ULong op2; local
4903 IRTemp op2 = newTemp(Ity_I32); local
4965 IRTemp op2 = newTemp(Ity_I32); local
5027 IRTemp op2 = newTemp(Ity_I32); local
5089 IRTemp op2 = newTemp(Ity_I32); local
5102 IRTemp op2 = newTemp(Ity_I32); local
5115 IRTemp op2 = newTemp(Ity_I32); local
5128 UInt op2; local
5152 IRTemp op2 = newTemp(Ity_I32); local
5172 IRTemp op2 = newTemp(Ity_I64); local
5191 IRTemp op2 = newTemp(Ity_I32); local
5207 IRTemp op2 = newTemp(Ity_I64); local
5224 IRTemp op2 = newTemp(Ity_I32); local
5240 IRTemp op2 = newTemp(Ity_I32); local
5256 IRTemp op2 = newTemp(Ity_I64); local
5272 UChar op2; local
5288 UChar op2; local
5304 UInt op2; local
5320 UInt op2; local
5652 IRTemp op2 = newTemp(Ity_I32); local
5686 IRTemp op2 = newTemp(Ity_I64); local
5720 IRTemp op2 = newTemp(Ity_I32); local
5750 IRTemp op2 = newTemp(Ity_I64); local
5858 IRTemp op2 = newTemp(Ity_I32); local
5870 IRTemp op2 = newTemp(Ity_I64); local
5882 IRTemp op2 = newTemp(Ity_I64); local
5894 IRTemp op2 = newTemp(Ity_I32); local
5906 IRTemp op2 = newTemp(Ity_I64); local
5918 IRTemp op2 = newTemp(Ity_I64); local
5971 IRTemp op2 = newTemp(Ity_I32); local
5988 IRTemp op2 = newTemp(Ity_I64); local
6005 IRTemp op2 = newTemp(Ity_I64); local
6300 IRTemp op2 = newTemp(Ity_I32); local
6315 IRTemp op2 = newTemp(Ity_I64); local
6330 IRTemp op2 = newTemp(Ity_I64); local
6391 IRTemp op2 = newTemp(Ity_I32); local
6406 IRTemp op2 = newTemp(Ity_I64); local
6421 IRTemp op2 = newTemp(Ity_I64); local
6488 IRTemp op2 = newTemp(Ity_I16); local
6500 IRTemp op2 = newTemp(Ity_I32); local
6517 IRTemp op2 = newTemp(Ity_I64); local
6583 IRTemp op2 = newTemp(Ity_I32); local
6599 IRTemp op2 = newTemp(Ity_I32); local
6615 IRTemp op2 = newTemp(Ity_I32); local
6631 IRTemp op2 = newTemp(Ity_I16); local
6647 IRTemp op2 = newTemp(Ity_I16); local
6663 Short op2; local
6679 Short op2; local
6695 IRTemp op2 = newTemp(Ity_I32); local
6711 IRTemp op2 = newTemp(Ity_I64); local
6727 IRTemp op2 = newTemp(Ity_I32); local
6743 IRTemp op2 = newTemp(Ity_I64); local
6759 IRTemp op2 = newTemp(Ity_I32); local
6774 IRTemp op2 = newTemp(Ity_I64); local
6789 IRTemp op2 = newTemp(Ity_I32); local
6805 IRTemp op2 = newTemp(Ity_I32); local
6820 IRTemp op2 = newTemp(Ity_I32); local
6835 IRTemp op2 = newTemp(Ity_I64); local
6850 IRTemp op2 = newTemp(Ity_I32); local
6866 Int op2; local
6881 Int op2; local
6897 IRTemp op2 = newTemp(Ity_I32); local
6913 IRTemp op2 = newTemp(Ity_I64); local
6928 IRTemp op2 = newTemp(Ity_I32); local
6944 IRTemp op2 = newTemp(Ity_I64); local
6961 IRTemp op2 = newTemp(Ity_I32); local
6977 IRTemp op2 = newTemp(Ity_I32); local
6993 IRTemp op2 = newTemp(Ity_I64); local
7009 UChar op2; local
7025 UChar op2; local
7041 UInt op2; local
7057 UShort op2; local
7073 UShort op2; local
7089 UInt op2; local
7105 UShort op2; local
7121 UShort op2; local
7473 IRTemp op2 = newTemp(Ity_I64); local
7512 IRTemp op2 = newTemp(Ity_I64); local
7551 IRTemp op2 = newTemp(Ity_I64); local
7589 IRTemp op2 = newTemp(Ity_I64); local
8139 IRTemp op2 = newTemp(Ity_I32); local
8155 IRTemp op2 = newTemp(Ity_I64); local
8171 IRTemp op2 = newTemp(Ity_I64); local
8186 IRTemp op2 = newTemp(Ity_I32); local
8202 IRTemp op2 = newTemp(Ity_I64); local
8219 IRTemp op2 = newTemp(Ity_I32); local
8235 IRTemp op2 = newTemp(Ity_I32); local
8251 IRTemp op2 = newTemp(Ity_I64); local
8267 IRTemp op2 = newTemp(Ity_I64); local
8283 IRTemp op2 = newTemp(Ity_I32); local
8299 IRTemp op2 = newTemp(Ity_I32); local
8314 IRTemp op2 = newTemp(Ity_I32); local
8330 IRTemp op2 = newTemp(Ity_I32); local
8347 IRTemp op2 = newTemp(Ity_I32); local
8363 IRTemp op2 = newTemp(Ity_I64); local
8379 IRTemp op2 = newTemp(Ity_I64); local
8394 IRTemp op2 = newTemp(Ity_I32); local
8410 IRTemp op2 = newTemp(Ity_I64); local
8427 IRTemp op2 = newTemp(Ity_I32); local
8443 IRTemp op2 = newTemp(Ity_I32); local
8459 IRTemp op2 = newTemp(Ity_I64); local
8475 IRTemp op2 = newTemp(Ity_I64); local
8491 UInt op2; local
8508 ULong op2; local
8524 IRTemp op2 = newTemp(Ity_I32); local
8540 IRTemp op2 = newTemp(Ity_I32); local
8557 IRTemp op2 = newTemp(Ity_I32); local
8577 IRTemp op2 = newTemp(Ity_I64); local
8597 IRTemp op2 = newTemp(Ity_I32); local
8617 IRTemp op2 = newTemp(Ity_I64); local
8949 IRTemp op2 = newTemp(Ity_F32); local
8967 IRTemp op2 = newTemp(Ity_F64); local
8985 IRTemp op2 = newTemp(Ity_F32); local
9003 IRTemp op2 = newTemp(Ity_F64); local
9025 IRTemp op2 = newTemp(Ity_I32); local
9038 IRTemp op2 = newTemp(Ity_I32); local
9054 IRTemp op2 = newTemp(Ity_I64); local
9071 IRTemp op2 = newTemp(Ity_I64); local
9087 IRTemp op2 = newTemp(Ity_I32); local
9103 IRTemp op2 = newTemp(Ity_I32); local
9118 IRTemp op2 = newTemp(Ity_I64); local
9134 IRTemp op2 = newTemp(Ity_I64); local
9296 IRTemp op2 = newTemp(Ity_F32); local
9313 IRTemp op2 = newTemp(Ity_F64); local
9330 IRTemp op2 = newTemp(Ity_F32); local
9347 IRTemp op2 = newTemp(Ity_F64); local
9451 IRTemp op2 = newTemp(Ity_F32); local
9469 IRTemp op2 = newTemp(Ity_F64); local
9486 IRTemp op2 = newTemp(Ity_F32); local
9503 IRTemp op2 = newTemp(Ity_F64); local
9520 IRTemp op2 = newTemp(Ity_F32); local
9538 IRTemp op2 = newTemp(Ity_F64); local
9556 IRTemp op2 = newTemp(Ity_F32); local
9574 IRTemp op2 = newTemp(Ity_F64); local
9595 IRTemp op2 = newTemp(Ity_D64); local
9622 IRTemp op2 = newTemp(Ity_D128); local
9647 IRTemp op2 = newTemp(Ity_D64); local
9665 IRTemp op2 = newTemp(Ity_D128); local
9689 IRTemp op2 = newTemp(Ity_I32); local
9708 IRTemp op2 = newTemp(Ity_I32); local
9724 IRTemp op2 = newTemp(Ity_I64); local
9745 IRTemp op2 = newTemp(Ity_I64); local
9766 IRTemp op2 = newTemp(Ity_I32); local
9785 IRTemp op2 = newTemp(Ity_I32); local
9804 IRTemp op2 = newTemp(Ity_I64); local
9825 IRTemp op2 = newTemp(Ity_I64); local
9937 IRTemp op2 = newTemp(Ity_D64); local
9958 IRTemp op2 = newTemp(Ity_D128); local
10077 IRTemp op2 = newTemp(Ity_D64); local
10103 IRTemp op2 = newTemp(Ity_D128); local
10173 IRTemp op2 = newTemp(Ity_D64); local
10191 IRTemp op2 = newTemp(Ity_D128); local
10302 IRTemp op2 = newTemp(Ity_D64); local
10328 IRTemp op2 = newTemp(Ity_D128); local
10354 IRTemp op2 = newTemp(Ity_D64); local
10382 IRTemp op2 = newTemp(Ity_D128); local
10410 IRTemp op2 = newTemp(Ity_D64); local
10438 IRTemp op2 = newTemp(Ity_D128); local
10466 IRTemp op2 = newTemp(Ity_D64); local
10493 IRTemp op2 = newTemp(Ity_D128); local
11638 s390_irgen_divide_64to32(IROp op, UChar r1, IRTemp op2) argument
11652 s390_irgen_divide_128to64(IROp op, UChar r1, IRTemp op2) argument
11666 s390_irgen_divide_64to64(IROp op, UChar r1, IRTemp op2) argument
11680 IRTemp op2 = newTemp(Ity_I32); local
11692 IRTemp op2 = newTemp(Ity_I32); local
11704 IRTemp op2 = newTemp(Ity_I32); local
11716 IRTemp op2 = newTemp(Ity_I32); local
11728 IRTemp op2 = newTemp(Ity_I64); local
11740 IRTemp op2 = newTemp(Ity_I64); local
11752 IRTemp op2 = newTemp(Ity_I64); local
11764 IRTemp op2 = newTemp(Ity_I64); local
11776 IRTemp op2 = newTemp(Ity_I64); local
11788 IRTemp op2 = newTemp(Ity_I64); local
12065 IRTemp op2 = newTemp(Ity_F128); local
12084 IRTemp op2 = newTemp(Ity_F32); local
12102 IRTemp op2 = newTemp(Ity_F64); local
12120 IRTemp op2 = newTemp(Ity_F128); local
12138 IRTemp op2 = newTemp(Ity_F32); local
12156 IRTemp op2 = newTemp(Ity_F64); local
12174 IRTemp op2 = newTemp(Ity_I32); local
12189 IRTemp op2 = newTemp(Ity_I32); local
12202 IRTemp op2 = newTemp(Ity_I64); local
12217 IRTemp op2 = newTemp(Ity_I64); local
12305 IRTemp op2 = newTemp(Ity_F128); local
12535 IRTemp op2 = newTemp(Ity_F128); local
12573 IRExpr *op2 = load(Ity_F32, mkexpr(op2addr)); local
12585 IRExpr *op2 = load(Ity_F64, mkexpr(op2addr)); local
12619 IRExpr *op2 = load(Ity_F32, mkexpr(op2addr)); local
12631 IRExpr *op2 = load(Ity_F64, mkexpr(op2addr)); local
12705 IRTemp op2 = newTemp(Ity_F128); local
14165 unsigned int op2 : 4; member in struct:__anon21990::__anon21991
15228 unsigned int op2 : 8; member in struct:__anon22005::__anon22006
15237 unsigned int op2 : 8; member in struct:__anon22005::__anon22007
15246 unsigned int op2 : 8; member in struct:__anon22005::__anon22008
15255 unsigned int op2 : 8; member in struct:__anon22005::__anon22009
15263 unsigned int op2 : 8; member in struct:__anon22005::__anon22010
15268 unsigned int op2 : 4; member in struct:__anon22005::__anon22011
15278 unsigned int op2 : 8; member in struct:__anon22005::__anon22012
15288 unsigned int op2 : 8; member in struct:__anon22005::__anon22013
15297 unsigned int op2 : 8; member in struct:__anon22005::__anon22014
15306 unsigned int op2 : 8; member in struct:__anon22005::__anon22015
15315 unsigned int op2 : 8; member in struct:__anon22005::__anon22016
15325 unsigned int op2 : 8; member in struct:__anon22005::__anon22017
15334 unsigned int op2 : 8; member in struct:__anon22005::__anon22018
15342 unsigned int op2 : 8; member in struct:__anon22005::__anon22019
15380 unsigned int op2 : 4; member in struct:__anon22005::__anon22024
[all...]
H A Dhost_s390_defs.h331 s390_amode *op2; member in struct:__anon22488
413 s390_opnd_RMI op2; member in struct:__anon22492::__anon22493::__anon22500
418 s390_opnd_RMI op2; member in struct:__anon22492::__anon22493::__anon22501
423 s390_opnd_RMI op2; member in struct:__anon22492::__anon22493::__anon22502
428 s390_opnd_RMI op2; member in struct:__anon22492::__anon22493::__anon22503
455 s390_amode *op2; member in struct:__anon22492::__anon22493::__anon22509
491 HReg op2; member in struct:__anon22492::__anon22493::__anon22512
537 HReg op2; /* integer operand */ member in struct:__anon22492::__anon22493::__anon22519
564 HReg op2; /* integer operand */ member in struct:__anon22492::__anon22493::__anon22523
634 s390_opnd_RMI op2);
[all...]
/external/v8/src/arm64/
H A Dutils-arm64.h126 inline double FusedMultiplyAdd(double op1, double op2, double a) { argument
127 return fma(op1, op2, a);
131 inline float FusedMultiplyAdd(float op1, float op2, float a) { argument
132 return fmaf(op1, op2, a);
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c295 unsigned op2:11; member in struct:vx_inst::__anon14469
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, argument
308 inst.inst.op2 = op2;
328 unsigned op2:10; member in struct:vxr_inst::__anon14470
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, argument
342 inst.inst.op2 = op2;
359 unsigned op2:6; member in struct:va_inst::__anon14471
364 emit_va(struct ppc_function *p, uint op2, uin argument
412 unsigned op2:10; member in struct:xl_inst::__anon14473
418 emit_xl(struct ppc_function *p, uint op, uint bo, uint bi, uint bh, uint op2, uint lk) argument
456 unsigned op2:10; member in struct:x_inst::__anon14474
462 emit_x(struct ppc_function *p, uint op, uint vrs, uint ra, uint rb, uint op2, const char *format) argument
520 unsigned op2:5; member in struct:a_inst::__anon14476
526 emit_a(struct ppc_function *p, uint op, uint frt, uint fra, uint frb, uint op2, uint rc, const char *format) argument
553 unsigned op2:9; member in struct:xo_inst::__anon14477
559 emit_xo(struct ppc_function *p, uint op, uint rt, uint ra, uint rb, uint oe, uint op2, uint rc, const char *format) argument
[all...]
/external/libunwind/src/arm/
H A DGex_tables.c171 uint8_t op2 = READ_OP (); local
172 if (op == 0x80 && op2 == 0x00)
177 edata.data = ((op & 0xf) << 8) | op2;
207 uint8_t op2 = READ_OP (); local
208 if (op2 == 0 || (op2 & 0xf0))
213 edata.data = op2 & 0x0f;
258 uint8_t op2 = READ_OP (); local
259 if (op2 == 0 || (op2
[all...]
/external/v8/src/parsing/
H A Dtoken.h289 static bool EvalComparison(Value op, double op1, double op2) {
293 case Token::EQ_STRICT: return (op1 == op2);
294 case Token::NE: return (op1 != op2);
295 case Token::LT: return (op1 < op2);
296 case Token::GT: return (op1 > op2);
297 case Token::LTE: return (op1 <= op2);
298 case Token::GTE: return (op1 >= op2);

Completed in 1597 milliseconds

12345