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

1 2

  /external/valgrind/main/none/tests/s390x/
cds.c 17 quad_word op3 = op3_init; local
21 quad_word op3_before = op3;
25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low);
32 "stmg %%r2,%%r3,%3\n" // store r2,r3 to op3
35 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low)
95 quad_word op1, op3; local
    [all...]
cds.stdout.exp 3 before op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
6 after op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
10 before op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
13 after op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
cs.stdout.exp 3 before op3 = 0x12345678
6 after op3 = 0x12345678
10 before op3 = 0x12345678
13 after op3 = 0x12345678
csg.stdout.exp 3 before op3 = 0x1234567887654321
6 after op3 = 0x1234567887654321
10 before op3 = 0x1234567887654321
13 after op3 = 0x1234567887654321
cs.c 9 register int32_t op3 asm("9") = op3_init;
16 printf("before op3 = %#x\n", op3);
22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
28 printf("after op3 = %#x\n", op3);
35 if (op2 != op3) {
csg.c 9 register int64_t op3 asm("9") = op3_init;
16 printf("before op3 = %#lx\n", op3);
22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
28 printf("after op3 = %#lx\n", op3);
35 if (op2 != op3) {
cdsg.stdout.exp 3 before op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
6 after op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
10 before op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
13 after op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
17 before op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
20 after op3 = (0xdeadbeefdeadbabe, 0xdeadbeefdeadbabe)
cdsg.c 30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
84 quad_word op1, op2, op3; local
90 op3.high = op3.low = 0xdeadbeefdeadbabeull;
91 test(op1, op2, op3, 0);
98 op3.high = op3.low = 0xdeadbeefdeadbabeull;
99 test(op1, op2, op3, 1);
106 op3.high = op3.low = 0xdeadbeefdeadbabeull
    [all...]
  /external/valgrind/main/memcheck/tests/s390x/
cds.c 15 quad_word op3 = op3_init; local
22 "stmg %%r2,%%r3,%3\n" // store r2,r3 to op3
23 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
43 quad_word op1, op3; local
49 op3.high = op3.low = 0xdeadbeefdeadbabeull;
50 test(op1, op2, op3); // complaint
55 quad_word op1, op3; local
60 op3.high = op3.low = 0xdeadbeefdeadbabeull
66 quad_word op1, op3; local
    [all...]
cdsg.c 26 "stmg %%r2,%%r3,%3\n" // store r2,r3 to op3
34 quad_word op1, op2, op3; local
38 op3.high = op3.low = 0xdeadbeefdeadbabeull;
39 test(op1, op2, op3); // complaint
44 quad_word op1, op2, op3; local
48 op3.high = op3.low = 0xdeadbeefdeadbabeull;
49 test(op1, op2, op3); // complaint
54 quad_word op1, op2, op3; local
    [all...]
cs.c 9 register int32_t op3 asm("9") = op3_init;
18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
25 int op1, op2, op3; local
29 test(0x10000000, 0x01000000, op3); // no complaint
csg.c 9 register int64_t op3 asm("9") = op3_init;
18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
25 int64_t op1, op2, op3; local
29 test(0x1000000000000000ull, 0x1000000000000000ull, op3); // no complaint
  /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)));
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 71 SyncOperation op3 = new SyncOperation(account1, 0, local
107 assertNotSame(op1.key, op3.key);
131 SyncOperation op3 = new SyncOperation(dummy, 0, 0, 0, local
140 assertTrue(op1.compareTo(op3) == 1);
141 assertTrue("greater than not transitive. ", op3.compareTo(op1) == -1);
  /art/runtime/
disassembler_arm.cc 348 uint32_t op3 = (instr >> 23) & 3; local
354 if (op3 == 0 && op4 == 0) { // STREX
358 } else if (op3 == 0 && op4 == 1) { // LDREX
370 // |111|0101| op3|S| Rn |imm3| Rd |i2|ty| Rm |
371 uint32_t op3 = (instr >> 21) & 0xF; local
380 switch (op3) {
449 default: opcode << "UNKNOWN DPSR-" << op3; break; local
494 // |111| |11| op3 | Rn | |copr| |op4| |
495 uint32_t op3 = (instr >> 20) & 0x3F; local
498 if ((op3 == 2 || op3 == 2 || op3 == 6 || op3 == 7) || // 00x1
611 uint32_t op3 = (instr >> 21) & 0xF; local
656 default: opcode << "UNKNOWN DPMI-" << op3; break; local
672 uint32_t op3 = (instr >> 20) & 0x1F; local
735 uint32_t op3 = (instr >> 12) & 7; local
854 uint32_t op3 = (instr >> 21) & 7; local
944 uint32_t op3 = (instr >> 23) & 3; local
988 uint32_t op3 = (instr >> 23) & 3; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 201 { $$ = op3(CONDEXPR, notnull($1), $3, $5); }
206 | ppattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); }
209 $$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0));
211 $$ = op3($2, (Node *)1, $1, $3); }
222 { $$ = op3(CONDEXPR, notnull($1), $3, $5); }
233 | pattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); }
236 $$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0));
238 $$ = op3($2, (Node *)1, $1, $3); }
243 else $$ = op3(GETLINE, $4, itonp($2), $1); }
246 else $$ = op3(GETLINE, (Node*)0, itonp($2), $1);
    [all...]
