Home
last modified time | relevance | path

Searched refs:lpe (Results 1 – 25 of 1250) sorted by relevance

12345678910>>...50

/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/object/
H A Dsp-lpe-item.cpp234 if (!lpe) { in performOnePathEffect()
242 if (lpe->acceptsNumClicks() > 0 && !lpe->isReady()) { in performOnePathEffect()
330 if (lpe) { in optimizeTransforms()
372 if (lpe && !lpe->is_load) { in notifyTransform()
747 if (lpe) { in removeAllPathEffects()
846 if (lpe && (lpe->effectType() == type)) { in hasPathEffectOfType()
1009 if (lpe && !lpe->apply_to_clippath_and_mask) { in applyToClipPath()
1024 if (lpe && !lpe->apply_to_clippath_and_mask) { in applyToMask()
1093 if (lpe && (lpe->effectType() == type)) { in getPathEffectOfType()
1109 if (lpe && (lpe->effectType() == type)) { in getPathEffectOfType()
[all …]
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/live_effects/
H A Dlpe-angle_bisector.cpp100 LPEAngleBisector *lpe = dynamic_cast<LPEAngleBisector *>(_effect); in knot_set() local
104 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->dir); in knot_set()
105 lpe->length_left.param_set_value(-lambda); in knot_set()
113 LPEAngleBisector *lpe = dynamic_cast<LPEAngleBisector *>(_effect); in knot_set() local
117 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->dir); in knot_set()
118 lpe->length_right.param_set_value(lambda); in knot_set()
126 LPEAngleBisector const* lpe = dynamic_cast<LPEAngleBisector const*>(_effect); in knot_get() local
127 return lpe->ptA - lpe->dir * lpe->length_left; in knot_get()
133 LPEAngleBisector const* lpe = dynamic_cast<LPEAngleBisector const*>(_effect); in knot_get() local
134 return lpe->ptA + lpe->dir * lpe->length_right; in knot_get()
H A Dlpe-tangent_to_curve.cpp127 LPETangentToCurve* lpe = dynamic_cast<LPETangentToCurve *>(_effect); in knot_set() local
131 if ( !SP_IS_SHAPE(lpe->sp_lpe_item) ) { in knot_set()
139 lpe->t_attach.param_set_value(t0); in knot_set()
148 LPETangentToCurve *lpe = dynamic_cast<LPETangentToCurve *>(_effect); in knot_set() local
152 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->derivA); in knot_set()
153 lpe->length_left.param_set_value(-lambda); in knot_set()
165 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->derivA); in knot_set()
166 lpe->length_right.param_set_value(lambda); in knot_set()
175 return lpe->ptA; in knot_get()
182 return lpe->C; in knot_get()
[all …]
H A Dlpe-perp_bisector.cpp53 LPEPerpBisector const* lpe = dynamic_cast<LPEPerpBisector const*>(_effect); in knot_get() local
54 return Geom::Point(lpe->C); in knot_get()
59 LPEPerpBisector const* lpe = dynamic_cast<LPEPerpBisector const*>(_effect); in knot_get() local
60 return Geom::Point(lpe->D); in knot_get()
65 LPEPerpBisector *lpe = dynamic_cast<LPEPerpBisector *>(_effect); in bisector_end_set() local
66 if (!lpe) return; in bisector_end_set()
70 double lambda = Geom::nearest_time(s, lpe->M, lpe->perp_dir); in bisector_end_set()
72 lpe->C = lpe->M + lpe->perp_dir * lambda; in bisector_end_set()
73 lpe->length_left.param_set_value(lambda); in bisector_end_set()
75 lpe->D = lpe->M + lpe->perp_dir * lambda; in bisector_end_set()
[all …]
H A Dlpe-parallel.cpp127 LPEParallel *lpe = dynamic_cast<LPEParallel *>(_effect); in knot_set() local
131 double lambda = L2(s - lpe->offset_pt) * sgn(dot(s - lpe->offset_pt, lpe->dir)); in knot_set()
132 lpe->length_left.param_set_value(-lambda); in knot_set()
142 LPEParallel *lpe = dynamic_cast<LPEParallel *>(_effect); in knot_set() local
146 double lambda = L2(s - lpe->offset_pt) * sgn(dot(s - lpe->offset_pt, lpe->dir)); in knot_set()
147 lpe->length_right.param_set_value(lambda); in knot_set()
155 LPEParallel const *lpe = dynamic_cast<LPEParallel const*>(_effect); in knot_get() local
156 return lpe->C; in knot_get()
162 LPEParallel const *lpe = dynamic_cast<LPEParallel const*>(_effect); in knot_get() local
163 return lpe->D; in knot_get()
H A Dlpe-bendpath.cpp50 lpe->_knot_entity = nullptr; in ~KnotHolderEntityWidthBendPath()
199 LPEBendPath *lpe = dynamic_cast<LPEBendPath *> (_effect); in knot_set() local
215 lpe->prop_scale.param_set_value(-Geom::distance(s , ptA)/(lpe->original_height/2.0)); in knot_set()
217 lpe->prop_scale.param_set_value(Geom::distance(s , ptA)/(lpe->original_height/2.0)); in knot_set()
219 if (!lpe->original_height) { in knot_set()
220 lpe->prop_scale.param_set_value(0); in knot_set()
231 LPEBendPath *lpe = dynamic_cast<LPEBendPath *> (_effect); in knot_get() local
242 …Geom::Point result_point = Geom::Point::polar(ray.angle(), (lpe->original_height/2.0) * lpe->prop_… in knot_get()
243 lpe->helper_path.clear(); in knot_get()
244 if (!lpe->hide_knot) { in knot_get()
[all …]
H A Dlpeobject.cpp35 lpe(nullptr) in LivePathEffectObject()
84 if (this->lpe) { in release()
85 delete this->lpe; in release()
86 this->lpe = nullptr; in release()
104 if (this->lpe) { in set()
105 delete this->lpe; in set()
106 this->lpe = nullptr; in set()
111 this->lpe = Inkscape::LivePathEffect::Effect::New(this->effecttype, this); in set()
115 this->lpe = nullptr; in set()
134 if ((flags & SP_OBJECT_WRITE_ALL) || this->lpe) { in write()
[all …]
H A Dlpe-offset.cpp51 if (lpe) { in ~KnotHolderEntityOffsetPoint()
629 lpe->refresh_widgets = true; in knot_set()
632 lpe->offset_pt = s; in knot_set()
634 lpe->liveknot = true; in knot_set()
638 lpe->liveknot = false; in knot_set()
645 lpe->refresh_widgets = true; in knot_ungrabbed()
646 lpe->liveknot = false; in knot_ungrabbed()
657 if (!lpe) { in knot_get()
661 return lpe->offset_pt; in knot_get()
688 lpe->offset_pt = nearest; in knot_get()
[all …]
H A Dlpe-taperstroke.cpp485 if (!SP_IS_SHAPE(lpe->sp_lpe_item)) { in knot_set()
490 if (!SP_SHAPE(lpe->sp_lpe_item)->curve()) { in knot_set()
503 lpe->attach_start.param_set_value(t0); in knot_set()
517 lpe->start_shape.param_set_value((lpe->start_shape.get_value() + 1) % LAST_SHAPE); in knot_click()
518 lpe->start_shape.write_to_SVG(); in knot_click()
529 lpe->end_shape.param_set_value((lpe->end_shape.get_value() + 1) % LAST_SHAPE); in knot_click()
530 lpe->end_shape.write_to_SVG(); in knot_click()
541 if (!SP_IS_SHAPE(lpe->sp_lpe_item) ) { in knot_set()
555 lpe->attach_end.param_set_value(t0); in knot_set()
563 return lpe->start_attach_point; in knot_get()
[all …]
H A Dlpe-patternalongpath.cpp59 lpe->_knot_entity = nullptr; in ~KnotHolderEntityWidthPatternAlongPath()
309 if (sp_shape && lpe->original_height) { in knot_set()
325lpe->prop_scale.param_set_value(-Geom::distance(s , ptA)/(lpe->original_height/2.0)); in knot_set()
327 lpe->prop_scale.param_set_value(Geom::distance(s , ptA)/(lpe->original_height/2.0)); in knot_set()
330 if (!lpe->original_height) { in knot_set()
331 lpe->prop_scale.param_set_value(0); in knot_set()
334 prefs->setDouble("/live_effects/skeletal/width", lpe->prop_scale); in knot_set()
357 …Geom::Point result_point = Geom::Point::polar(ray.angle(), (lpe->original_height/2.0) * lpe->prop_… in knot_get()
358 lpe->helper_path.clear(); in knot_get()
359 if (!lpe->hide_knot) { in knot_get()
[all …]
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/po/
H A DPOTFILES.src.in126 ../src/live_effects/lpe-bool.cpp
128 ../src/live_effects/lpe-bspline.cpp
142 ../src/live_effects/lpe-gears.cpp
146 ../src/live_effects/lpe-knot.cpp
151 ../src/live_effects/lpe-offset.cpp
163 ../src/live_effects/lpe-ruler.cpp
166 ../src/live_effects/lpe-sketch.cpp
167 ../src/live_effects/lpe-slice.cpp
205 ../src/object/sp-lpe-item.cpp
313 ../src/ui/toolbar/lpe-toolbar.cpp
[all …]
H A DPOTFILES.skip7 ../src/live_effects/lpe-dynastroke.cpp
8 ../src/live_effects/lpe-lattice.cpp
9 ../src/live_effects/lpe-path_length.cpp
10 ../src/live_effects/lpe-recursiveskeleton.cpp
11 ../src/live_effects/lpe-skeleton.cpp
12 ../src/live_effects/lpe-test-doEffect-stack.cpp
13 ../src/live_effects/lpe-text_label.cpp
/dports/lang/perl5.34/perl-5.34.0/os2/
H A Dos2_base.t17 my $lpe = Cwd::extLibpath(1);
18 $lpe .= ';' unless $lpe and $lpe =~ /;$/;
28 ok Cwd::extLibpath_set("$lpe$cwd", 1);
30 $lpe = Cwd::extLibpath(1);
31 $lpe =~ s#\\#/#g;
33 like($lpe, qr/\Q$s_cwd/);
/dports/lang/perl5.30/perl-5.30.3/os2/
H A Dos2_base.t17 my $lpe = Cwd::extLibpath(1);
18 $lpe .= ';' unless $lpe and $lpe =~ /;$/;
28 ok Cwd::extLibpath_set("$lpe$cwd", 1);
30 $lpe = Cwd::extLibpath(1);
31 $lpe =~ s#\\#/#g;
33 like($lpe, qr/\Q$s_cwd/);
/dports/lang/perl5.32/perl-5.32.1/os2/
H A Dos2_base.t17 my $lpe = Cwd::extLibpath(1);
18 $lpe .= ';' unless $lpe and $lpe =~ /;$/;
28 ok Cwd::extLibpath_set("$lpe$cwd", 1);
30 $lpe = Cwd::extLibpath(1);
31 $lpe =~ s#\\#/#g;
33 like($lpe, qr/\Q$s_cwd/);
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/os2/
H A Dos2_base.t17 my $lpe = Cwd::extLibpath(1);
18 $lpe .= ';' unless $lpe and $lpe =~ /;$/;
28 ok Cwd::extLibpath_set("$lpe$cwd", 1);
30 $lpe = Cwd::extLibpath(1);
31 $lpe =~ s#\\#/#g;
33 like($lpe, qr/\Q$s_cwd/);
/dports/games/NBlood/NBlood-a1689a4/source/libxmp-lite/src/
H A Dsample.c176 if (xxs->len > xxs->lpe) { in unroll_loop()
177 start = xxs->lpe; in unroll_loop()
182 loop_size = xxs->lpe - xxs->lps; in unroll_loop()
233 if (xxs->lpe > xxs->len) { in libxmp_load_sample()
234 xxs->lpe = xxs->len; in libxmp_load_sample()
237 xxs->lps = xxs->lpe = 0; in libxmp_load_sample()
257 unroll_extralen = (xxs->lpe - xxs->lps) - in libxmp_load_sample()
258 (xxs->len - xxs->lpe); in libxmp_load_sample()
388 int lpe = xxs->lpe; in libxmp_load_sample() local
392 lpe += lpe - lps; in libxmp_load_sample()
[all …]
/dports/audio/libxmp/libxmp-4.5.0/src/loaders/
H A Dsample.c176 if (xxs->len > xxs->lpe) { in unroll_loop()
177 start = xxs->lpe; in unroll_loop()
182 loop_size = xxs->lpe - xxs->lps; in unroll_loop()
254 if (xxs->lpe > xxs->len) { in libxmp_load_sample()
255 xxs->lpe = xxs->len; in libxmp_load_sample()
258 xxs->lps = xxs->lpe = 0; in libxmp_load_sample()
278 unroll_extralen = (xxs->lpe - xxs->lps) - in libxmp_load_sample()
279 (xxs->len - xxs->lpe); in libxmp_load_sample()
409 int lpe = xxs->lpe; in libxmp_load_sample() local
413 lpe += lpe - lps; in libxmp_load_sample()
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/binutils/gas/config/
H A Dtc-s390.c901 struct s390_lpe *lpe;
942 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
964 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
965 if (lpe->nbytes == nbytes && lpe->reloc == reloc
970 if (lpe == NULL)
975 lpe = lpe_free_list;
983 lpe->ex = *exp_p;
1011 lpe->next = NULL;
1700 lpe = lpe_list;
1720 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
[all …]
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/binutils-2.16.1/gas/config/
H A Dtc-s390.c896 struct s390_lpe *lpe; local
937 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
959 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
960 if (lpe->nbytes == nbytes && lpe->reloc == reloc
965 if (lpe == NULL)
970 lpe = lpe_free_list;
978 lpe->ex = *exp_p;
1006 lpe->next = NULL;
1692 lpe = lpe_list;
1712 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
[all …]
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/binutils/gas/config/
H A Dtc-s390.c901 struct s390_lpe *lpe; local
942 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
964 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
965 if (lpe->nbytes == nbytes && lpe->reloc == reloc
970 if (lpe == NULL)
975 lpe = lpe_free_list;
983 lpe->ex = *exp_p;
1011 lpe->next = NULL;
1700 lpe = lpe_list;
1720 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
[all …]
/dports/devel/djgpp-binutils/binutils-2.17/gas/config/
H A Dtc-s390.c898 struct s390_lpe *lpe; local
939 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
961 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next)
962 if (lpe->nbytes == nbytes && lpe->reloc == reloc
967 if (lpe == NULL)
972 lpe = lpe_free_list;
980 lpe->ex = *exp_p;
1008 lpe->next = NULL;
1727 lpe = lpe_list;
1747 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc);
[all …]
/dports/devel/arm-elf-binutils/binutils-2.37/gas/config/
H A Dtc-s390.c973 struct s390_lpe *lpe; in s390_lit_suffix() local
1014 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next) in s390_lit_suffix()
1036 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next) in s390_lit_suffix()
1037 if (lpe->nbytes == nbytes && lpe->reloc == reloc in s390_lit_suffix()
1042 if (lpe == NULL) in s390_lit_suffix()
1047 lpe = lpe_free_list; in s390_lit_suffix()
1055 lpe->ex = *exp_p; in s390_lit_suffix()
1857 lpe = lpe_list; in s390_literals()
1874 lpe->nbytes), in s390_literals()
1879 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc); in s390_literals()
[all …]
/dports/devel/gnulibiberty/binutils-2.37/gas/config/
H A Dtc-s390.c973 struct s390_lpe *lpe; in s390_lit_suffix() local
1014 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next) in s390_lit_suffix()
1036 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next) in s390_lit_suffix()
1037 if (lpe->nbytes == nbytes && lpe->reloc == reloc in s390_lit_suffix()
1042 if (lpe == NULL) in s390_lit_suffix()
1047 lpe = lpe_free_list; in s390_lit_suffix()
1055 lpe->ex = *exp_p; in s390_lit_suffix()
1857 lpe = lpe_list; in s390_literals()
1874 lpe->nbytes), in s390_literals()
1879 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc); in s390_literals()
[all …]
/dports/devel/binutils/binutils-2.37/gas/config/
H A Dtc-s390.c973 struct s390_lpe *lpe; in s390_lit_suffix() local
1014 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next) in s390_lit_suffix()
1036 for (lpe = lpe_list; lpe != NULL; lpe = lpe->next) in s390_lit_suffix()
1037 if (lpe->nbytes == nbytes && lpe->reloc == reloc in s390_lit_suffix()
1042 if (lpe == NULL) in s390_lit_suffix()
1047 lpe = lpe_free_list; in s390_lit_suffix()
1055 lpe->ex = *exp_p; in s390_lit_suffix()
1857 lpe = lpe_list; in s390_literals()
1874 lpe->nbytes), in s390_literals()
1879 size, &lpe->ex, reloc_howto->pc_relative, lpe->reloc); in s390_literals()
[all …]

12345678910>>...50