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

1 2 3 4

  /external/valgrind/main/none/tests/s390x/
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) {
laa.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);
34 if (expected_cc == 0 && op2 != 0) {
37 if (expected_cc == 1 && op2 >= 0) {
40 if (expected_cc == 2 && op2 <= 0) {
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...]
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...]
  /external/valgrind/main/memcheck/tests/s390x/
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
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...]
  /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 local
174 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
180 and out, op2, #0xFFFF local
269 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
273 register int32 bb = (int32)op2;
  /ndk/sources/host-tools/nawk-20071023/
parse.c 141 Node *op2(int a, Node *b, Node *c) function
  /external/chromium_org/cc/quads/
draw_polygon.cc 321 // |offset| starts off as the second vertex, and then |op1| and |op2| indicate
325 // the old |op2|, the last vertex added to the previous quad. This continues
338 size_t op2 = offset + 2; local
339 if (op2 >= points_.size()) {
341 op2 = op1;
347 gfx::PointF(points_[op2].x(), points_[op2].y())));
348 offset = op2;
  /external/chromium_org/sandbox/win/src/
policy_opcodes_unittest.cc 93 PolicyOpcode* op2 = opcode_maker.MakeOpAlwaysTrue(kPolNone); local
94 EXPECT_EQ(EVAL_TRUE, op2->Evaluate(&ppb1, 1, NULL));
97 EXPECT_EQ(EVAL_ERROR, op2->Evaluate(NULL, 0, NULL));
98 EXPECT_EQ(EVAL_ERROR, op2->Evaluate(NULL, 1, NULL));
101 EXPECT_EQ(EVAL_TRUE, op2->Evaluate(&ppb1, 0, NULL));
102 EXPECT_EQ(EVAL_TRUE, op2->Evaluate(&ppb1, 1, NULL));
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
floatnum.c 235 wordptr product, op1, op2; local
271 op2 = BitVector_Create((N_int)(MANT_BITS+1), FALSE);
276 BitVector_Copy(op2, op->mantissa);
277 BitVector_MSB(op2, 0);
280 BitVector_Multiply(product, op1, op2);
300 BitVector_Destroy(op2);
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...]
  /external/chromium_org/v8/test/cctest/compiler/
test-instruction.cc 284 UnallocatedOperand* op2 = R.NewUnallocated(index + 12); local
286 R.code->AddGapMove(index, op1, op2);
294 CHECK_EQ(op2, cur->destination());
  /external/libunwind/src/arm/
Gex_tables.c 177 uint8_t op2 = READ_OP (); local
178 if (op == 0x80 && op2 == 0x00)
183 edata.data = ((op & 0xf) << 8) | op2;
213 uint8_t op2 = READ_OP (); local
214 if (op2 == 0 || (op2 & 0xf0))
219 edata.data = op2 & 0x0f;
264 uint8_t op2 = READ_OP (); local
265 if (op2 == 0 || (op2 & 0xf0)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 75 SyncOperation op2 = new SyncOperation(account1, 0, local
122 assertEquals(op1.key, op2.key);
138 SyncOperation op2 = new SyncOperation(mDummy, 0, 0, SyncOperation.REASON_PERIODIC, local
151 assertTrue(op1.compareTo(op2) == -1);
152 assertTrue("less than not transitive.", op2.compareTo(op1) == 1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-ssa-sccvn.h 89 tree op2; member in struct:vn_reference_op_struct
  /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...]
  /hardware/intel/common/libmix/videodecoder/securevideo/baytrail/
secvideoparser.h 70 } op2; member in union:_dec_ref_pic_marking_t::__anon40325::__anon40326
  /hardware/intel/common/libmix/videodecoder/securevideo/cherrytrail/
secvideoparser.h 70 } op2; member in union:_dec_ref_pic_marking_t::__anon40339::__anon40340
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-parse.c 860 yasm_insn_operand *op2; local
887 op2 = yasm_operand_create_imm(op->data.ea->disp.abs);
889 op2 = yasm_operand_create_imm(p_expr_new_ident(
892 return op2;
906 yasm_insn_operand *op2; local
1054 yasm_insn_operand *op2; local
    [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 1523 uint64_t op2 = fieldFromInstruction(insn, 5, 3); local
    [all...]
  /art/compiler/dex/quick/
ralloc_util.cc 1184 const Mir2Lir::RefCounts* op2 = reinterpret_cast<const Mir2Lir::RefCounts*>(val2); local
    [all...]

Completed in 685 milliseconds

1 2 3 4