Home
last modified time | relevance | path

Searched refs:new_v (Results 1 – 25 of 537) sorted by relevance

12345678910>>...22

/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/2D/Source/Clip/
H A Dclpply.c64 int new_v = 0; in gr_clip_poly() local
93 tplist[j++] = &tlist[new_v]; in gr_clip_poly()
94 new_v += k; in gr_clip_poly()
108 new_v += k; in gr_clip_poly()
136 cplist[j++] = &tlist[new_v]; in gr_clip_poly()
137 new_v += k; in gr_clip_poly()
151 new_v += k; in gr_clip_poly()
180 new_v += k; in gr_clip_poly()
194 new_v += k; in gr_clip_poly()
223 new_v += k; in gr_clip_poly()
[all …]
/dports/graphics/netpbm/netpbm-10.91.01/converter/other/pamtosvg/
H A Dvector.c61 vector_type new_v; in normalize() local
69 new_v.dx = v.dx; in normalize()
70 new_v.dy = v.dy; in normalize()
71 new_v.dz = v.dz; in normalize()
74 return new_v; in normalize()
83 vector_type new_v; in Vadd() local
89 return new_v; in Vadd()
107 vector_type new_v; in Vmult_scalar() local
113 return new_v; in Vmult_scalar()
182 vector_type new_v; in Vabs() local
[all …]
/dports/math/cgal/CGAL-5.3/include/CGAL/Envelope_2/
H A DEnv_divide_and_conquer_2_impl.h391 Vertex_handle new_v; in _merge_single_interval() local
712 v_leftmost = new_v; in _merge_two_intervals()
813 v_leftmost = new_v; in _merge_two_intervals()
834 v_leftmost = new_v; in _merge_two_intervals()
1023 new_v->set_left(new_e); in _append_vertex()
1041 return (new_v); in _append_vertex()
1220 new_v->set_left(e); in _split_edge()
1221 new_v->set_right(new_e); in _split_edge()
1223 new_e->set_left(new_v); in _split_edge()
1229 e->set_right(new_v); in _split_edge()
[all …]
/dports/graphics/autotrace/autotrace-0.31.1/
H A Dvector.c63 vector_type new_v; in normalize() local
76 new_v.dx = v.dx; in normalize()
77 new_v.dy = v.dy; in normalize()
78 new_v.dz = v.dz; in normalize()
81 return new_v; in normalize()
88 vector_type new_v; in Vadd() local
94 return new_v; in Vadd()
108 vector_type new_v; in Vmult_scalar() local
114 return new_v; in Vmult_scalar()
171 vector_type new_v; in Vabs() local
[all …]
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/autotrace/
H A Dvector.c52 vector_type new_v; in normalize() local
62 new_v.dx = v.dx; in normalize()
63 new_v.dy = v.dy; in normalize()
64 new_v.dz = v.dz; in normalize()
67 return new_v; in normalize()
72 vector_type new_v; in Vadd() local
78 return new_v; in Vadd()
88 vector_type new_v; in Vmult_scalar() local
94 return new_v; in Vmult_scalar()
139 vector_type new_v; in Vabs() local
[all …]
/dports/graphics/gimp-app/gimp-2.10.30/plug-ins/selection-to-path/
H A Dvector.c70 vector_type new_v; in normalize() local
75 new_v.dx = v.dx / m; in normalize()
76 new_v.dy = v.dy / m; in normalize()
78 return new_v; in normalize()
85 vector_type new_v; in Vadd() local
90 return new_v; in Vadd()
104 vector_type new_v; in Vmult_scalar() local
106 new_v.dx = v.dx * r; in Vmult_scalar()
109 return new_v; in Vmult_scalar()
162 vector_type new_v; in Vabs() local
[all …]
/dports/misc/vxl/vxl-3.3.2/core/vil/algo/
H A Dvil_flood_fill.h22 T v, T new_v, in vil_flood_fill_row() argument
30 while (ilo>0 && *p==v) { ilo--; *p=new_v; p-=istep; } in vil_flood_fill_row()
46 T v, T new_v) in vil_flood_fill4() argument
62 image(i,j)=new_v; in vil_flood_fill4()
65 vil_flood_fill_row(image,i,j,v,new_v,ilo,ihi); in vil_flood_fill4()
99 T v, T new_v, in vil_flood_fill4() argument
117 image(i,j)=new_v; in vil_flood_fill4()
154 T v, T new_v) in vil_flood_fill8() argument
170 image(i,j)=new_v; in vil_flood_fill8()
210 T v, T new_v, in vil_flood_fill8() argument
[all …]
/dports/net/cloud-init/cloud-init-21.4/cloudinit/mergers/
H A Dm_list.py58 def merge_same_index(old_v, new_v): argument
62 if isinstance(new_v, (list, tuple)) and self._recurse_array:
63 return self._merger.merge(old_v, new_v)
64 if isinstance(new_v, str) and self._recurse_str:
65 return self._merger.merge(old_v, new_v)
66 if isinstance(new_v, (dict)) and self._recurse_dict:
67 return self._merger.merge(old_v, new_v)
68 return new_v
H A Dm_dict.py43 def merge_same_key(old_v, new_v): argument
45 return new_v
46 if isinstance(new_v, (list, tuple)) and self._recurse_array:
47 return self._merger.merge(old_v, new_v)
48 if isinstance(new_v, str) and self._recurse_str:
49 return self._merger.merge(old_v, new_v)
50 if isinstance(new_v, (dict)) and self._recurse_dict:
51 return self._merger.merge(old_v, new_v)
/dports/math/z3/z3-z3-4.8.13/src/tactic/core/
H A Dreduce_invertible_tactic.cpp67 expr_ref new_v(m); in operator ()() local
72 sub.insert(p, new_v); in operator ()()
271 new_v = fst_arg; in rewrite_unconstr()
294 new_v = v; in is_invertible()
312 new_v = v; in is_invertible()
361 new_v = v; in is_invertible()
410 new_v = v; in is_invertible()
425 (*mc)->hide(new_v); in is_invertible()
525 expr_ref new_v(m); in reduce_quantifier() local
539 sub.insert(p, new_v); in reduce_quantifier()
[all …]
/dports/math/py-z3-solver/z3-z3-4.8.10/src/tactic/core/
H A Dreduce_invertible_tactic.cpp67 expr_ref new_v(m); in operator ()() local
72 sub.insert(p, new_v); in operator ()()
250 new_v = fst_arg; in rewrite_unconstr()
273 new_v = v; in is_invertible()
291 new_v = v; in is_invertible()
330 new_v = m_bv.mk_numeral(0, sz); in is_invertible()
389 new_v = v; in is_invertible()
404 (*mc)->hide(new_v); in is_invertible()
472 expr_ref new_v(m); in reduce_quantifier() local
486 sub.insert(p, new_v); in reduce_quantifier()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Drepl_uninit.rs16 let new_v = might_panic(taken_v); in main() localVariable
17 std::mem::forget(mem::replace(&mut v, new_v)); in main()
22 let new_v = might_panic(taken_v); in main() localVariable
23 std::mem::forget(mem::replace(&mut v, new_v)); in main()
28 let new_v = might_panic(taken_v); in main() localVariable
29 std::mem::forget(mem::replace(&mut v, new_v)); in main()
/dports/math/cgal/CGAL-5.3/include/CGAL/
H A Dedge_aware_upsample_point_set.h154 Rich_point& new_v = rich_point_set[new_point_index]; in update_new_point() local
179 new_v.neighbors.clear(); in update_new_point()
189 new_v.neighbors.push_back(t.index); in update_new_point()
245 new_v.pt = new_v.pt + new_v.normal * project_dist; in update_new_point()
249 new_v.neighbors.clear(); in update_new_point()
258 new_v.neighbors.push_back(t.index); in update_new_point()
259 t.neighbors.push_back(new_v.index); in update_new_point()
564 Rich_point new_v; in edge_aware_upsample_point_set() local
567 new_v.pt = v.pt + (diff_v_base * FT(0.5)); in edge_aware_upsample_point_set()
570 unsigned int new_point_index = new_v.index; in edge_aware_upsample_point_set()
[all …]
/dports/www/firefox/firefox-99.0/third_party/python/pip/pip/_internal/locations/
H A D__init__.py213 new_v = pathlib.Path(getattr(new, k))
215 if old_v == new_v:
226 and old_v.parent == new_v.parent
228 and new_v.name.startswith("pypy")
240 and old_v.parent.parent == new_v.parent
272 and len(new_v.parts) > 1
273 and new_v.parts[1] == "usr"
274 and (len(new_v.parts) < 3 or new_v.parts[2] != "local")
299 warning_contexts.append((old_v, new_v, f"scheme.{k}"))
328 for old_v, new_v, key in warning_contexts:
[all …]
/dports/www/p5-Template-Stash-AutoEscape/Template-Stash-AutoEscape-0.03/lib/Template/Stash/
H A DAutoEscape.pm63 my $new_v;
66 $new_v = $v->[0];
68 $new_v = get_raw_args($v, $escaped_class);
69 if ($new_v) {
72 $new_v = $v;
75 $new_v = $v;
77 push @raw_args, $new_v;
/dports/finance/gnucash/gnucash-4.9/libgnucash/engine/
H A Dgnc-rational.cpp206 GncRational new_v; in round_to_numeric() local
207 while (new_v.num().isZero()) in round_to_numeric()
212 if (new_v.is_big()) in round_to_numeric()
215 new_v = GncRational(); in round_to_numeric()
223 return new_v; in round_to_numeric()
228 GncRational new_v; in round_to_numeric() local
229 while (new_v.num().isZero()) in round_to_numeric()
246 new_v = convert<RoundType::half_down>(m_den / divisor); in round_to_numeric()
247 if (new_v.is_big()) in round_to_numeric()
250 new_v = GncRational(); in round_to_numeric()
[all …]
/dports/misc/ytree/ytree-2.03/
H A Dprofile.c112 Viewer *v, *new_v; in ReadProfile() local
318 if(( new_v = malloc( sizeof(*new_v) ) ) ) { in ReadProfile()
321 new_v->next = NULL; in ReadProfile()
322 if(new_v->ext == NULL || new_v->cmd == NULL) { in ReadProfile()
324 if(new_v->ext) in ReadProfile()
325 free(new_v->ext); in ReadProfile()
326 if(new_v->cmd) in ReadProfile()
327 free(new_v->cmd); in ReadProfile()
328 free(new_v); in ReadProfile()
330 v->next = new_v; in ReadProfile()
[all …]
/dports/mail/squirrelmail/squirrelmail.stable/squirrelmail/plugins/administrator/
H A Doptions.php364 if ( sqgetGlobalVar($e, $new_v, SQ_POST) ) {
365 $v = intval( $new_v );
376 if ( sqgetGlobalVar($e, $new_v, SQ_POST) ) {
377 $v = $new_v;
396 if ( sqgetGlobalVar($e, $new_v, SQ_POST) ) {
397 $v = '"' . $new_v . '"';
417 if ( sqgetGlobalVar($e, $new_v, SQ_POST) ) {
418 $v = '"' . $new_v . '"';
430 $v = '"' . $new_v . '"';
446 $v = $new_v;
[all …]
/dports/devel/efl/efl-1.25.1/src/examples/ecore/
H A Decore_promise2_example.c130 Eina_Value new_v = EINA_VALUE_EMPTY; in _alternate_error_cb() local
136 eina_value_set(&new_v, ENETDOWN); in _alternate_error_cb()
148 return new_v; in _alternate_error_cb()
186 Eina_Value new_v; in _chain_no_errors_cb() local
188 eina_value_setup(&new_v, EINA_VALUE_TYPE_INT); in _chain_no_errors_cb()
196 eina_value_set(&new_v, count * 2); in _chain_no_errors_cb()
197 return new_v; in _chain_no_errors_cb()
237 Eina_Value new_v; in _delayed_resolve() local
238 eina_value_setup(&new_v, EINA_VALUE_TYPE_STRING); in _delayed_resolve()
239 eina_value_set(&new_v, "Hello from inner future"); in _delayed_resolve()
[all …]
/dports/net/kamailio/kamailio-5.4.5/src/modules/auth/
H A Dnc.c191 unsigned int v, new_v; in nc_new() local
200 new_v=v & ~(((1<<(sizeof(nc_t)*8))-1)<< (r*sizeof(nc_t)*8)); in nc_new()
201 }while(atomic_cmpxchg_int((int*)&nc_array[i], v, new_v)!=v); in nc_new()
220 unsigned int v, crt_nc, new_v; in nc_check_val() local
238 new_v=(v & ~(((1U<<(sizeof(nc_t)*8))-1)<< (r*8)) )| in nc_check_val()
240 }while(atomic_cmpxchg_int((int*)&nc_array[i], v, new_v)!=v); in nc_check_val()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/i915/gvt/
H A Dmmio_context.c406 u32 old_v, new_v; in switch_mocs() local
425 new_v = vgpu_vreg_t(next, offset); in switch_mocs()
429 if (old_v != new_v) in switch_mocs()
443 new_v = vgpu_vreg_t(next, l3_offset); in switch_mocs()
445 new_v = gen9_render_mocs.l3cc_table[i]; in switch_mocs()
447 if (old_v != new_v) in switch_mocs()
475 u32 old_v, new_v; in switch_mmio() local
518 new_v = vgpu_vreg_t(next, mmio->reg) | in switch_mmio()
521 new_v = vgpu_vreg_t(next, mmio->reg); in switch_mmio()
528 new_v = mmio->value; in switch_mmio()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/i915/gvt/
H A Dmmio_context.c406 u32 old_v, new_v; in switch_mocs() local
425 new_v = vgpu_vreg_t(next, offset); in switch_mocs()
429 if (old_v != new_v) in switch_mocs()
443 new_v = vgpu_vreg_t(next, l3_offset); in switch_mocs()
445 new_v = gen9_render_mocs.l3cc_table[i]; in switch_mocs()
447 if (old_v != new_v) in switch_mocs()
475 u32 old_v, new_v; in switch_mmio() local
518 new_v = vgpu_vreg_t(next, mmio->reg) | in switch_mmio()
521 new_v = vgpu_vreg_t(next, mmio->reg); in switch_mmio()
528 new_v = mmio->value; in switch_mmio()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/i915/gvt/
H A Dmmio_context.c406 u32 old_v, new_v; in switch_mocs() local
425 new_v = vgpu_vreg_t(next, offset); in switch_mocs()
429 if (old_v != new_v) in switch_mocs()
443 new_v = vgpu_vreg_t(next, l3_offset); in switch_mocs()
445 new_v = gen9_render_mocs.l3cc_table[i]; in switch_mocs()
447 if (old_v != new_v) in switch_mocs()
475 u32 old_v, new_v; in switch_mmio() local
518 new_v = vgpu_vreg_t(next, mmio->reg) | in switch_mmio()
521 new_v = vgpu_vreg_t(next, mmio->reg); in switch_mmio()
528 new_v = mmio->value; in switch_mmio()
[all …]
/dports/www/p5-HTML-Parser/HTML-Parser-3.76/eg/
H A Dhrefsub79 my $new_v = edit($v, $attrname, $tagname);
80 next if $new_v eq $v;
81 $new_v =~ s/\"/&quot;/g; # since we quote with ""
82 substr($text, $v_offset, $v_len) = qq("$new_v");
/dports/misc/vxl/vxl-3.3.2/contrib/gel/gevd/
H A Dgevd_clean_edgels.cxx253 if (!e||!new_v) in split_edge()
271 double d = new_v->point()->distance(vsol_point_2d(curve_point)); in split_edge()
315 if (!dc->Split(*(new_v->GetLocation()), dc1, dc2)) in split_edge()
322 e1 = new vtol_edge_2d(v1, new_v); e2 = new vtol_edge_2d(new_v, v2); in split_edge()
377 vtol_vertex_2d_sptr new_v = nullptr; in JumpGaps() local
380 bool end_vertex = this->closest_vertex(e, p, radius, new_v); in JumpGaps()
381 if (!new_v) continue; // should always have a new_v in JumpGaps()
388 if (!this->split_edge(e, new_v, e1, e2)) in JumpGaps()
404 if (this->edge_exists(v, new_v, intersection)) in JumpGaps()
410 vtol_edge_2d_sptr new_edge = new vtol_edge_2d(v, new_v); in JumpGaps()
[all …]

12345678910>>...22