Home
last modified time | relevance | path

Searched refs:op0 (Results 1 – 25 of 91) sorted by relevance

1234

/third_party/boost/boost/geometry/algorithms/detail/overlay/
Dget_turn_info_ll.hpp619 operation_type & op0, in replace_method_and_operations_tm()
622 if ( op0 == operation_blocked && op1 == operation_blocked ) in replace_method_and_operations_tm()
626 op0 = operation_continue; in replace_method_and_operations_tm()
631 if ( op0 == operation_continue || op0 == operation_blocked ) in replace_method_and_operations_tm()
633 op0 = operation_intersection; in replace_method_and_operations_tm()
635 else if ( op0 == operation_intersection ) in replace_method_and_operations_tm()
637 op0 = operation_union; in replace_method_and_operations_tm()
653 op0 = operation_union; in replace_method_and_operations_tm()
669 operation_type & op0 = turn.operations[0].operation; in operator ()() local
672 BOOST_GEOMETRY_ASSERT(op0 != operation_blocked || op1 != operation_blocked ); in operator ()()
[all …]
Dget_turn_info_la.hpp587 operation_type & op0, in replace_method_and_operations_tm()
590 if ( op0 == operation_blocked && op1 == operation_blocked ) in replace_method_and_operations_tm()
597 if ( op0 == operation_blocked ) in replace_method_and_operations_tm()
599 op0 = operation_continue; in replace_method_and_operations_tm()
615 op0 = operation_union; in replace_method_and_operations_tm()
631 operation_type & op0 = turn.operations[0].operation; in operator ()() local
636 || op0 == operation_intersection || op0 == operation_union in operator ()()
642 turn.operations[0].is_collinear = op0 != operation_blocked; in operator ()()
645 if ( op0 == operation_blocked ) in operator ()()
647 op0 = operation_continue; in operator ()()
Dtraversal_ring_creator.hpp321 turn_operation_type const& op0 = turn.operations[0]; in get_operation_index() local
323 return op0.remaining_distance <= op1.remaining_distance in get_operation_index()
374 turn_operation_type const& op0 = turn.operations[0]; in iterate_with_preference() local
379 if (! op0.enriched.prefer_start && ! op1.enriched.prefer_start) in iterate_with_preference()
394 bool const forward = op0.enriched.prefer_start; in iterate_with_preference()
Dget_turn_info_for_endpoint.hpp534 operation_type op0, operation_type op1, in assign()
547 tp.operations[0].operation = op0; in assign()
560 tp.operations[0].is_collinear = op0 != operation_intersection in assign()
572 if ( op0 == operation_blocked && op1 == operation_intersection ) in assign()
576 else if ( op0 == operation_intersection && op1 == operation_blocked ) in assign()
Denrich_intersection_points.hpp363 op_type& op0 = turn.operations[0]; in calculate_remaining_distance() local
366 if (op0.remaining_distance != 0 in calculate_remaining_distance()
372 signed_size_type const to_index0 = op0.enriched.get_next_turn_index(); in calculate_remaining_distance()
378 op0.remaining_distance = distance_measure(turn.point, turns[to_index0].point); in calculate_remaining_distance()
/third_party/mesa3d/src/compiler/glsl/
Dir.cpp196 ir_rvalue *op0, ir_rvalue *op1, in ir_expression() argument
202 this->operands[0] = op0; in ir_expression()
219 ir_expression::ir_expression(int op, ir_rvalue *op0) in ir_expression() argument
223 this->operands[0] = op0; in ir_expression()
264 this->type = op0->type; in ir_expression()
279 op0->type->vector_elements, 1); in ir_expression()
292 op0->type->vector_elements, 1); in ir_expression()
299 op0->type->vector_elements, 1); in ir_expression()
304 op0->type->vector_elements, 1); in ir_expression()
308 if (op0->type->base_type == GLSL_TYPE_INT) { in ir_expression()
[all …]
Dlower_packing_builtins.cpp73 ir_rvalue *op0 = expr->operands[0]; in handle_rvalue() local
74 ralloc_steal(factory.mem_ctx, op0); in handle_rvalue()
78 *rvalue = lower_pack_snorm_2x16(op0); in handle_rvalue()
81 *rvalue = lower_pack_snorm_4x8(op0); in handle_rvalue()
84 *rvalue = lower_pack_unorm_2x16(op0); in handle_rvalue()
87 *rvalue = lower_pack_unorm_4x8(op0); in handle_rvalue()
90 *rvalue = lower_pack_half_2x16(op0); in handle_rvalue()
93 *rvalue = lower_unpack_snorm_2x16(op0); in handle_rvalue()
96 *rvalue = lower_unpack_snorm_4x8(op0); in handle_rvalue()
99 *rvalue = lower_unpack_unorm_2x16(op0); in handle_rvalue()
[all …]
Dir_constant_expression.cpp45 dot_f(ir_constant *op0, ir_constant *op1) in dot_f() argument
47 assert(op0->type->is_float() && op1->type->is_float()); in dot_f()
50 for (unsigned c = 0; c < op0->type->components(); c++) in dot_f()
51 result += op0->value.f[c] * op1->value.f[c]; in dot_f()
57 dot_d(ir_constant *op0, ir_constant *op1) in dot_d() argument
59 assert(op0->type->is_double() && op1->type->is_double()); in dot_d()
62 for (unsigned c = 0; c < op0->type->components(); c++) in dot_d()
63 result += op0->value.d[c] * op1->value.d[c]; in dot_d()
Dlower_instructions.cpp238 ir_rvalue *op0, *op1; in int_div_to_mul_rcp() local
257 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL); in int_div_to_mul_rcp()
259 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL); in int_div_to_mul_rcp()
265 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1); in int_div_to_mul_rcp()
269 ir->operands[0] = op0; in int_div_to_mul_rcp()
272 ir->operands[0] = new(ir) ir_expression(ir_unop_f2i, op0); in int_div_to_mul_rcp()
891 ir_rvalue *op0 = ir->operands[0], *op2 = ir->operands[2]; in double_lrp() local
899 assert(op0->type->vector_elements == op2->type->vector_elements); in double_lrp()
906 ir->operands[0] = swizzle(op2, swizval, op0->type->vector_elements); in double_lrp()
907 ir->operands[2] = mul(sub(one, op2->clone(ir, NULL)), op0); in double_lrp()
Dloop_analysis.cpp790 ir_variable *const op0 = rhs->operands[0]->variable_referenced(); in get_basic_induction_increment() local
793 if (((op0 != var) && (op1 != var)) in get_basic_induction_increment()
797 ir_rvalue *inc = (op0 == var) ? rhs->operands[1] : rhs->operands[0]; in get_basic_induction_increment()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dparser_test.js135 let op0 = inst.operand(0); variable
136 assert.equal(op0.name(), "GLSL");
137 assert.equal(op0.type(), "ValueEnum");
138 assert.equal(op0.value(), 2);
156 let op0 = inst.operand(0);
157 assert.equal(op0.name(), "GLSL");
158 assert.equal(op0.type(), "ValueEnum");
159 assert.equal(op0.value(), 2);
307 let op0 = inst.operand(0);
308 assert.equal(op0.name(), "int");
[all …]
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dparser_test.js135 let op0 = inst.operand(0); variable
136 assert.equal(op0.name(), "GLSL");
137 assert.equal(op0.type(), "ValueEnum");
138 assert.equal(op0.value(), 2);
156 let op0 = inst.operand(0);
157 assert.equal(op0.name(), "GLSL");
158 assert.equal(op0.type(), "ValueEnum");
159 assert.equal(op0.value(), 2);
307 let op0 = inst.operand(0);
308 assert.equal(op0.name(), "int");
[all …]
/third_party/spirv-tools/tools/sva/src/
Dparser_test.js135 let op0 = inst.operand(0); variable
136 assert.equal(op0.name(), "GLSL");
137 assert.equal(op0.type(), "ValueEnum");
138 assert.equal(op0.value(), 2);
156 let op0 = inst.operand(0);
157 assert.equal(op0.name(), "GLSL");
158 assert.equal(op0.type(), "ValueEnum");
159 assert.equal(op0.value(), 2);
307 let op0 = inst.operand(0);
308 assert.equal(op0.name(), "int");
[all …]
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_glsl.hpp629 void emit_nminmax_op(uint32_t result_type, uint32_t id, uint32_t op0, uint32_t op1, GLSLstd450 op);
631 …void emit_quaternary_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1,…
633 …void emit_trinary_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, ui…
635 …void emit_binary_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, con…
636 …void emit_atomic_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, con…
637 …void emit_atomic_func_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1, uin…
639 …void emit_unary_func_op_cast(uint32_t result_type, uint32_t result_id, uint32_t op0, const char *o…
641 …void emit_binary_func_op_cast(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op1…
643 …void emit_binary_func_op_cast_clustered(uint32_t result_type, uint32_t result_id, uint32_t op0, ui…
645 …void emit_trinary_func_op_cast(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t op…
[all …]
Dspirv_glsl.cpp5665 void CompilerGLSL::emit_unary_op(uint32_t result_type, uint32_t result_id, uint32_t op0, const char… in emit_unary_op() argument
5667 bool forward = should_forward(op0); in emit_unary_op()
5668 emit_op(result_type, result_id, join(op, to_enclosed_unpacked_expression(op0)), forward); in emit_unary_op()
5669 inherit_expression_dependencies(result_id, op0); in emit_unary_op()
5672 void CompilerGLSL::emit_binary_op(uint32_t result_type, uint32_t result_id, uint32_t op0, uint32_t … in emit_binary_op() argument
5678 bool forward = should_forward(op0) && should_forward(op1) && !force_temporary_precise; in emit_binary_op()
5681 …join(to_enclosed_unpacked_expression(op0), " ", op, " ", to_enclosed_unpacked_expression(op1)), fo… in emit_binary_op()
5683 inherit_expression_dependencies(result_id, op0); in emit_binary_op()
5708 void CompilerGLSL::emit_unrolled_binary_op(uint32_t result_type, uint32_t result_id, uint32_t op0, … in emit_unrolled_binary_op() argument
5711 auto &type0 = expression_type(op0); in emit_unrolled_binary_op()
[all …]
Dspirv_hlsl.hpp244 bool emit_complex_bitcast(uint32_t result_type, uint32_t id, uint32_t op0) override;
344 BitcastType get_bitcast_type(uint32_t result_type, uint32_t op0);
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Ddec_neon.c471 int8x16_t* const op0, in ApplyFilter2NoFlip_NEON() argument
479 *op0 = vqaddq_s8(p0s, delta3); in ApplyFilter2NoFlip_NEON()
487 uint8x16_t* const op0, uint8x16_t* const oq0) { in ApplyFilter2_NEON() argument
496 *op0 = FlipSignBack_NEON(sp0); in ApplyFilter2_NEON()
503 uint8x16_t* const op0, uint8x16_t* const oq0) { in DoFilter2_NEON() argument
510 ApplyFilter2_NEON(p0s, q0s, delta1, op0, oq0); in DoFilter2_NEON()
514 uint8x16_t p1, p0, q0, q1, op0, oq0; in SimpleVFilter16_NEON() local
518 DoFilter2_NEON(p1, p0, q0, q1, mask, &op0, &oq0); in SimpleVFilter16_NEON()
520 Store16x2_NEON(op0, oq0, p, stride); in SimpleVFilter16_NEON()
524 uint8x16_t p1, p0, q0, q1, oq0, op0; in SimpleHFilter16_NEON() local
[all …]
/third_party/skia/third_party/externals/libwebp/src/dsp/
Ddec_neon.c471 int8x16_t* const op0, in ApplyFilter2NoFlip_NEON() argument
479 *op0 = vqaddq_s8(p0s, delta3); in ApplyFilter2NoFlip_NEON()
487 uint8x16_t* const op0, uint8x16_t* const oq0) { in ApplyFilter2_NEON() argument
496 *op0 = FlipSignBack_NEON(sp0); in ApplyFilter2_NEON()
503 uint8x16_t* const op0, uint8x16_t* const oq0) { in DoFilter2_NEON() argument
510 ApplyFilter2_NEON(p0s, q0s, delta1, op0, oq0); in DoFilter2_NEON()
514 uint8x16_t p1, p0, q0, q1, op0, oq0; in SimpleVFilter16_NEON() local
518 DoFilter2_NEON(p1, p0, q0, q1, mask, &op0, &oq0); in SimpleVFilter16_NEON()
520 Store16x2_NEON(op0, oq0, p, stride); in SimpleVFilter16_NEON()
524 uint8x16_t p1, p0, q0, q1, oq0, op0; in SimpleHFilter16_NEON() local
[all …]
/third_party/mindspore/tests/st/nccl/
Dtest_nccl_all_reduce_op.py41 self.op0 = "sum"
45 self.all_reduce1 = P.AllReduce(self.op0, group=NCCL_WORLD_COMM_GROUP)
86 self.op0 = "sum"
90 self.all_reduce1 = P.AllReduce(self.op0, group=NCCL_WORLD_COMM_GROUP)
Dtest_nccl_reduce_scatter_op.py38 self.op0 = "sum"
43 self.reduce_scatter1 = P.ReduceScatter(self.op0, group=NCCL_WORLD_COMM_GROUP)
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_module.h384 const struct dxil_value *op0, const struct dxil_value *op1,
389 const struct dxil_value *op0, const struct dxil_value *op1);
393 const struct dxil_value *op0,
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/
Dassert.go318 func opImpliesOp(op0 t.ID, op1 t.ID) bool {
319 if op0 == op1 {
322 switch op0 {
/third_party/mindspore/tests/ut/data/profiler_data/JOB_AICPU/data/
DDATA_PREPROCESS.dev.AICPU.0.slice_01 …chTime=87 us, totalTime=989 us. �[2292299556] Node:Default/TruncatedNormal-op0, Run tart:409820040…
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_fragment_program_option.txt615 f = VectorLoad(op0);
629 f = VectorLoad(op0);
644 tmp0 = VectorLoad(op0);
665 tmp0 = VectorLoad(op0);
692 tmp0 = VectorLoad(op0);
724 tmp0 = VectorLoad(op0);
757 axis = VectorLoad(op0);
779 tmp0 = VectorLoad(op0);
803 tmp0 = VectorLoad(op0);
817 tmp0 = VectorLoad(op0);
[all …]
/third_party/openGLES/extensions/NV/
DNV_fragment_program_option.txt615 f = VectorLoad(op0);
629 f = VectorLoad(op0);
644 tmp0 = VectorLoad(op0);
665 tmp0 = VectorLoad(op0);
692 tmp0 = VectorLoad(op0);
724 tmp0 = VectorLoad(op0);
757 axis = VectorLoad(op0);
779 tmp0 = VectorLoad(op0);
803 tmp0 = VectorLoad(op0);
817 tmp0 = VectorLoad(op0);
[all …]

1234