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

12345

/external/valgrind/main/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); \
/external/valgrind/main/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/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dintnum.c425 wordptr op1, op2 = NULL; local
433 op2 = intnum_tobv(op2static, operand);
446 BitVector_add(result, op1, op2, &carry);
449 BitVector_sub(result, op1, op2, &carry);
452 BitVector_Multiply(result, op1, op2);
455 /* TODO: make sure op1 and op2 are unsigned */
456 if (BitVector_is_empty(op2)) {
461 BitVector_Divide(result, op1, op2, spare);
464 if (BitVector_is_empty(op2)) {
469 BitVector_Divide(result, op1, op2, spar
615 wordptr op1, op2; local
779 wordptr op1 = op1static, op2; local
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_s390_toIR.c170 binop(IROp kind, IRExpr *op1, IRExpr *op2) argument
172 return IRExpr_Binop(kind, op1, op2);
177 triop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3) argument
179 return IRExpr_Triop(kind, op1, op2, op3);
184 qop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3, IRExpr *op4) argument
186 return IRExpr_Qop(kind, op1, op2, op3, op4);
778 s390_call_calculate_icc(UInt m, UInt opc, IRTemp op1, IRTemp op2) argument
785 dep2 = s390_cc_widen(op2, True);
790 dep2 = s390_cc_widen(op2, False);
2594 IRTemp op2 local
2610 IRTemp op2 = newTemp(Ity_I64); local
2626 IRTemp op2 = newTemp(Ity_I64); local
2641 IRTemp op2 = newTemp(Ity_I32); local
2657 IRTemp op2 = newTemp(Ity_I64); local
2674 IRTemp op2 = newTemp(Ity_I32); local
2690 IRTemp op2 = newTemp(Ity_I32); local
2706 IRTemp op2 = newTemp(Ity_I64); local
2722 IRTemp op2 = newTemp(Ity_I64); local
2738 Int op2; local
2755 Long op2; local
2771 Int op2; local
2788 Long op2; local
2806 Int op2; local
2823 Long op2; local
2840 IRTemp op2 = newTemp(Ity_I32); local
2856 IRTemp op2 = newTemp(Ity_I32); local
2872 Int op2; local
2889 Long op2; local
2905 IRTemp op2 = newTemp(Ity_I32); local
2921 IRTemp op2 = newTemp(Ity_I32); local
2938 Int op2; local
2955 IRTemp op2 = newTemp(Ity_I32); local
2971 IRTemp op2 = newTemp(Ity_I64); local
2987 IRTemp op2 = newTemp(Ity_I64); local
3002 IRTemp op2 = newTemp(Ity_I32); local
3018 IRTemp op2 = newTemp(Ity_I64); local
3035 IRTemp op2 = newTemp(Ity_I32); local
3051 IRTemp op2 = newTemp(Ity_I32); local
3067 IRTemp op2 = newTemp(Ity_I64); local
3083 IRTemp op2 = newTemp(Ity_I64); local
3099 UInt op2; local
3116 ULong op2; local
3132 IRTemp op2 = newTemp(Ity_I32); local
3148 IRTemp op2 = newTemp(Ity_I32); local
3165 IRTemp op2 = newTemp(Ity_I32); local
3184 IRTemp op2 = newTemp(Ity_I64); local
3204 IRTemp op2 = newTemp(Ity_I32); local
3223 IRTemp op2 = newTemp(Ity_I64); local
3243 UInt op2; local
3260 ULong op2; local
3276 UInt op2; local
3293 ULong op2; local
3311 UInt op2; local
3328 UInt op2; local
3343 IRTemp op2 = newTemp(Ity_I32); local
3359 IRTemp op2 = newTemp(Ity_I64); local
3374 IRTemp op2 = newTemp(Ity_I32); local
3390 IRTemp op2 = newTemp(Ity_I64); local
3407 IRTemp op2 = newTemp(Ity_I32); local
3423 IRTemp op2 = newTemp(Ity_I32); local
3439 IRTemp op2 = newTemp(Ity_I64); local
3455 UChar op2; local
3471 UChar op2; local
3487 UInt op2; local
3503 UShort op2; local
3519 UShort op2; local
3535 UInt op2; local
3551 UShort op2; local
3567 UShort op2; local
3892 IRTemp op2 = newTemp(Ity_I32); local
3905 IRTemp op2 = newTemp(Ity_I64); local
3918 IRTemp op2 = newTemp(Ity_I64); local
3931 IRTemp op2 = newTemp(Ity_I32); local
3944 IRTemp op2 = newTemp(Ity_I32); local
3957 IRTemp op2 = newTemp(Ity_I64); local
3970 IRTemp op2 = newTemp(Ity_I64); local
3983 Int op2; local
3997 Long op2; local
4011 IRTemp op2 = newTemp(Ity_I32); local
4025 IRTemp op2 = newTemp(Ity_I64); local
4039 IRTemp op2 = newTemp(Ity_I64); local
4053 IRTemp op2 = newTemp(Ity_I32); local
4077 IRTemp op2 = newTemp(Ity_I64); local
4101 IRTemp op2 = newTemp(Ity_I32); local
4127 IRTemp op2 = newTemp(Ity_I64); local
4153 Int op2; local
4177 Long op2; local
4201 Int op2; local
4226 Long op2; local
4251 IRTemp op2 = newTemp(Ity_I32); local
4264 IRTemp op2 = newTemp(Ity_I32); local
4277 IRTemp op2 = newTemp(Ity_I64); local
4290 Int op2; local
4304 Long op2; local
4318 Short op2; local
4332 Int op2; local
4346 Long op2; local
4360 IRTemp op2 = newTemp(Ity_I32); local
4374 IRTemp op2 = newTemp(Ity_I64); local
4388 IRTemp op2 = newTemp(Ity_I32); local
4401 IRTemp op2 = newTemp(Ity_I32); local
4414 IRTemp op2 = newTemp(Ity_I32); local
4427 Int op2; local
4441 IRTemp op2 = newTemp(Ity_I32); local
4454 IRTemp op2 = newTemp(Ity_I64); local
4467 IRTemp op2 = newTemp(Ity_I64); local
4480 IRTemp op2 = newTemp(Ity_I32); local
4493 IRTemp op2 = newTemp(Ity_I32); local
4506 IRTemp op2 = newTemp(Ity_I64); local
4519 IRTemp op2 = newTemp(Ity_I64); local
4532 UInt op2; local
4546 ULong op2; local
4560 UChar op2; local
4574 UChar op2; local
4588 UInt op2; local
4602 ULong op2; local
4616 UShort op2; local
4630 IRTemp op2 = newTemp(Ity_I32); local
4644 IRTemp op2 = newTemp(Ity_I64); local
4658 IRTemp op2 = newTemp(Ity_I64); local
4672 IRTemp op2 = newTemp(Ity_I32); local
4686 IRTemp op2 = newTemp(Ity_I64); local
4700 IRTemp op2 = newTemp(Ity_I32); local
4724 IRTemp op2 = newTemp(Ity_I64); local
4748 IRTemp op2 = newTemp(Ity_I32); local
4773 IRTemp op2 = newTemp(Ity_I64); local
4798 UInt op2; local
4822 ULong op2; local
4846 UInt op2; local
4871 ULong op2; local
4896 IRTemp op2 = newTemp(Ity_I32); local
4958 IRTemp op2 = newTemp(Ity_I32); local
5020 IRTemp op2 = newTemp(Ity_I32); local
5082 IRTemp op2 = newTemp(Ity_I32); local
5095 IRTemp op2 = newTemp(Ity_I32); local
5108 IRTemp op2 = newTemp(Ity_I32); local
5121 UInt op2; local
5145 IRTemp op2 = newTemp(Ity_I32); local
5165 IRTemp op2 = newTemp(Ity_I64); local
5184 IRTemp op2 = newTemp(Ity_I32); local
5200 IRTemp op2 = newTemp(Ity_I64); local
5217 IRTemp op2 = newTemp(Ity_I32); local
5233 IRTemp op2 = newTemp(Ity_I32); local
5249 IRTemp op2 = newTemp(Ity_I64); local
5265 UChar op2; local
5281 UChar op2; local
5297 UInt op2; local
5313 UInt op2; local
5645 IRTemp op2 = newTemp(Ity_I32); local
5679 IRTemp op2 = newTemp(Ity_I64); local
5713 IRTemp op2 = newTemp(Ity_I32); local
5743 IRTemp op2 = newTemp(Ity_I64); local
5851 IRTemp op2 = newTemp(Ity_I32); local
5863 IRTemp op2 = newTemp(Ity_I64); local
5875 IRTemp op2 = newTemp(Ity_I64); local
5887 IRTemp op2 = newTemp(Ity_I32); local
5899 IRTemp op2 = newTemp(Ity_I64); local
5911 IRTemp op2 = newTemp(Ity_I64); local
5964 IRTemp op2 = newTemp(Ity_I32); local
5981 IRTemp op2 = newTemp(Ity_I64); local
5998 IRTemp op2 = newTemp(Ity_I64); local
6293 IRTemp op2 = newTemp(Ity_I32); local
6308 IRTemp op2 = newTemp(Ity_I64); local
6323 IRTemp op2 = newTemp(Ity_I64); local
6384 IRTemp op2 = newTemp(Ity_I32); local
6399 IRTemp op2 = newTemp(Ity_I64); local
6414 IRTemp op2 = newTemp(Ity_I64); local
6481 IRTemp op2 = newTemp(Ity_I16); local
6493 IRTemp op2 = newTemp(Ity_I32); local
6510 IRTemp op2 = newTemp(Ity_I64); local
6576 IRTemp op2 = newTemp(Ity_I32); local
6592 IRTemp op2 = newTemp(Ity_I32); local
6608 IRTemp op2 = newTemp(Ity_I32); local
6624 IRTemp op2 = newTemp(Ity_I16); local
6640 IRTemp op2 = newTemp(Ity_I16); local
6656 Short op2; local
6672 Short op2; local
6688 IRTemp op2 = newTemp(Ity_I32); local
6704 IRTemp op2 = newTemp(Ity_I64); local
6720 IRTemp op2 = newTemp(Ity_I32); local
6736 IRTemp op2 = newTemp(Ity_I64); local
6752 IRTemp op2 = newTemp(Ity_I32); local
6767 IRTemp op2 = newTemp(Ity_I64); local
6782 IRTemp op2 = newTemp(Ity_I32); local
6798 IRTemp op2 = newTemp(Ity_I32); local
6813 IRTemp op2 = newTemp(Ity_I32); local
6828 IRTemp op2 = newTemp(Ity_I64); local
6843 IRTemp op2 = newTemp(Ity_I32); local
6859 Int op2; local
6874 Int op2; local
6890 IRTemp op2 = newTemp(Ity_I32); local
6906 IRTemp op2 = newTemp(Ity_I64); local
6921 IRTemp op2 = newTemp(Ity_I32); local
6937 IRTemp op2 = newTemp(Ity_I64); local
6954 IRTemp op2 = newTemp(Ity_I32); local
6970 IRTemp op2 = newTemp(Ity_I32); local
6986 IRTemp op2 = newTemp(Ity_I64); local
7002 UChar op2; local
7018 UChar op2; local
7034 UInt op2; local
7050 UShort op2; local
7066 UShort op2; local
7082 UInt op2; local
7098 UShort op2; local
7114 UShort op2; local
7468 IRTemp op2 = newTemp(Ity_I64); local
7507 IRTemp op2 = newTemp(Ity_I64); local
7546 IRTemp op2 = newTemp(Ity_I64); local
7584 IRTemp op2 = newTemp(Ity_I64); local
8134 IRTemp op2 = newTemp(Ity_I32); local
8150 IRTemp op2 = newTemp(Ity_I64); local
8166 IRTemp op2 = newTemp(Ity_I64); local
8181 IRTemp op2 = newTemp(Ity_I32); local
8197 IRTemp op2 = newTemp(Ity_I64); local
8214 IRTemp op2 = newTemp(Ity_I32); local
8230 IRTemp op2 = newTemp(Ity_I32); local
8246 IRTemp op2 = newTemp(Ity_I64); local
8262 IRTemp op2 = newTemp(Ity_I64); local
8278 IRTemp op2 = newTemp(Ity_I32); local
8294 IRTemp op2 = newTemp(Ity_I32); local
8309 IRTemp op2 = newTemp(Ity_I32); local
8325 IRTemp op2 = newTemp(Ity_I32); local
8342 IRTemp op2 = newTemp(Ity_I32); local
8358 IRTemp op2 = newTemp(Ity_I64); local
8374 IRTemp op2 = newTemp(Ity_I64); local
8389 IRTemp op2 = newTemp(Ity_I32); local
8405 IRTemp op2 = newTemp(Ity_I64); local
8422 IRTemp op2 = newTemp(Ity_I32); local
8438 IRTemp op2 = newTemp(Ity_I32); local
8454 IRTemp op2 = newTemp(Ity_I64); local
8470 IRTemp op2 = newTemp(Ity_I64); local
8486 UInt op2; local
8503 ULong op2; local
8519 IRTemp op2 = newTemp(Ity_I32); local
8535 IRTemp op2 = newTemp(Ity_I32); local
8552 IRTemp op2 = newTemp(Ity_I32); local
8572 IRTemp op2 = newTemp(Ity_I64); local
8592 IRTemp op2 = newTemp(Ity_I32); local
8612 IRTemp op2 = newTemp(Ity_I64); local
8944 IRTemp op2 = newTemp(Ity_F32); local
8962 IRTemp op2 = newTemp(Ity_F64); local
8980 IRTemp op2 = newTemp(Ity_F32); local
8998 IRTemp op2 = newTemp(Ity_F64); local
9020 IRTemp op2 = newTemp(Ity_I32); local
9033 IRTemp op2 = newTemp(Ity_I32); local
9049 IRTemp op2 = newTemp(Ity_I64); local
9066 IRTemp op2 = newTemp(Ity_I64); local
9082 IRTemp op2 = newTemp(Ity_I32); local
9098 IRTemp op2 = newTemp(Ity_I32); local
9113 IRTemp op2 = newTemp(Ity_I64); local
9129 IRTemp op2 = newTemp(Ity_I64); local
9291 IRTemp op2 = newTemp(Ity_F32); local
9308 IRTemp op2 = newTemp(Ity_F64); local
9325 IRTemp op2 = newTemp(Ity_F32); local
9342 IRTemp op2 = newTemp(Ity_F64); local
9446 IRTemp op2 = newTemp(Ity_F32); local
9464 IRTemp op2 = newTemp(Ity_F64); local
9481 IRTemp op2 = newTemp(Ity_F32); local
9498 IRTemp op2 = newTemp(Ity_F64); local
9515 IRTemp op2 = newTemp(Ity_F32); local
9533 IRTemp op2 = newTemp(Ity_F64); local
9551 IRTemp op2 = newTemp(Ity_F32); local
9569 IRTemp op2 = newTemp(Ity_F64); local
9587 IRTemp op2 = newTemp(Ity_D64); local
9613 IRTemp op2 = newTemp(Ity_D128); local
9640 IRTemp op2 = newTemp(Ity_D64); local
9658 IRTemp op2 = newTemp(Ity_D128); local
9681 IRTemp op2 = newTemp(Ity_I32); local
9698 IRTemp op2 = newTemp(Ity_I32); local
9710 IRTemp op2 = newTemp(Ity_I64); local
9729 IRTemp op2 = newTemp(Ity_I64); local
9751 IRTemp op2 = newTemp(Ity_I32); local
9768 IRTemp op2 = newTemp(Ity_I32); local
9785 IRTemp op2 = newTemp(Ity_I64); local
9804 IRTemp op2 = newTemp(Ity_I64); local
9905 IRTemp op2 = newTemp(Ity_D64); local
9924 IRTemp op2 = newTemp(Ity_D128); local
10032 IRTemp op2 = newTemp(Ity_D64); local
10057 IRTemp op2 = newTemp(Ity_D128); local
10116 IRTemp op2 = newTemp(Ity_D64); local
10133 IRTemp op2 = newTemp(Ity_D128); local
10240 IRTemp op2 = newTemp(Ity_D64); local
10265 IRTemp op2 = newTemp(Ity_D128); local
10290 IRTemp op2 = newTemp(Ity_D64); local
10316 IRTemp op2 = newTemp(Ity_D128); local
10342 IRTemp op2 = newTemp(Ity_D64); local
10368 IRTemp op2 = newTemp(Ity_D128); local
10394 IRTemp op2 = newTemp(Ity_D64); local
10420 IRTemp op2 = newTemp(Ity_D128); local
11547 s390_irgen_divide_64to32(IROp op, UChar r1, IRTemp op2) argument
11561 s390_irgen_divide_128to64(IROp op, UChar r1, IRTemp op2) argument
11575 s390_irgen_divide_64to64(IROp op, UChar r1, IRTemp op2) argument
11589 IRTemp op2 = newTemp(Ity_I32); local
11601 IRTemp op2 = newTemp(Ity_I32); local
11613 IRTemp op2 = newTemp(Ity_I32); local
11625 IRTemp op2 = newTemp(Ity_I32); local
11637 IRTemp op2 = newTemp(Ity_I64); local
11649 IRTemp op2 = newTemp(Ity_I64); local
11661 IRTemp op2 = newTemp(Ity_I64); local
11673 IRTemp op2 = newTemp(Ity_I64); local
11685 IRTemp op2 = newTemp(Ity_I64); local
11697 IRTemp op2 = newTemp(Ity_I64); local
11974 IRTemp op2 = newTemp(Ity_F128); local
11993 IRTemp op2 = newTemp(Ity_F32); local
12011 IRTemp op2 = newTemp(Ity_F64); local
12029 IRTemp op2 = newTemp(Ity_F128); local
12047 IRTemp op2 = newTemp(Ity_F32); local
12065 IRTemp op2 = newTemp(Ity_F64); local
12083 IRTemp op2 = newTemp(Ity_I32); local
12098 IRTemp op2 = newTemp(Ity_I32); local
12111 IRTemp op2 = newTemp(Ity_I64); local
12126 IRTemp op2 = newTemp(Ity_I64); local
12214 IRTemp op2 = newTemp(Ity_F128); local
12405 IRTemp op2 = newTemp(Ity_F128); local
12443 IRExpr *op2 = load(Ity_F32, mkexpr(op2addr)); local
12455 IRExpr *op2 = load(Ity_F64, mkexpr(op2addr)); local
12489 IRExpr *op2 = load(Ity_F32, mkexpr(op2addr)); local
12501 IRExpr *op2 = load(Ity_F64, mkexpr(op2addr)); local
12575 IRTemp op2 = newTemp(Ity_F128); local
14035 unsigned int op2 : 4; member in struct:__anon31613::__anon31614
15092 unsigned int op2 : 8; member in struct:__anon31628::__anon31629
15101 unsigned int op2 : 8; member in struct:__anon31628::__anon31630
15110 unsigned int op2 : 8; member in struct:__anon31628::__anon31631
15119 unsigned int op2 : 8; member in struct:__anon31628::__anon31632
15127 unsigned int op2 : 8; member in struct:__anon31628::__anon31633
15132 unsigned int op2 : 4; member in struct:__anon31628::__anon31634
15142 unsigned int op2 : 8; member in struct:__anon31628::__anon31635
15152 unsigned int op2 : 8; member in struct:__anon31628::__anon31636
15161 unsigned int op2 : 8; member in struct:__anon31628::__anon31637
15170 unsigned int op2 : 8; member in struct:__anon31628::__anon31638
15179 unsigned int op2 : 8; member in struct:__anon31628::__anon31639
15189 unsigned int op2 : 8; member in struct:__anon31628::__anon31640
15198 unsigned int op2 : 8; member in struct:__anon31628::__anon31641
15206 unsigned int op2 : 8; member in struct:__anon31628::__anon31642
15244 unsigned int op2 : 4; member in struct:__anon31628::__anon31647
[all...]
H A Dhost_s390_defs.h326 s390_amode *op2; member in struct:__anon32088
408 s390_opnd_RMI op2; member in struct:__anon32092::__anon32093::__anon32100
413 s390_opnd_RMI op2; member in struct:__anon32092::__anon32093::__anon32101
418 s390_opnd_RMI op2; member in struct:__anon32092::__anon32093::__anon32102
423 s390_opnd_RMI op2; member in struct:__anon32092::__anon32093::__anon32103
450 s390_amode *op2; member in struct:__anon32092::__anon32093::__anon32109
486 HReg op2; member in struct:__anon32092::__anon32093::__anon32112
532 HReg op2; /* integer operand */ member in struct:__anon32092::__anon32093::__anon32119
559 HReg op2; /* integer operand */ member in struct:__anon32092::__anon32093::__anon32123
629 s390_opnd_RMI op2);
[all...]
/external/chromium_org/v8/src/arm64/
H A Dutils-arm64.h103 inline double FusedMultiplyAdd(double op1, double op2, double a) { argument
104 return fma(op1, op2, a);
108 inline float FusedMultiplyAdd(float op1, float op2, float a) { argument
109 return fmaf(op1, op2, a);
/external/chromium_org/cc/output/
H A Dfilter_operations_unittest.cc44 FilterOperation op2 = FilterOperation::CreateEmptyFilter(); \
45 op2.set_type(FilterOperation::filter_type); \
47 EXPECT_NE(a, op2.amount()); \
49 op2.set_amount(a); \
51 EXPECT_EQ(FilterOperation::filter_type, op2.type()); \
52 EXPECT_EQ(a, op2.amount()); \
64 FilterOperation op2 = FilterOperation::CreateEmptyFilter(); \
65 op2.set_type(FilterOperation::filter_type); \
67 EXPECT_NE(a, op2.drop_shadow_offset()); \
68 EXPECT_NE(b, op2
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c295 unsigned op2:11; member in struct:vx_inst::__anon13730
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::__anon13731
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::__anon13732
364 emit_va(struct ppc_function *p, uint op2, uin argument
412 unsigned op2:10; member in struct:xl_inst::__anon13734
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::__anon13735
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::__anon13737
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::__anon13738
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/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c295 unsigned op2:11; member in struct:vx_inst::__anon27141
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::__anon27142
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::__anon27143
364 emit_va(struct ppc_function *p, uint op2, uin argument
412 unsigned op2:10; member in struct:xl_inst::__anon27145
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::__anon27146
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::__anon27148
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::__anon27149
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...]

Completed in 5471 milliseconds

12345