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

1 2 3

  /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) {
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/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);
  /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/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...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 80 tree op2; member in struct:vn_reference_op_struct
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 80 tree op2; member in struct:vn_reference_op_struct
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 80 tree op2; member in struct:vn_reference_op_struct
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 80 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...]
  /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...]
  /art/compiler/dex/quick/
ralloc_util.cc 933 const Mir2Lir::RefCounts* op2 = reinterpret_cast<const Mir2Lir::RefCounts*>(val2); local
937 return (op1->count == op2->count)
938 ? (op1->s_reg - op2->s_reg)
939 : (op1->count < op2->count ? 1 : -1);
    [all...]
  /art/runtime/
disassembler_arm.cc 289 // |111|op1| op2 | | |
295 uint32_t op2 = (instr >> 20) & 0x7F; local
302 if ((op2 & 0x64) == 0) { // 00x x0xx
310 // |111|01| op2 | | |
347 } else if ((op2 & 0x64) == 4) { // 00x x1xx
362 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx
486 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx
600 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) {
663 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) {
733 // |111|10| op2 | |1|op3|op4 |
    [all...]
  /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/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...]
  /external/freetype/src/cff/
cf2intrp.c 812 FT_Byte op2 = (FT_Byte)cf2_buf_readByte( charstring ); local
815 switch ( op2 )
1054 FT_TRACE4(( " unknown op (12, %d)\n", op2 ));
1056 }; /* end of switch statement checking `op2' */
    [all...]

Completed in 629 milliseconds

1 2 3