HomeSort by relevance Sort by last modified time
    Searched refs:op2 (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/valgrind/main/none/tests/s390x/
cds.c 16 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 are the lower 32 bits of op3.hig
96 uint64_t op2; local
    [all...]
cs.c 11 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) {
csg.c 11 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) {
cds.stdout.exp 2 before op2 = 0x445566778899aabb
5 after op2 = 0xdeadbabedeadbabe
9 before op2 = 0x8000000000000001
12 after op2 = 0x8000000000000001
cs.stdout.exp 2 before op2 = 0x10000000
5 after op2 = 0x12345678
9 before op2 = 0x20000000
12 after op2 = 0x20000000
csg.stdout.exp 2 before op2 = 0x1000000000000000
5 after op2 = 0x1234567887654321
9 before op2 = 0x2000000000000000
12 after op2 = 0x2000000000000000
cdsg.stdout.exp 2 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)
cdsg.c 29 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, op3, 1)
    [all...]
opcodes.h 19 #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 "\n\t"
    [all...]
  /external/valgrind/main/memcheck/tests/s390x/
cds.c 14 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 = 100
    [all...]
cdsg.c 34 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, op3); // no complaint; op3 is just copied aroun
    [all...]
cs.c 11 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
csg.c 11 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/valgrind/main/VEX/priv/
guest_s390_toIR.c 166 binop(IROp kind, IRExpr *op1, IRExpr *op2)
168 return IRExpr_Binop(kind, op1, op2);
173 triop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3)
175 return IRExpr_Triop(kind, op1, op2, op3);
180 qop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3, IRExpr *op4)
182 return IRExpr_Qop(kind, op1, op2, op3, op4);
695 s390_call_calculate_icc(UInt m, UInt opc, IRTemp op1, IRTemp op2)
702 dep2 = s390_cc_widen(op2, True);
707 dep2 = s390_cc_widen(op2, False);
2180 IRTemp op2 = newTemp(Ity_I32); local
2196 IRTemp op2 = newTemp(Ity_I64); local
2212 IRTemp op2 = newTemp(Ity_I64); local
2227 IRTemp op2 = newTemp(Ity_I32); local
2243 IRTemp op2 = newTemp(Ity_I64); local
2260 IRTemp op2 = newTemp(Ity_I32); local
2276 IRTemp op2 = newTemp(Ity_I32); local
2292 IRTemp op2 = newTemp(Ity_I64); local
2308 IRTemp op2 = newTemp(Ity_I64); local
2324 Int op2; local
2341 Long op2; local
2357 Int op2; local
2374 Long op2; local
2392 Int op2; local
2409 Long op2; local
2426 IRTemp op2 = newTemp(Ity_I32); local
2442 IRTemp op2 = newTemp(Ity_I32); local
2458 Int op2; local
2475 Long op2; local
2491 IRTemp op2 = newTemp(Ity_I32); local
2507 IRTemp op2 = newTemp(Ity_I32); local
2524 Int op2; local
2541 IRTemp op2 = newTemp(Ity_I32); local
2557 IRTemp op2 = newTemp(Ity_I64); local
2573 IRTemp op2 = newTemp(Ity_I64); local
2588 IRTemp op2 = newTemp(Ity_I32); local
2604 IRTemp op2 = newTemp(Ity_I64); local
2621 IRTemp op2 = newTemp(Ity_I32); local
2637 IRTemp op2 = newTemp(Ity_I32); local
2653 IRTemp op2 = newTemp(Ity_I64); local
2669 IRTemp op2 = newTemp(Ity_I64); local
2685 UInt op2; local
2702 ULong op2; local
2718 IRTemp op2 = newTemp(Ity_I32); local
2734 IRTemp op2 = newTemp(Ity_I32); local
2751 IRTemp op2 = newTemp(Ity_I32); local
2770 IRTemp op2 = newTemp(Ity_I64); local
2790 IRTemp op2 = newTemp(Ity_I32); local
2809 IRTemp op2 = newTemp(Ity_I64); local
2829 UInt op2; local
2846 ULong op2; local
2862 UInt op2; local
2879 ULong op2; local
2897 UInt op2; local
2914 UInt op2; local
2929 IRTemp op2 = newTemp(Ity_I32); local
2945 IRTemp op2 = newTemp(Ity_I64); local
2960 IRTemp op2 = newTemp(Ity_I32); local
2976 IRTemp op2 = newTemp(Ity_I64); local
2993 IRTemp op2 = newTemp(Ity_I32); local
3009 IRTemp op2 = newTemp(Ity_I32); local
3025 IRTemp op2 = newTemp(Ity_I64); local
3041 UChar op2; local
3057 UChar op2; local
3073 UInt op2; local
3089 UShort op2; local
3105 UShort op2; local
3121 UInt op2; local
3137 UShort op2; local
3153 UShort op2; local
3478 IRTemp op2 = newTemp(Ity_I32); local
3491 IRTemp op2 = newTemp(Ity_I64); local
3504 IRTemp op2 = newTemp(Ity_I64); local
3517 IRTemp op2 = newTemp(Ity_I32); local
3530 IRTemp op2 = newTemp(Ity_I32); local
3543 IRTemp op2 = newTemp(Ity_I64); local
3556 IRTemp op2 = newTemp(Ity_I64); local
3569 Int op2; local
3583 Long op2; local
3597 IRTemp op2 = newTemp(Ity_I32); local
3611 IRTemp op2 = newTemp(Ity_I64); local
3625 IRTemp op2 = newTemp(Ity_I64); local
3639 IRTemp op2 = newTemp(Ity_I32); local
3663 IRTemp op2 = newTemp(Ity_I64); local
3687 IRTemp op2 = newTemp(Ity_I32); local
3713 IRTemp op2 = newTemp(Ity_I64); local
3739 Int op2; local
3763 Long op2; local
3787 Int op2; local
3812 Long op2; local
3837 IRTemp op2 = newTemp(Ity_I32); local
3850 IRTemp op2 = newTemp(Ity_I32); local
3863 IRTemp op2 = newTemp(Ity_I64); local
3876 Int op2; local
3890 Long op2; local
3904 Short op2; local
3918 Int op2; local
3932 Long op2; local
3946 IRTemp op2 = newTemp(Ity_I32); local
3960 IRTemp op2 = newTemp(Ity_I64); local
3974 IRTemp op2 = newTemp(Ity_I32); local
3987 IRTemp op2 = newTemp(Ity_I32); local
4000 IRTemp op2 = newTemp(Ity_I32); local
4013 Int op2; local
4027 IRTemp op2 = newTemp(Ity_I32); local
4040 IRTemp op2 = newTemp(Ity_I64); local
4053 IRTemp op2 = newTemp(Ity_I64); local
4066 IRTemp op2 = newTemp(Ity_I32); local
4079 IRTemp op2 = newTemp(Ity_I32); local
4092 IRTemp op2 = newTemp(Ity_I64); local
4105 IRTemp op2 = newTemp(Ity_I64); local
4118 UInt op2; local
4132 ULong op2; local
4146 UChar op2; local
4160 UChar op2; local
4174 UInt op2; local
4188 ULong op2; local
4202 UShort op2; local
4216 IRTemp op2 = newTemp(Ity_I32); local
4230 IRTemp op2 = newTemp(Ity_I64); local
4244 IRTemp op2 = newTemp(Ity_I64); local
4258 IRTemp op2 = newTemp(Ity_I32); local
4272 IRTemp op2 = newTemp(Ity_I64); local
4286 IRTemp op2 = newTemp(Ity_I32); local
4310 IRTemp op2 = newTemp(Ity_I64); local
4334 IRTemp op2 = newTemp(Ity_I32); local
4359 IRTemp op2 = newTemp(Ity_I64); local
4384 UInt op2; local
4408 ULong op2; local
4432 UInt op2; local
4457 ULong op2; local
4482 IRTemp op2 = newTemp(Ity_I32); local
4544 IRTemp op2 = newTemp(Ity_I32); local
4606 IRTemp op2 = newTemp(Ity_I32); local
4668 IRTemp op2 = newTemp(Ity_I32); local
4681 IRTemp op2 = newTemp(Ity_I32); local
4694 IRTemp op2 = newTemp(Ity_I32); local
4707 UInt op2; local
4731 IRTemp op2 = newTemp(Ity_I32); local
4751 IRTemp op2 = newTemp(Ity_I64); local
4770 IRTemp op2 = newTemp(Ity_I32); local
4786 IRTemp op2 = newTemp(Ity_I64); local
4803 IRTemp op2 = newTemp(Ity_I32); local
4819 IRTemp op2 = newTemp(Ity_I32); local
4835 IRTemp op2 = newTemp(Ity_I64); local
4851 UChar op2; local
4867 UChar op2; local
4883 UInt op2; local
4899 UInt op2; local
5224 IRTemp op2 = newTemp(Ity_I32); local
5241 IRTemp op2 = newTemp(Ity_I64); local
5258 IRTemp op2 = newTemp(Ity_I32); local
5275 IRTemp op2 = newTemp(Ity_I64); local
5292 IRTemp op2 = newTemp(Ity_I32); local
5309 IRTemp op2 = newTemp(Ity_I64); local
5326 IRTemp op2 = newTemp(Ity_I32); local
5343 IRTemp op2 = newTemp(Ity_I64); local
5360 IRTemp op2 = newTemp(Ity_I32); local
5377 IRTemp op2 = newTemp(Ity_I64); local
5394 IRTemp op2 = newTemp(Ity_I32); local
5406 IRTemp op2 = newTemp(Ity_I64); local
5418 IRTemp op2 = newTemp(Ity_I64); local
5430 IRTemp op2 = newTemp(Ity_I32); local
5442 IRTemp op2 = newTemp(Ity_I64); local
5454 IRTemp op2 = newTemp(Ity_I64); local
5507 IRTemp op2 = newTemp(Ity_I32); local
5524 IRTemp op2 = newTemp(Ity_I64); local
5541 IRTemp op2 = newTemp(Ity_I64); local
5836 IRTemp op2 = newTemp(Ity_I32); local
5851 IRTemp op2 = newTemp(Ity_I64); local
5866 IRTemp op2 = newTemp(Ity_I64); local
5927 IRTemp op2 = newTemp(Ity_I32); local
5942 IRTemp op2 = newTemp(Ity_I64); local
5957 IRTemp op2 = newTemp(Ity_I64); local
6024 IRTemp op2 = newTemp(Ity_I16); local
6036 IRTemp op2 = newTemp(Ity_I32); local
6053 IRTemp op2 = newTemp(Ity_I64); local
6119 IRTemp op2 = newTemp(Ity_I32); local
6135 IRTemp op2 = newTemp(Ity_I32); local
6151 IRTemp op2 = newTemp(Ity_I32); local
6167 IRTemp op2 = newTemp(Ity_I16); local
6183 IRTemp op2 = newTemp(Ity_I16); local
6199 Short op2; local
6215 Short op2; local
6231 IRTemp op2 = newTemp(Ity_I32); local
6247 IRTemp op2 = newTemp(Ity_I64); local
6263 IRTemp op2 = newTemp(Ity_I32); local
6279 IRTemp op2 = newTemp(Ity_I64); local
6295 IRTemp op2 = newTemp(Ity_I32); local
6310 IRTemp op2 = newTemp(Ity_I64); local
6325 IRTemp op2 = newTemp(Ity_I32); local
6341 IRTemp op2 = newTemp(Ity_I32); local
6356 IRTemp op2 = newTemp(Ity_I32); local
6371 IRTemp op2 = newTemp(Ity_I64); local
6386 IRTemp op2 = newTemp(Ity_I32); local
6402 Int op2; local
6417 Int op2; local
6433 IRTemp op2 = newTemp(Ity_I32); local
6449 IRTemp op2 = newTemp(Ity_I64); local
6464 IRTemp op2 = newTemp(Ity_I32); local
6480 IRTemp op2 = newTemp(Ity_I64); local
6497 IRTemp op2 = newTemp(Ity_I32); local
6513 IRTemp op2 = newTemp(Ity_I32); local
6529 IRTemp op2 = newTemp(Ity_I64); local
6545 UChar op2; local
6561 UChar op2; local
6577 UInt op2; local
6593 UShort op2; local
6609 UShort op2; local
6625 UInt op2; local
6641 UShort op2; local
6657 UShort op2; local
6723 IRTemp op2 = newTemp(Ity_I64); local
6762 IRTemp op2 = newTemp(Ity_I64); local
6801 IRTemp op2 = newTemp(Ity_I64); local
6839 IRTemp op2 = newTemp(Ity_I64); local
7389 IRTemp op2 = newTemp(Ity_I32); local
7405 IRTemp op2 = newTemp(Ity_I64); local
7421 IRTemp op2 = newTemp(Ity_I64); local
7436 IRTemp op2 = newTemp(Ity_I32); local
7452 IRTemp op2 = newTemp(Ity_I64); local
7469 IRTemp op2 = newTemp(Ity_I32); local
7485 IRTemp op2 = newTemp(Ity_I32); local
7501 IRTemp op2 = newTemp(Ity_I64); local
7517 IRTemp op2 = newTemp(Ity_I64); local
7533 IRTemp op2 = newTemp(Ity_I32); local
7549 IRTemp op2 = newTemp(Ity_I32); local
7564 IRTemp op2 = newTemp(Ity_I32); local
7580 IRTemp op2 = newTemp(Ity_I32); local
7597 IRTemp op2 = newTemp(Ity_I32); local
7613 IRTemp op2 = newTemp(Ity_I64); local
7629 IRTemp op2 = newTemp(Ity_I64); local
7644 IRTemp op2 = newTemp(Ity_I32); local
7660 IRTemp op2 = newTemp(Ity_I64); local
7677 IRTemp op2 = newTemp(Ity_I32); local
7693 IRTemp op2 = newTemp(Ity_I32); local
7709 IRTemp op2 = newTemp(Ity_I64); local
7725 IRTemp op2 = newTemp(Ity_I64); local
7741 UInt op2; local
7758 ULong op2; local
7774 IRTemp op2 = newTemp(Ity_I32); local
7790 IRTemp op2 = newTemp(Ity_I32); local
7807 IRTemp op2 = newTemp(Ity_I32); local
7827 IRTemp op2 = newTemp(Ity_I64); local
7847 IRTemp op2 = newTemp(Ity_I32); local
7867 IRTemp op2 = newTemp(Ity_I64); local
8145 IRTemp op2 = newTemp(Ity_F32); local
8162 IRTemp op2 = newTemp(Ity_F64); local
8179 IRTemp op2 = newTemp(Ity_F32); local
8196 IRTemp op2 = newTemp(Ity_F64); local
8212 IRTemp op2 = newTemp(Ity_I32); local
8223 IRTemp op2 = newTemp(Ity_I32); local
8234 IRTemp op2 = newTemp(Ity_I64); local
8245 IRTemp op2 = newTemp(Ity_I64); local
8317 IRTemp op2 = newTemp(Ity_F32); local
8333 IRTemp op2 = newTemp(Ity_F64); local
8349 IRTemp op2 = newTemp(Ity_F32); local
8365 IRTemp op2 = newTemp(Ity_F64); local
8462 IRTemp op2 = newTemp(Ity_F32); local
8478 IRTemp op2 = newTemp(Ity_F64); local
8494 IRTemp op2 = newTemp(Ity_F32); local
8510 IRTemp op2 = newTemp(Ity_F64); local
8526 IRTemp op2 = newTemp(Ity_F32); local
8543 IRTemp op2 = newTemp(Ity_F64); local
8560 IRTemp op2 = newTemp(Ity_F32); local
8577 IRTemp op2 = newTemp(Ity_F64); local
9603 IRTemp op2 = newTemp(Ity_I32); local
9615 IRTemp op2 = newTemp(Ity_I32); local
9627 IRTemp op2 = newTemp(Ity_I32); local
9639 IRTemp op2 = newTemp(Ity_I32); local
9651 IRTemp op2 = newTemp(Ity_I64); local
9663 IRTemp op2 = newTemp(Ity_I64); local
9675 IRTemp op2 = newTemp(Ity_I64); local
9687 IRTemp op2 = newTemp(Ity_I64); local
9699 IRTemp op2 = newTemp(Ity_I64); local
9711 IRTemp op2 = newTemp(Ity_I64); local
9988 IRTemp op2 = newTemp(Ity_F128); local
10051 IRTemp op2 = newTemp(Ity_F32); local
10069 IRTemp op2 = newTemp(Ity_F64); local
10087 IRTemp op2 = newTemp(Ity_F128); local
10105 IRTemp op2 = newTemp(Ity_F32); local
10123 IRTemp op2 = newTemp(Ity_F64); local
10140 IRTemp op2 = newTemp(Ity_I32); local
10151 IRTemp op2 = newTemp(Ity_I64); local
10193 IRTemp op2 = newTemp(Ity_F128); local
10371 IRTemp op2 = newTemp(Ity_F128); local
10404 IRExpr *op2 = load(Ity_F32, mkexpr(op2addr)); local
10415 IRExpr *op2 = load(Ity_F64, mkexpr(op2addr)); local
10444 IRExpr *op2 = load(Ity_F32, mkexpr(op2addr)); local
10455 IRExpr *op2 = load(Ity_F64, mkexpr(op2addr)); local
10522 IRTemp op2 = newTemp(Ity_F128); local
11941 unsigned int op2 : 4; member in struct:__anon28849::__anon28850
12858 unsigned int op2 : 8; member in struct:__anon28863::__anon28864
12867 unsigned int op2 : 8; member in struct:__anon28863::__anon28865
12876 unsigned int op2 : 8; member in struct:__anon28863::__anon28866
12885 unsigned int op2 : 8; member in struct:__anon28863::__anon28867
12893 unsigned int op2 : 8; member in struct:__anon28863::__anon28868
12898 unsigned int op2 : 4; member in struct:__anon28863::__anon28869
12908 unsigned int op2 : 8; member in struct:__anon28863::__anon28870
12918 unsigned int op2 : 8; member in struct:__anon28863::__anon28871
12927 unsigned int op2 : 8; member in struct:__anon28863::__anon28872
12936 unsigned int op2 : 8; member in struct:__anon28863::__anon28873
12945 unsigned int op2 : 8; member in struct:__anon28863::__anon28874
12955 unsigned int op2 : 8; member in struct:__anon28863::__anon28875
12964 unsigned int op2 : 8; member in struct:__anon28863::__anon28876
12972 unsigned int op2 : 8; member in struct:__anon28863::__anon28877
13010 unsigned int op2 : 4; member in struct:__anon28863::__anon28882
    [all...]
