Home
last modified time | relevance | path

Searched refs:op_y (Results 1 – 25 of 31) sorted by relevance

12

/dports/audio/hexter/hexter-1.0.3/src/
H A Dgui_widgy_alg.c235 int i, op_x[7], op_y[7]; in we_alg_draw() local
249 op_y[op] = algdef[i].b; in we_alg_draw()
250 alg_draw_op(cr, op_x[op], op_y[op], op); in we_alg_draw()
252 alg_draw_connect(cr, op_x[(int)algdef[i].a], op_y[(int)algdef[i].a], in we_alg_draw()
253 op_x[(int)algdef[i].b], op_y[(int)algdef[i].b]); in we_alg_draw()
256 op_y[(int)algdef[i].a]); in we_alg_draw()
258 alg_draw_feedback(cr, op_x[(int)algdef[i].a], op_y[(int)algdef[i].a], in we_alg_draw()
259 op_x[(int)algdef[i].b], op_y[(int)algdef[i].b]); in we_alg_draw()
/dports/databases/postgis30/postgis-3.0.4/deps/wagyu/include/mapbox/geometry/wagyu/
H A Dring_util.hpp697 double op_y = static_cast<double>(op->y); in point_in_polygon() local
702 (values_are_equal(op_y, pt.y) && ((op_next_x > pt.x) == (op_x < pt.x)))) { in point_in_polygon()
706 if ((op_y < pt.y) != (op_next_y < pt.y)) { in point_in_polygon()
717 … double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); in point_in_polygon()
721 if ((d > 0.0) == (op_next_y > op_y)) { in point_in_polygon()
733 … double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); in point_in_polygon()
737 if ((d > 0.0) == (op_next_y > op_y)) { in point_in_polygon()
/dports/databases/postgis32/postgis-3.2.0/deps/wagyu/include/mapbox/geometry/wagyu/
H A Dring_util.hpp701 double op_y = static_cast<double>(op->y); in point_in_polygon() local
706 (values_are_equal(op_y, pt.y) && ((op_next_x > pt.x) == (op_x < pt.x)))) { in point_in_polygon()
710 if ((op_y < pt.y) != (op_next_y < pt.y)) { in point_in_polygon()
721 … double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); in point_in_polygon()
725 if ((d > 0.0) == (op_next_y > op_y)) { in point_in_polygon()
737 … double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); in point_in_polygon()
741 if ((d > 0.0) == (op_next_y > op_y)) { in point_in_polygon()
/dports/databases/postgis31/postgis-3.1.4/deps/wagyu/include/mapbox/geometry/wagyu/
H A Dring_util.hpp701 double op_y = static_cast<double>(op->y); in point_in_polygon() local
706 (values_are_equal(op_y, pt.y) && ((op_next_x > pt.x) == (op_x < pt.x)))) { in point_in_polygon()
710 if ((op_y < pt.y) != (op_next_y < pt.y)) { in point_in_polygon()
721 … double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); in point_in_polygon()
725 if ((d > 0.0) == (op_next_y > op_y)) { in point_in_polygon()
737 … double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); in point_in_polygon()
741 if ((d > 0.0) == (op_next_y > op_y)) { in point_in_polygon()
/dports/print/fontforge/fontforge-20201107/fontforge/
H A Dnonlineartrans.h45 op_x, op_y, /* Returns current x & y values, no operands */ enumerator
H A Dnonlineartrans.c47 { "y", op_y },
198 case op_value: case op_x: case op_y: in gete0()
400 case op_y: in evaluate_expr()
/dports/emulators/citra/citra-ac98458e0/src/video_core/renderer_opengl/
H A Dgl_shader_decompiler.cpp571 const CompareOp op_y = instr.common.compare_op.y.Value(); in CompileInstr() local
575 } else if (cmp_ops.find(op_y) == cmp_ops.end()) { in CompileInstr()
576 LOG_ERROR(HW_GPU, "Unknown compare mode {:x}", op_y); in CompileInstr()
577 } else if (op_x != op_y) { in CompileInstr()
581 cmp_ops.find(op_y)->second.first, src2); in CompileInstr()
/dports/emulators/citra-qt5/citra-ac98458e0/src/video_core/renderer_opengl/
H A Dgl_shader_decompiler.cpp571 const CompareOp op_y = instr.common.compare_op.y.Value(); in CompileInstr() local
575 } else if (cmp_ops.find(op_y) == cmp_ops.end()) { in CompileInstr()
576 LOG_ERROR(HW_GPU, "Unknown compare mode {:x}", op_y); in CompileInstr()
577 } else if (op_x != op_y) { in CompileInstr()
581 cmp_ops.find(op_y)->second.first, src2); in CompileInstr()
/dports/emulators/citra/citra-ac98458e0/src/video_core/shader/
H A Dshader_jit_x64_compiler.cpp636 Op op_y = instr.common.compare_op.y; in Compile_CMP() local
650 if (op_x == op_y) { in Compile_CMP()
657 bool invert_op_y = (op_y == Op::GreaterThan || op_y == Op::GreaterEqual); in Compile_CMP()
666 cmpps(lhs_y, rhs_y, cmp[op_y]); in Compile_CMP()
/dports/emulators/citra-qt5/citra-ac98458e0/src/video_core/shader/
H A Dshader_jit_x64_compiler.cpp636 Op op_y = instr.common.compare_op.y; in Compile_CMP() local
650 if (op_x == op_y) { in Compile_CMP()
657 bool invert_op_y = (op_y == Op::GreaterThan || op_y == Op::GreaterEqual); in Compile_CMP()
666 cmpps(lhs_y, rhs_y, cmp[op_y]); in Compile_CMP()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavfilter/
H A Dvsrc_gradients.c169 float op_y = point_y - origin_y; in project() local
170 float op_x_od = op_x * od_x + op_y * od_y; in project()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavfilter/
H A Dvsrc_gradients.c169 float op_y = point_y - origin_y; in project() local
170 float op_x_od = op_x * od_x + op_y * od_y; in project()
/dports/multimedia/handbrake/ffmpeg-4.4/libavfilter/
H A Dvsrc_gradients.c169 float op_y = point_y - origin_y; in project() local
170 float op_x_od = op_x * od_x + op_y * od_y; in project()
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/x86/kernel/
H A Duprobes.c600 #define COND(op_y, op_n, expr) \ argument
601 case 0x ## op_y: DO((expr) != 0) \
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/x86/kernel/
H A Duprobes.c600 #define COND(op_y, op_n, expr) \ argument
601 case 0x ## op_y: DO((expr) != 0) \
/dports/multimedia/libv4l/linux-5.13-rc2/arch/x86/kernel/
H A Duprobes.c600 #define COND(op_y, op_n, expr) \ argument
601 case 0x ## op_y: DO((expr) != 0) \
/dports/emulators/citra/citra-ac98458e0/externals/nihstro/docs/
H A Dnihcode_spec.md104 `cmp <expression1>, <expression2>, <op_x>, <op_y>`
105 …d `expression2` must evaluate to two-component float vectors. `op_x` and `op_y` specify comparison…
/dports/emulators/citra-qt5/citra-ac98458e0/externals/nihstro/docs/
H A Dnihcode_spec.md104 `cmp <expression1>, <expression2>, <op_x>, <op_y>`
105 …d `expression2` must evaluate to two-component float vectors. `op_x` and `op_y` specify comparison…
/dports/math/py-theano/Theano-1.0.5/theano/gof/tests/
H A Dtest_opt.py81 op_y = MyOp('OpY', x=1) variable
259 e = op1(op_y(x, y), z)
/dports/graphics/mupdf/mupdf-1.18.0-source/include/mupdf/pdf/
H A Dinterpret.h45 void (*op_y)(fz_context *ctx, pdf_processor *proc, float x1, float y1, float x3, float y3); member
/dports/emulators/yuzu/yuzu-0b47f7a46/src/video_core/shader/decode/
H A Dtexture.cpp121 const Node op_y = GetRegister(instr.gpr8.Value() + 1); in DecodeTexture() local
123 coords.push_back(op_y); in DecodeTexture()
/dports/graphics/mupdf/mupdf-1.18.0-source/source/pdf/
H A Dpdf-interpret.c631 case A('y'): if (proc->op_y) proc->op_y(ctx, proc, s[0], s[1], s[2], s[3]); break; in pdf_process_keyword()
/dports/graphics/gimp-app/gimp-2.10.30/plug-ins/ifs-compose/
H A Difs-compose.c124 gdouble op_y; member
1652 ifsDesign->op_y = (gdouble)event->y / allocation.width; in design_area_button_press()
1698 yo = (ifsDesign->op_y - ifsDesign->op_ycenter); in design_area_motion()
/dports/lang/php81/php-8.1.1/ext/pcre/pcre2lib/sljit/
H A DsljitNativeS390X.c1238 sljit_ins op_y; member
1255 ins20 = forms->op_y; in emit_commutative()
1338 ins20 = forms->op_y; in emit_non_commutative()
/dports/www/mod_php81/php-8.1.1/ext/pcre/pcre2lib/sljit/
H A DsljitNativeS390X.c1238 sljit_ins op_y; member
1255 ins20 = forms->op_y; in emit_commutative()
1338 ins20 = forms->op_y; in emit_non_commutative()

12