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

1 2 3

  /external/valgrind/main/memcheck/tests/s390x/
cs.c 8 register int32_t op1 asm("8") = op1_init;
18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
25 int op1, op2, op3; local
27 test(op1, 0x10000000, 0x12345678); // complaint
csg.c 8 register int64_t op1 asm("8") = op1_init;
18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3)
25 int64_t op1, op2, op3; local
27 test(op1, 0x1000000000000000ull, 0x1234567887654321ull); // complaint
cds.c 13 quad_word op1 = op1_init; local
21 "stmg %%r0,%%r1,%1\n" // store r0,r1 to op1
23 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
43 quad_word op1, op3; local
46 // op1 undefined
47 op1 = make_undefined();
50 test(op1, op2, op3); // complaint
55 quad_word op1, op3; local
58 op1.high = op1.low = 42
66 quad_word op1, op3; local
    [all...]
cdsg.c 25 "stmg %%r0,%%r1,%1\n" // store r0,r1 to op1
34 quad_word op1, op2, op3; local
36 // op1 undefined
39 test(op1, op2, op3); // complaint
44 quad_word op1, op2, op3; local
46 op1.high = op1.low = 42;
49 test(op1, op2, op3); // complaint
54 quad_word op1, op2, op3; local
56 op1.high = op1.low = 42
    [all...]
  /external/valgrind/main/none/tests/s390x/
cds.c 15 quad_word op1 = op1_init; local
19 quad_word op1_before = op1;
23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low);
31 "stmg %%r0,%%r1,%1\n" // store r0,r1 to op1
35 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low)
95 quad_word op1, op3; local
    [all...]