host_s390_defs.h 294 s390_opnd_RMI op2; member in struct:__anon29234::__anon29235::__anon29241
300 s390_opnd_RMI op2; member in struct:__anon29234::__anon29235::__anon29242
306 s390_opnd_RMI op2; member in struct:__anon29234::__anon29235::__anon29243
311 s390_opnd_RMI op2; member in struct:__anon29234::__anon29235::__anon29244
331 HReg op2; member in struct:__anon29234::__anon29235::__anon29248
343 s390_amode *op2; member in struct:__anon29234::__anon29235::__anon29251
350 s390_amode *op2; member in struct:__anon29234::__anon29235::__anon29252
374 HReg op2; /* second operand */ member in struct:__anon29234::__anon29235::__anon29254
381 HReg op2; /* right operand */ member in struct:__anon29234::__anon29235::__anon29255
470 s390_opnd_RMI op2);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 173 ContentProviderOperation op2 = ContentProviderOperation.newAssertQuery(sTestUri1) local
178 ContentProviderResult result = op2.apply(new TestContentProvider() {
285 ContentProviderOperation op2; local
313 op2 = ContentProviderOperation.CREATOR.createFromParcel(parcel);
315 assertEquals(ContentProviderOperation.TYPE_INSERT, operationGetType(op2));
316 assertEquals("content://goo/bar", operationGetUri(op2).toString());
317 assertEquals(Integer.valueOf(42), operationGetExpectedCount(op2));
318 assertEquals("selection", operationGetSelection(op2));
319 assertEquals(2, operationGetSelectionArgs(op2).length);
320 assertEquals("a", operationGetSelectionArgs(op2)[0])
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 199 var ASGNOP ppattern { $$ = op2($2, $1, $3); }
203 { $$ = op2(BOR, notnull($1), notnull($3)); }
205 { $$ = op2(AND, notnull($1), notnull($3)); }
212 | ppattern IN varname { $$ = op2(INTEST, $1, makearr($3)); }
213 | '(' plist ')' IN varname { $$ = op2(INTEST, $2, makearr($5)); }
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
220 var ASGNOP pattern { $$ = op2($2, $1, $3); }
224 { $$ = op2(BOR, notnull($1), notnull($3)); }
226 { $$ = op2(AND, notnull($1), notnull($3)); }
227 | pattern EQ pattern { $$ = op2($2, $1, $3);
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Stmnt.java 45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) {
46 return new Stmnt(op, op1, new ASTList(op2, new ASTList(op3)));
  /dalvik/vm/compiler/codegen/arm/
CalloutHelper.h 60 extern "C" int __aeabi_idivmod(int op1, int op2); // OP_REM_INT[_2ADDR|_LIT8|_LIT16]
61 extern "C" int __aeabi_idiv(int op1, int op2); // OP_DIV_INT[_2ADDR|_LIT8|_LIT16]
64 extern "C" long long __aeabi_ldivmod(long long op1, long long op2);
  /system/core/libcorkscrew/arch-arm/
backtrace-arm.c 312 uint8_t op2; local
313 if (!(size--) || !try_next_byte(memory, stream, &op2)) {
316 uint32_t mask = (((uint32_t)op & 0x0f) << 12) | ((uint32_t)op2 << 4);
354 uint8_t op2; local
355 if (!(size--) || !try_next_byte(memory, stream, &op2)) {
358 if (op2 != 0x00 && (op2 & 0xf0) == 0x00) {
360 if (!try_pop_registers(memory, state, op2)) {
371 uint8_t op2; local
373 if (!(size--) || !try_next_byte(memory, stream, &op2)) {
382 uint8_t op2; local
395 uint8_t op2; local
401 uint8_t op2; local
415 uint8_t op2; local
422 uint8_t op2; local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 59 SyncOperation op2 = new SyncOperation(account1, 0, local
106 assertEquals(op1.key, op2.key);
125 SyncOperation op2 = new SyncOperation(dummy, 0, 0, SyncOperation.REASON_PERIODIC, local
138 assertTrue(op1.compareTo(op2) == -1);
139 assertTrue("less than not transitive.", op2.compareTo(op1) == 1);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
intnum.c 425 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, spare)
615 wordptr op1, op2; local
779 wordptr op1 = op1static, op2; local
    [all...]
  /dalvik/vm/compiler/codegen/mips/
CalloutHelper.h 60 extern "C" long long __divdi3(long long op1, long long op2);
61 extern "C" long long __moddi3(long long op1, long long op2);
  /external/chromium_org/cc/output/
filter_operations_unittest.cc 42 FilterOperation op2 = FilterOperation::CreateEmptyFilter(); \
43 op2.set_type(FilterOperation::filter_type); \
45 EXPECT_NE(a, op2.amount()); \
47 op2.set_amount(a); \
49 EXPECT_EQ(FilterOperation::filter_type, op2.type()); \
50 EXPECT_EQ(a, op2.amount()); \
62 FilterOperation op2 = FilterOperation::CreateEmptyFilter(); \
63 op2.set_type(FilterOperation::filter_type); \
65 EXPECT_NE(a, op2.drop_shadow_offset()); \
66 EXPECT_NE(b, op2.amount());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 295 unsigned op2:11; member in struct:vx_inst::__anon14457
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
308 inst.inst.op2 = op2;
328 unsigned op2:10; member in struct:vxr_inst::__anon14458
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
342 inst.inst.op2 = op2;
359 unsigned op2:6; member in struct:va_inst::__anon14459
364 emit_va(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, uint vC
412 unsigned op2:10; member in struct:xl_inst::__anon14461
456 unsigned op2:10; member in struct:x_inst::__anon14462
520 unsigned op2:5; member in struct:a_inst::__anon14464
553 unsigned op2:9; member in struct:xo_inst::__anon14465
    [all...]

Completed in 1115 milliseconds

1 2 3 4 5 6