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

1 2

  /external/valgrind/main/VEX/test/
test-amd64-muldiv.h 2 void glue(glue(test_, OP), b)(int64 op0, int64 op1)
5 s0 = op0;
20 void glue(glue(test_, OP), w)(int64 op0h, int64 op0, int64 op1)
25 res = op0;
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
38 void glue(glue(test_, OP), l)(int64 op0h, int64 op0, int64 op1)
43 res = op0;
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
56 void glue(glue(test_, OP), q)(int64 op0h, int64 op0, int64 op1)
61 res = op0;
    [all...]
test-i386-muldiv.h 2 void glue(glue(test_, OP), b)(int op0, int op1)
5 s0 = op0;
20 void glue(glue(test_, OP), w)(int op0h, int op0, int op1)
25 res = op0;
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK);
38 void glue(glue(test_, OP), l)(int op0h, int op0, int op1)
43 res = op0;
53 stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK);
test-amd64.c 368 void test_imulw2(int64 op0, int64 op1)
371 s0 = op0;
386 void test_imull2(int64 op0, int64 op1)
390 s0 = op0;
405 #define TEST_IMUL_IM(size, size1, op0, op1)\
412 "imul" size " $" #op0 ", %" size1 "2, %" size1 "0\n\t" \
418 "imul" size, op0, op1, res, flags & CC_MASK);\
421 #define TEST_IMUL_IM_L(op0, op1)\
428 "imul $" #op0 ", %2, %0\n\t" \
434 "imull", op0, op1, res, flags & CC_MASK);
    [all...]
test-i386.c 356 void test_imulw2(int op0, int op1)
359 s0 = op0;
374 void test_imull2(int op0, int op1)
377 s0 = op0;
392 #define TEST_IMUL_IM(size, size1, op0, op1)\
399 "imul" size " $" #op0 ", %" size1 "2, %" size1 "0\n\t" \
405 "imul" size, op0, op1, res, flags & CC_MASK);\
505 #define TEST_BSX(op, size, op0)\
508 val = op0;\
758 #define TEST_BCD(op, op0, cc_in, cc_mask)
    [all...]
  /external/mesa3d/src/glsl/
ir_div_to_mul_rcp.cpp 27 * Breaks an ir_unop_div expression down to op0 * (rcp(op1)).
74 /* op0 / op1 -> op0 * (1.0 / op1) */
82 ir_rvalue *op0, *op1; local
101 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL);
103 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL);
105 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1);
108 ir->operands[0] = op0;
lower_instructions.cpp 42 * Breaks an ir_binop_sub expression down to add(op0, neg(op1))
47 * want to recognize add(op0, neg(op1)) or the other way around to
52 * Breaks an ir_unop_div expression down to op0 * (rcp(op1)).
72 * Breaks an ir_unop_mod expression down to (op1 * fract(op0 / op1))
138 /* op0 / op1 -> op0 * (1.0 / op1) */
146 ir_rvalue *op0, *op1; local
165 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL);
167 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL);
169 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1)
    [all...]
ir.cpp 195 ir_rvalue *op0)
201 this->operands[0] = op0;
208 ir_rvalue *op0, ir_rvalue *op1)
215 this->operands[0] = op0;
222 ir_rvalue *op0, ir_rvalue *op1,
228 this->operands[0] = op0;
234 ir_expression::ir_expression(int op, ir_rvalue *op0)
239 this->operands[0] = op0;
267 this->type = op0->type;
276 this->type = op0->type
    [all...]
