Searched defs:op2 (Results 1 - 25 of 57) sorted by relevance

123

/external/valgrind/main/memcheck/tests/s390x/
H A Dcs.c11 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
H A Dcsg.c11 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
H A Dcds.c14 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
[all...]
H A Dcdsg.c34 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, op
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dcs.c11 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) {
H A Dcsg.c11 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) {
H A Dcds.c16 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 ar
96 uint64_t op2; local
[all...]
H A Dcdsg.c29 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, op
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DStmnt.java45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) { argument
46 return new Stmnt(op, op1, new ASTList(op2, new ASTList(op3)));
/external/chromium_org/chrome/common/extensions/api/sockets/
H A Dsockets_manifest_permission_unittest.cc135 const CheckFormatEntry& op2) {
137 op1, op2
146 const CheckFormatEntry& op2,
155 op1, op2, op3, op4, op5, op6, op7, op8, op9
132 CheckFormat( const std::string& json, const CheckFormatEntry& op1, const CheckFormatEntry& op2) argument
143 CheckFormat( const std::string& json, const CheckFormatEntry& op1, const CheckFormatEntry& op2, const CheckFormatEntry& op3, const CheckFormatEntry& op4, const CheckFormatEntry& op5, const CheckFormatEntry& op6, const CheckFormatEntry& op7, const CheckFormatEntry& op8, const CheckFormatEntry& op9) argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dopt_algebraic.cpp64 int op2);
106 int op2)
108 ir_rvalue *temp = ir2->operands[op2];
109 ir2->operands[op2] = ir1->operands[op1];
103 reassociate_operands(ir_expression *ir1, int op1, ir_expression *ir2, int op2) argument
H A Dir.cpp228 ir_rvalue *op2, ir_rvalue *op3)
235 this->operands[2] = op2;
226 ir_expression(int op, const struct glsl_type *type, ir_rvalue *op0, ir_rvalue *op1, ir_rvalue *op2, ir_rvalue *op3) argument
/external/mesa3d/src/glsl/
H A Dopt_algebraic.cpp64 int op2);
106 int op2)
108 ir_rvalue *temp = ir2->operands[op2];
109 ir2->operands[op2] = ir1->operands[op1];
103 reassociate_operands(ir_expression *ir1, int op1, ir_expression *ir2, int op2) argument
/external/chromium_org/sandbox/win/src/
H A Dpolicy_opcodes_unittest.cc93 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/libvpx/libvpx/vp8/common/
H A Dloopfilter_filters.c162 uc *op2, uc *op1, uc *op0, uc *oq0, uc *oq1, uc *oq2)
166 signed char ps2 = (signed char) * op2 ^ 0x80;
213 *op2 = s ^ 0x80;
161 vp8_mbfilter(signed char mask, uc hev, uc *op2, uc *op1, uc *op0, uc *oq0, uc *oq1, uc *oq2) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfloatnum.c235 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);
H A Dintnum.c425 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, spar
615 wordptr op1, op2; local
779 wordptr op1 = op1static, op2; local
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_loopfilter_filters.c145 uint8_t *op3, uint8_t *op2,
150 const uint8_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
154 *op2 = ROUND_POWER_OF_TWO(p3 + p3 + p3 + 2 * p2 + p1 + p0 + q0, 3);
212 uint8_t *op3, uint8_t *op2,
220 p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
234 *op2 = ROUND_POWER_OF_TWO(p7 * 3 + p6 + p5 + p4 + p3 + p2 * 2 + p1 + p0 +
255 filter8(mask, hev, flat, op3, op2, op1, op0, oq0, oq1, oq2, oq3);
144 filter8(int8_t mask, uint8_t hev, uint8_t flat, uint8_t *op3, uint8_t *op2, uint8_t *op1, uint8_t *op0, uint8_t *oq0, uint8_t *oq1, uint8_t *oq2, uint8_t *oq3) argument
208 filter16(int8_t mask, uint8_t hev, uint8_t flat, uint8_t flat2, uint8_t *op7, uint8_t *op6, uint8_t *op5, uint8_t *op4, uint8_t *op3, uint8_t *op2, uint8_t *op1, uint8_t *op0, uint8_t *oq0, uint8_t *oq1, uint8_t *oq2, uint8_t *oq3, uint8_t *oq4, uint8_t *oq5, uint8_t *oq6, uint8_t *oq7) argument
/external/aac/libFDK/src/
H A Dfixpoint_math.cpp216 FIXP_DBL mul_dbl_sgl_rnd (const FIXP_DBL op1, const FIXP_SGL op2) argument
220 SHORT u = (SHORT)(op2);
484 description: delivers op1/op2 with op3-bit accuracy
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayable.cpp296 SkOperand op2, SkOperand blankOp2) {
309 if (op.fScalar != blankOp.fScalar || op2.fScalar != blankOp.fScalar) {
310 SkDebugf("%s=\"[%g,%g]\" ", info->fName, SkScalarToFloat(op.fScalar), SkScalarToFloat(op2.fScalar));
295 dumpValues(const SkMemberInfo* info, SkDisplayTypes type, SkOperand op, SkOperand blankOp, SkOperand op2, SkOperand blankOp2) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
H A Dnasm-parse.c860 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
909 op2 = yasm_operand_create_mem(ea);
910 op2->size = op->size;
912 op = op2;
1054 yasm_insn_operand *op2; local
1064 op2
[all...]
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_loopfilter_filters_dspr2.h367 static INLINE void vp9_mbfilter_dspr2(uint32_t *op3, uint32_t *op2, argument
372 const uint32_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
380 /* *op2 = ROUND_POWER_OF_TWO(p3 + p3 + p3 + p2 + p2 + p1 + p0 + q0, 3) 1 */
436 *op2 = res_op2;
459 /* *op2 = ROUND_POWER_OF_TWO(p3 + p3 + p3 + p2 + p2 + p1 + p0 + q0, 3) 1 */
524 uint32_t *op3, uint32_t *op2,
531 const uint32_t p3 = *op3, p2 = *op2, p1 = *op1, p0 = *op0;
617 /* *op2 = ROUND_POWER_OF_TWO(p7 * 3 + p6 + p5 + p4 + p3 + p2 * 2 + p1 +
656 *op2 = res_op2;
522 vp9_wide_mbfilter_dspr2(uint32_t *op7, uint32_t *op6, uint32_t *op5, uint32_t *op4, uint32_t *op3, uint32_t *op2, uint32_t *op1, uint32_t *op0, uint32_t *oq0, uint32_t *oq1, uint32_t *oq2, uint32_t *oq3, uint32_t *oq4, uint32_t *oq5, uint32_t *oq6, uint32_t *oq7) argument
/external/skia/src/animator/
H A DSkDisplayable.cpp296 SkOperand op2, SkOperand blankOp2) {
309 if (op.fScalar != blankOp.fScalar || op2.fScalar != blankOp.fScalar) {
310 SkDebugf("%s=\"[%g,%g]\" ", info->fName, SkScalarToFloat(op.fScalar), SkScalarToFloat(op2.fScalar));
295 dumpValues(const SkMemberInfo* info, SkDisplayTypes type, SkOperand op, SkOperand blankOp, SkOperand op2, SkOperand blankOp2) argument
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2intrp.c812 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' */
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c295 unsigned op2:11; member in struct:vx_inst::__anon12876
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, argument
308 inst.inst.op2 = op2;
328 unsigned op2:10; member in struct:vxr_inst::__anon12877
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, argument
342 inst.inst.op2 = op2;
359 unsigned op2:6; member in struct:va_inst::__anon12878
364 emit_va(struct ppc_function *p, uint op2, uin argument
412 unsigned op2:10; member in struct:xl_inst::__anon12880
418 emit_xl(struct ppc_function *p, uint op, uint bo, uint bi, uint bh, uint op2, uint lk) argument
456 unsigned op2:10; member in struct:x_inst::__anon12881
462 emit_x(struct ppc_function *p, uint op, uint vrs, uint ra, uint rb, uint op2, const char *format) argument
520 unsigned op2:5; member in struct:a_inst::__anon12883
526 emit_a(struct ppc_function *p, uint op, uint frt, uint fra, uint frb, uint op2, uint rc, const char *format) argument
553 unsigned op2:9; member in struct:xo_inst::__anon12884
559 emit_xo(struct ppc_function *p, uint op, uint rt, uint ra, uint rb, uint oe, uint op2, uint rc, const char *format) argument
[all...]

Completed in 883 milliseconds

123