cdsg.c 28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
84 quad_word op1, op2, op3; local
86 // op1 == op2
87 op1.high = 0x0011223344556677ull;
88 op1.low = 0x8899aabbccddeeffull;
89 op2 = op1;
91 test(op1, op2, op3, 0);
93 // op1 != op2 (only MSB differs)
94 op1.high = 0x8000000000000000ull
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 46 SyncOperation op1 = new SyncOperation(account1, 0, local
56 // Same as op1 but different time infos
67 // Same as op1 but different authority
78 // Same as op1 but different account
89 // Same as op1 but different bundle
100 assertEquals(op1.key, op2.key);
101 assertNotSame(op1.key, op3.key);
102 assertNotSame(op1.key, op4.key);
103 assertNotSame(op1.key, op5.key);
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 53 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
56 ContentProviderResult result = op1.apply(new TestContentProvider() {
67 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
69 ContentProviderResult result = op1.apply(new TestContentProvider() {
80 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
84 op1.apply(new TestContentProvider() {
103 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
108 ContentProviderResult result = op1.apply(new TestContentProvider() {
122 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
126 ContentProviderResult result = op1.apply(new TestContentProvider()
138 ContentProviderOperation op1 = ContentProviderOperation.newAssertQuery(sTestUri1) local
157 ContentProviderOperation op1 = ContentProviderOperation.newAssertQuery(sTestUri1) local
247 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
269 ContentProviderOperation op1 = ContentProviderOperation.newUpdate(sTestUri1) local
284 ContentProviderOperation op1; local
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.cpp 46 JSValue op1 = JSValue::decode(encodedOp1); local
49 if (op1.isInt32() && op2.isInt32()) {
50 int64_t result64 = static_cast<int64_t>(op1.asInt32()) + static_cast<int64_t>(op2.asInt32());
59 if (op1.getNumber(number1) && op2.getNumber(number2))
62 return JSValue::encode(jsAddSlowCase(exec, op1, op2));
DFGJITCodeGenerator.h 308 void bitOp(NodeType op, int32_t imm, MacroAssembler::RegisterID op1, MacroAssembler::RegisterID result)
312 m_jit.and32(Imm32(imm), op1, result); local
315 m_jit.or32(Imm32(imm), op1, result); local
318 m_jit.xor32(Imm32(imm), op1, result); local
324 void bitOp(NodeType op, MacroAssembler::RegisterID op1, MacroAssembler::RegisterID op2, MacroAssembler::RegisterID result)
328 m_jit.and32(op1, op2, result);
331 m_jit.or32(op1, op2, result);
334 m_jit.xor32(op1, op2, result);
340 void shiftOp(NodeType op, MacroAssembler::RegisterID op1, int32_t shiftAmount, MacroAssembler::RegisterID result)
344 m_jit.rshift32(op1, Imm32(shiftAmount), result)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 27 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
31 OSCL_UNUSED_ARG(op1);
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)
181 mla out, op1, out, op3 local
269 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
272 register int32 aa = (int32)op1;
  /ndk/sources/host-tools/nawk-20071023/
parse.c 132 Node *op1(int a, Node *b) function
182 return op1(INDIRECT, celltonode(literal0, CUNK));
  /external/valgrind/main/none/tests/mips32/
round.c 201 int FCSRRoundingMode(flt_round_op_t op1)
215 switch(op1) {
218 printf("%s %lf %lf\n", flt_round_op_names[op1], fd_d, fs_f[i]);
222 printf("%s %lf %d\n", flt_round_op_names[op1], fd_d, fs_w[i]);
226 printf("%s %f %lf\n", flt_round_op_names[op1], fd_f, fs_d[i]);
230 printf("%s %f %d\n", flt_round_op_names[op1], fd_f, fs_w[i]);
234 printf("%s %d %f\n", flt_round_op_names[op1], fd_w, fs_f[i]);
238 printf("%s %d %lf\n", flt_round_op_names[op1], fd_w, fs_d[i]);
252 flt_round_op_t op1; local
262 for (op1 = CVTDS; op1 <= CVTWD; op1++)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 79 tree op1; 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 79 tree op1; 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 79 tree op1; 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 79 tree op1; member in struct:vn_reference_op_struct
  /external/qemu/target-arm/
op_helper.c 130 int op1 = (insn >> 8) & 0xf; local
131 cpu_abort(env, "cp%i insn %08x\n", op1, insn);
137 int op1 = (insn >> 8) & 0xf; local
138 cpu_abort(env, "cp%i insn %08x\n", op1, insn);
helper.c 1401 int op1; local
1836 int op1; local
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic.cpp 53 unsigned op1 = currentInstruction[2].u.operand; local
56 emitGetVirtualRegisters(op1, regT0, op2, regT2);
70 unsigned op1 = currentInstruction[2].u.operand; local
73 UNUSED_PARAM(op1);
86 unsigned op1 = currentInstruction[2].u.operand; local
91 emitGetVirtualRegister(op1, regT0);
96 emitGetVirtualRegisters(op1, regT0, op2, regT2);
121 unsigned op1 = currentInstruction[2].u.operand; local
135 // We're reloading op1 to regT0 as we can no longer guarantee that
138 stubCall.addArgument(op1, regT0)
154 unsigned op1 = currentInstruction[2].u.operand; local
190 unsigned op1 = currentInstruction[2].u.operand; local
247 unsigned op1 = currentInstruction[1].u.operand; local
295 unsigned op1 = currentInstruction[1].u.operand; local
400 unsigned op1 = currentInstruction[1].u.operand; local
448 unsigned op1 = currentInstruction[1].u.operand; local
553 unsigned op1 = currentInstruction[1].u.operand; local
601 unsigned op1 = currentInstruction[1].u.operand; local
718 unsigned op1 = currentInstruction[2].u.operand; local
746 unsigned op1 = currentInstruction[2].u.operand; local
877 unsigned op1 = currentInstruction[2].u.operand; local
916 unsigned op1 = currentInstruction[2].u.operand; local
929 unsigned op1 = currentInstruction[2].u.operand; local
1058 unsigned op1 = currentInstruction[2].u.operand; local
1089 unsigned op1 = currentInstruction[2].u.operand; local
1104 unsigned op1 = currentInstruction[2].u.operand; local
1129 unsigned op1 = currentInstruction[2].u.operand; local
1141 unsigned op1 = currentInstruction[2].u.operand; local
1194 unsigned op1 = currentInstruction[2].u.operand; local
1221 unsigned op1 = currentInstruction[2].u.operand; local
1232 unsigned op1 = currentInstruction[2].u.operand; local
    [all...]
JITArithmetic32_64.cpp 89 unsigned op1 = currentInstruction[1].u.operand; local
97 if (isOperandConstantImmediateChar(op1)) {
103 addJump(branch32(LessThanOrEqual, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
107 emitLoad(op1, regT1, regT0);
115 if (isOperandConstantImmediateInt(op1)) {
119 addJump(branch32(LessThanOrEqual, regT2, Imm32(getConstantOperand(op1).asInt32())), target);
121 emitLoad(op1, regT1, regT0);
125 emitLoad2(op1, regT1, regT0, op2, regT3, regT2);
139 emitBinaryDoubleOp(op_jnless, target, op1, op2, OperandTypes(), notInt32Op1, notInt32Op2, !isOperandConstantImmediateInt(op1), isOperandConstantImmediateInt(op1) || !isOperandConstantImmediateInt(op2))
145 unsigned op1 = currentInstruction[1].u.operand; local
178 unsigned op1 = currentInstruction[1].u.operand; local
233 unsigned op1 = currentInstruction[1].u.operand; local
265 unsigned op1 = currentInstruction[1].u.operand; local
320 unsigned op1 = currentInstruction[1].u.operand; local
366 unsigned op1 = currentInstruction[2].u.operand; local
388 unsigned op1 = currentInstruction[2].u.operand; local
406 unsigned op1 = currentInstruction[2].u.operand; local
445 unsigned op1 = currentInstruction[2].u.operand; local
531 unsigned op1 = currentInstruction[2].u.operand; local
554 unsigned op1 = currentInstruction[2].u.operand; local
572 unsigned op1 = currentInstruction[2].u.operand; local
595 unsigned op1 = currentInstruction[2].u.operand; local
613 unsigned op1 = currentInstruction[2].u.operand; local
636 unsigned op1 = currentInstruction[2].u.operand; local
797 unsigned op1 = currentInstruction[2].u.operand; local
869 unsigned op1 = currentInstruction[2].u.operand; local
916 unsigned op1 = currentInstruction[2].u.operand; local
978 unsigned op1 = currentInstruction[2].u.operand; local
1152 unsigned op1 = currentInstruction[2].u.operand; local
1184 unsigned op1 = currentInstruction[2].u.operand; local
1226 unsigned op1 = currentInstruction[2].u.operand; local
1270 unsigned op1 = currentInstruction[2].u.operand; local
1301 unsigned op1 = currentInstruction[2].u.operand; local
1351 unsigned op1 = currentInstruction[2].u.operand; local
1376 unsigned op1 = currentInstruction[2].u.operand; local
1403 unsigned op1 = currentInstruction[2].u.operand; local
    [all...]
JITOpcodes.cpp 350 unsigned op1 = currentInstruction[1].u.operand; local
354 emitGetVirtualRegister(op1, regT0);
359 emitGetVirtualRegisters(op1, regT0, op2, regT1);
    [all...]
JITOpcodes32_64.cpp 505 unsigned op1 = currentInstruction[1].u.operand; local
511 if (isOperandConstantImmediateInt(op1)) {
514 addJump(branch32(GreaterThanOrEqual, regT0, Imm32(getConstantOperand(op1).asInt32())), target);
519 emitLoad(op1, regT1, regT0);
525 emitLoad2(op1, regT1, regT0, op2, regT3, regT2);
533 unsigned op1 = currentInstruction[1].u.operand; local
537 if (!isOperandConstantImmediateInt(op1) && !isOperandConstantImmediateInt(op2))
542 stubCall.addArgument(op1);
1057 unsigned op1 = currentInstruction[2].u.operand; local
    [all...]
  /external/valgrind/main/VEX/priv/
host_s390_defs.h 293 HReg dst; /* op1 */
299 HReg dst_lo; /* also op1 r11 */
310 HReg op1; /* also quotient r11 */ member in struct:__anon16372::__anon16373::__anon16382
330 HReg op1; member in struct:__anon16372::__anon16373::__anon16386
342 HReg op1; member in struct:__anon16372::__anon16373::__anon16389
475 s390_insn *s390_insn_divs(UChar size, HReg rem, HReg op1, s390_opnd_RMI op2);
478 s390_insn *s390_insn_cas(UChar size, HReg op1, s390_amode *op2, HReg op3,
497 s390_insn *s390_insn_bfp_compare(UChar size, HReg dst, HReg op1, HReg op2);
host_s390_isel.c 1786 HReg op1, op2, op3, dst; local
2122 s390_opnd_RMI op1, op2; local
2153 HReg op1; local
2170 HReg op1; local
2186 HReg op1; local
2491 HReg op1 = s390_isel_int_expr(env, cas->expdLo); \/* expected value *\/ local
    [all...]

Completed in 514 milliseconds

1 2 3