parse.c 150 Node *op3(int a, Node *b, Node *c, Node *d) function
proto.h 85 extern Node *op3(int, Node *, Node *, Node *);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 27 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
33 out = op2 * 724 + op3; /* op1 is not used here */
111 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
117 smlabb out, op1, op2, op3
174 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
181 mla out, op1, out, op3
269 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
274 register int32 cc = (int32)op3;
  /external/libvpx/libvpx/vp9/common/
vp9_loopfilter_filters.c 145 uint8_t *op3, uint8_t *op2,
150 const uint8_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
212 uint8_t *op3, uint8_t *op2,
220 p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
232 *op3 = ROUND_POWER_OF_TWO(p7 * 4 + p6 + p5 + p4 + p3 * 2 + p2 + p1 + p0 +
255 filter8(mask, hev, flat, op3, op2, op1, op0, oq0, oq1, oq2, oq3);
  /external/chromium_org/sandbox/win/src/
policy_opcodes_unittest.cc 107 PolicyOpcode* op3 = opcode_maker.MakeOpAlwaysFalse(kPolNegateEval); local
108 EXPECT_EQ(EVAL_TRUE, op3->Evaluate(&ppb1, 1, NULL));
256 PolicyOpcode* op3 = opcode_maker.MakeOpWStringMatch(0, txt3, 0, local
259 EXPECT_EQ(EVAL_TRUE, op3->Evaluate(&pp_tc1, 1, &mc1));
  /external/valgrind/main/VEX/priv/
host_s390_defs.h 344 HReg op3; member in struct:__anon29234::__anon29235::__anon29251
375 HReg op3; /* third operand */ member in struct:__anon29234::__anon29235::__anon29254
478 s390_insn *s390_insn_cas(UChar size, HReg op1, s390_amode *op2, HReg op3,
492 HReg op3, s390_round_t);
guest_s390_toIR.c 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);
2228 IRTemp op3 = newTemp(Ity_I32); local
2244 IRTemp op3 = newTemp(Ity_I64); local
2358 IRTemp op3 = newTemp(Ity_I32); local
2375 IRTemp op3 = newTemp(Ity_I64); local
2492 IRTemp op3 = newTemp(Ity_I32); local
2508 IRTemp op3 = newTemp(Ity_I32); local
2589 IRTemp op3 = newTemp(Ity_I32); local
2605 IRTemp op3 = newTemp(Ity_I64); local
2719 IRTemp op3 = newTemp(Ity_I32); local
2735 IRTemp op3 = newTemp(Ity_I32); local
2863 IRTemp op3 = newTemp(Ity_I32); local
2880 IRTemp op3 = newTemp(Ity_I64); local
2961 IRTemp op3 = newTemp(Ity_I32); local
2977 IRTemp op3 = newTemp(Ity_I64); local
4771 IRTemp op3 = newTemp(Ity_I32); local
4787 IRTemp op3 = newTemp(Ity_I64); local
5225 IRTemp op3 = newTemp(Ity_I32); local
5242 IRTemp op3 = newTemp(Ity_I64); local
5259 IRTemp op3 = newTemp(Ity_I32); local
5276 IRTemp op3 = newTemp(Ity_I64); local
5293 IRTemp op3 = newTemp(Ity_I32); local
5310 IRTemp op3 = newTemp(Ity_I64); local
5327 IRTemp op3 = newTemp(Ity_I32); local
5344 IRTemp op3 = newTemp(Ity_I64); local
5361 IRTemp op3 = newTemp(Ity_I32); local
5378 IRTemp op3 = newTemp(Ity_I64); local
6465 IRTemp op3 = newTemp(Ity_I32); local
6481 IRTemp op3 = newTemp(Ity_I64); local
7437 IRTemp op3 = newTemp(Ity_I32); local
7453 IRTemp op3 = newTemp(Ity_I64); local
7565 IRTemp op3 = newTemp(Ity_I32); local
7581 IRTemp op3 = newTemp(Ity_I32); local
7645 IRTemp op3 = newTemp(Ity_I32); local
7661 IRTemp op3 = newTemp(Ity_I64); local
7775 IRTemp op3 = newTemp(Ity_I32); local
7791 IRTemp op3 = newTemp(Ity_I32); local
9798 IRTemp op3 = newTemp(Ity_I32); local
9846 IRTemp op3 = newTemp(Ity_I64); local
    [all...]
  /art/compiler/dex/quick/
mir_to_lir-inl.h 42 int op1, int op2, int op3, int op4, LIR* target) {
49 insn->operands[3] = op3;
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_loopfilter_filters_dspr2.h 367 static INLINE void vp9_mbfilter_dspr2(uint32_t *op3, uint32_t *op2,
372 const uint32_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
524 uint32_t *op3, uint32_t *op2,
531 const uint32_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
607 /* *op3 = ROUND_POWER_OF_TWO(p7 * 4 + p6 + p5 + p4 + p3 * 2 + p2 +
655 *op3 = res_op3;
    [all...]

Completed in 637 milliseconds

1 2