lower_mat_op_to_vec.cpp 306 ir_dereference *const op0 = get_column(a_var, i); local
311 glsl_type::bool_type, op0, op1);
404 ir_rvalue *op0 = get_column(op_var[0], i); local
411 op0,
434 ir_rvalue *op0 = get_column(op_var[0], i); local
442 op0,
loop_analysis.cpp 428 ir_variable *const op0 = rhs->operands[0]->variable_referenced(); local
431 if (((op0 != var) && (op1 != var))
435 ir_rvalue *inc = (op0 == var) ? rhs->operands[1] : rhs->operands[0];
ast_to_hir.cpp 759 do_comparison(void *mem_ctx, int operation, ir_rvalue *op0, ir_rvalue *op1)
769 switch (op0->type->base_type) {
774 return new(mem_ctx) ir_expression(operation, op0, op1);
777 for (unsigned int i = 0; i < op0->type->length; i++) {
780 e0 = new(mem_ctx) ir_dereference_array(op0->clone(mem_ctx, NULL),
793 mark_whole_array_access(op0);
799 for (unsigned int i = 0; i < op0->type->length; i++) {
801 const char *field_name = op0->type->fields.structure[i].name;
803 e0 = new(mem_ctx) ir_dereference_record(op0->clone(mem_ctx, NULL),
    [all...]
ir_constant_expression.cpp 44 dot(ir_constant *op0, ir_constant *op1)
46 assert(op0->type->is_float() && op1->type->is_float());
49 for (unsigned c = 0; c < op0->type->components(); c++)
50 result += op0->value.f[c] * op1->value.f[c];
    [all...]
ir_to_llvm.cpp 364 llvm::Value* llvm_intrinsic_unop(ir_expression_operation op, llvm::Value * op0)
391 return bld.CreateCall(function, op0);
394 llvm::Value* llvm_intrinsic_binop(ir_expression_operation op, llvm::Value * op0, llvm::Value * op1)
419 return bld.CreateCall2(function, op0, op1);
    [all...]
  /external/libvpx/vp8/common/
loopfilter_filters.c 51 static __inline void vp8_filter(signed char mask, signed char hev, uc *op1, uc *op0, uc *oq0, uc *oq1)
60 ps0 = (signed char) * op0 ^ 0x80;
83 *op0 = u ^ 0x80;
161 uc *op2, uc *op1, uc *op0, uc *oq0, uc *oq1, uc *oq2)
167 signed char ps0 = (signed char) * op0 ^ 0x80;
198 *op0 = s ^ 0x80;
291 static __inline void vp8_simple_filter(signed char mask, uc *op1, uc *op0, uc *oq0, uc *oq1)
295 signed char p0 = (signed char) * op0 ^ 0x80;
313 *op0 = u ^ 0x80;
  /external/javassist/src/main/javassist/
CtConstructor.java 160 int op0 = it.byteAt(it.next()); local
161 return op0 == Opcode.RETURN // empty static initializer
162 || (op0 == Opcode.ALOAD_0
  /external/libvpx/vp8/common/arm/neon/
loopfilter_neon.asm 57 vst1.u8 {q6}, [r0], r1 ; store op0
112 vst1.u8 {d12}, [r0], r1 ; store u op0
113 vst1.u8 {d13}, [r2], r1 ; store v op0
184 ;store op1, op0, oq0, oq1
273 ;store op1, op0, oq0, oq1
393 veor q6, q11, q0 ; *op0 = u^0x80
loopfiltersimplehorizontaledge_neon.asm 97 veor q6, q11, q0 ; *op0 = u^0x80
100 vst1.u8 {q6}, [r0] ; store op0
mbloopfilter_neon.asm 61 vst1.u8 {q6}, [r3], r1 ; store op0
120 vst1.u8 {d12}, [r0], r1 ; store u op0
121 vst1.u8 {d13}, [r3], r1 ; store v op0
217 ;store op2, op1, op0, oq0, oq1, oq2
327 ;store op2, op1, op0, oq0, oq1, oq2
503 veor q6, q14, q0 ; *op0 = s^0x80
loopfiltersimpleverticaledge_neon.asm 114 veor q6, q11, q0 ; *op0 = u^0x80
120 ;store op1, op0, oq0, oq1
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-ssa-sccvn.h 72 tree op0; member in struct:vn_reference_op_struct
c-common.h 743 extern tree shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise);
923 tree op0, tree op1,
    [all...]
  /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 78 tree op0; 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 78 tree op0; 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 78 tree op0; member in struct:vn_reference_op_struct
  /external/libvpx/vp8/common/arm/armv6/
simpleloopfilter_v6.asm 128 eor r4, r4, r2 ; *op0 = u^0x80
129 str r4, [src, -pstep] ; store op0 result
236 eor r4, r4, r2 ; *op0 = u^0x80
loopfilter_v6.asm 241 eor r9, r9, r12 ; *op0 = u^0x80
242 str r9, [src], pstep ; store op0 result
481 eor r10, r10, lr ; *op0 = s^0x80
482 str r10, [src] ; store *op0
    [all...]

Completed in 1613 milliseconds

1 2