Home
last modified time | relevance | path

Searched refs:v_next (Results 1 – 25 of 219) sorted by relevance

123456789

/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/rol/src/step/krylov/
H A DROL_MINRES.hpp122 auto v_next = clones_( x, "v_next" ); v_next->zero(); in run() local
146 A.apply( *v_next, *v_curr, itol ); in run()
148 if( iter>0 ) v_next->axpy(-H_[1],*v_prev); in run()
150 H_[2] = v_next->dot(*v_curr); in run()
152 v_next->axpy(-H_[2],*v_curr); in run()
154 H_[3] = v_next->norm(); in run()
156 v_next->scale(1.0/H_[3]); in run()
186 v_curr->set( *v_next ); in run()
/dports/cad/ngspice_rework/ngspice-35/src/frontend/
H A Drawfile.c88 for (v = pl->pl_dvecs; v; v = v->v_next) { in raw_write()
152 lv->v_next = v->v_next; in raw_write()
153 v->v_next = pl->pl_dvecs; in raw_write()
158 for (i = 0, v = pl->pl_dvecs; v; v = v->v_next) { in raw_write()
572 v->v_next = curpl->pl_dvecs; in raw_read()
586 nv = v->v_next; in raw_read()
587 v->v_next = curpl->pl_dvecs; in raw_read()
761 for (v = pl->pl_dvecs; v; v = v->v_next) { in spar_write()
816 lv->v_next = v->v_next; in spar_write()
817 v->v_next = pl->pl_dvecs; in spar_write()
[all …]
H A Ddiff.c185 for (v1 = p1->pl_dvecs; v1; v1 = v1->v_next) in com_diff()
192 for (v2 = p2->pl_dvecs; v2; v2 = v2->v_next) { in com_diff()
198 for (v1 = p1->pl_dvecs; v1; v1 = v1->v_next) { in com_diff()
219 for (v1 = p1->pl_dvecs; v1; v1 = v1->v_next) in com_diff()
226 for (v2 = p2->pl_dvecs; v2; v2 = v2->v_next) in com_diff()
235 for (v1 = p1->pl_dvecs; v1; v1 = v1->v_next) in com_diff()
243 for (v2 = p2->pl_dvecs; v2; v2 = v2->v_next) in com_diff()
256 for (v1 = p1->pl_dvecs; v1; v1 = v1->v_next) { in com_diff()
H A Dpostcoms.c83 for (ov = plot_cur->pl_dvecs; ov; ov = ov->v_next) { in com_remzerovec()
527 end->v_next = vv; in com_write()
538 end->v_next = NULL; in com_write()
562 vv->v_next = newplot.pl_dvecs; in com_write()
577 struct dvec *next_vv = vv->v_next; in com_write()
690 end->v_next = vv; in com_write_sparam()
701 end->v_next = NULL; in com_write_sparam()
725 vv->v_next = newplot.pl_dvecs; in com_write_sparam()
739 struct dvec *next_vv = vv->v_next; in com_write_sparam()
931 nv = v->v_next; in killplot()
[all …]
H A Dvectors.c63 for (d = pl->pl_dvecs; d; d = d->v_next) { in vec_rebuild_lookup_table()
215 for (d = pl->pl_dvecs; d; d = d->v_next) {\
398 for (v = pl->pl_dvecs; v; v = v->v_next) in plot_add()
818 nv->v_next = NULL; in vec_copy()
893 d->v_next = v_plot->pl_dvecs; in vec_new()
914 nd = d->v_next; in vec_gc()
954 pl->pl_dvecs = v->v_next; in vec_free_x()
960 for ( ; lv->v_next; lv = lv->v_next) { in vec_free_x()
968 if (lv && lv->v_next) { in vec_free_x()
969 lv->v_next = v->v_next; in vec_free_x()
[all …]
/dports/sysutils/screen/screen-4.8.0/
H A Dviewport.c44 vpn = vp->v_next; in RethinkDisplayViewports()
64 vp->v_next = cv->c_vplist; in RethinkDisplayViewports()
76 vp->v_next = cv->c_vplist; in RethinkDisplayViewports()
88 vp->v_next = cv->c_vplist; in RethinkDisplayViewports()
100 vp->v_next = cv->c_vplist; in RethinkDisplayViewports()
110 vp->v_next = cv->c_vplist; in RethinkDisplayViewports()
125 for (vp = cv->c_vplist; vp; vp = vp->v_next) { in RethinkViewportOffsets()
/dports/lang/gcc9/gcc-9.4.0/gcc/
H A Dspellcheck.c65 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
86 v_next[0] = i + 1; in get_edit_distance()
93 edit_distance_t deletion = v_next[j] + 1; in get_edit_distance()
103 v_next[j + 1] = cheapest; in get_edit_distance()
110 v_one_ago[j] = v_next[j]; in get_edit_distance()
118 printf ("%i ", v_next[j]); in get_edit_distance()
122 edit_distance_t result = v_next[len_s]; in get_edit_distance()
125 delete[] v_next; in get_edit_distance()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/
H A Dspellcheck.c65 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
86 v_next[0] = i + 1; in get_edit_distance()
93 edit_distance_t deletion = v_next[j] + 1; in get_edit_distance()
103 v_next[j + 1] = cheapest; in get_edit_distance()
110 v_one_ago[j] = v_next[j]; in get_edit_distance()
118 printf ("%i ", v_next[j]); in get_edit_distance()
122 edit_distance_t result = v_next[len_s]; in get_edit_distance()
125 delete[] v_next; in get_edit_distance()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/
H A Dspellcheck.c65 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
86 v_next[0] = i + 1; in get_edit_distance()
93 edit_distance_t deletion = v_next[j] + 1; in get_edit_distance()
103 v_next[j + 1] = cheapest; in get_edit_distance()
110 v_one_ago[j] = v_next[j]; in get_edit_distance()
118 printf ("%i ", v_next[j]); in get_edit_distance()
122 edit_distance_t result = v_next[len_s]; in get_edit_distance()
125 delete[] v_next; in get_edit_distance()
/dports/lang/gcc10/gcc-10.3.0/gcc/
H A Dspellcheck.c65 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
86 v_next[0] = i + 1; in get_edit_distance()
93 edit_distance_t deletion = v_next[j] + 1; in get_edit_distance()
103 v_next[j + 1] = cheapest; in get_edit_distance()
110 v_one_ago[j] = v_next[j]; in get_edit_distance()
118 printf ("%i ", v_next[j]); in get_edit_distance()
122 edit_distance_t result = v_next[len_s]; in get_edit_distance()
125 delete[] v_next; in get_edit_distance()
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/
H A Dspellcheck.c65 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
86 v_next[0] = i + 1; in get_edit_distance()
93 edit_distance_t deletion = v_next[j] + 1; in get_edit_distance()
103 v_next[j + 1] = cheapest; in get_edit_distance()
110 v_one_ago[j] = v_next[j]; in get_edit_distance()
118 printf ("%i ", v_next[j]); in get_edit_distance()
122 edit_distance_t result = v_next[len_s]; in get_edit_distance()
125 delete[] v_next; in get_edit_distance()
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/
H A Dspellcheck.c65 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
86 v_next[0] = i + 1; in get_edit_distance()
93 edit_distance_t deletion = v_next[j] + 1; in get_edit_distance()
103 v_next[j + 1] = cheapest; in get_edit_distance()
110 v_one_ago[j] = v_next[j]; in get_edit_distance()
118 printf ("%i ", v_next[j]); in get_edit_distance()
122 edit_distance_t result = v_next[len_s]; in get_edit_distance()
125 delete[] v_next; in get_edit_distance()
/dports/graphics/blender/blender-2.91.0/source/blender/bmesh/intern/
H A Dbmesh_delete.c67 BMVert *v, *v_next; in bmo_remove_tagged_verts() local
70 BM_ITER_MESH_MUTABLE (v, v_next, &iter, bm, BM_VERTS_OF_MESH) { in bmo_remove_tagged_verts()
79 BMVert *v, *v_next; in bmo_remove_tagged_verts_loose() local
82 BM_ITER_MESH_MUTABLE (v, v_next, &iter, bm, BM_VERTS_OF_MESH) { in bmo_remove_tagged_verts_loose()
243 BMVert *v, *v_next; in bm_remove_tagged_verts() local
246 BM_ITER_MESH_MUTABLE (v, v_next, &iter, bm, BM_VERTS_OF_MESH) { in bm_remove_tagged_verts()
255 BMVert *v, *v_next; in bm_remove_tagged_verts_loose() local
258 BM_ITER_MESH_MUTABLE (v, v_next, &iter, bm, BM_VERTS_OF_MESH) { in bm_remove_tagged_verts_loose()
H A Dbmesh_edgeloop.c82 BMVert *v_next; in bm_loop_build() local
101 v_next = BM_edge_other_vert(e_next, v); in bm_loop_build()
103 if (UNLIKELY(v_next == v_first)) { in bm_loop_build()
105 v_next = NULL; in bm_loop_build()
110 v_next = NULL; in bm_loop_build()
113 v_next = NULL; in bm_loop_build()
118 v = v_next; in bm_loop_build()
254 v_match[1] = v_next; in bm_loop_path_build_step()
257 v_match[0] = v_next; in bm_loop_path_build_step()
620 v_curr = v_next; in BM_edgeloop_calc_center()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/
H A Dspellcheck.c73 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
94 v_next[0] = (i + 1) * BASE_COST; in get_edit_distance()
108 edit_distance_t deletion = v_next[j] + BASE_COST; in get_edit_distance()
118 v_next[j + 1] = cheapest; in get_edit_distance()
125 v_one_ago[j] = v_next[j]; in get_edit_distance()
133 printf ("%i ", v_next[j]); in get_edit_distance()
137 edit_distance_t result = v_next[len_s]; in get_edit_distance()
140 delete[] v_next; in get_edit_distance()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/
H A Dspellcheck.c73 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
94 v_next[0] = (i + 1) * BASE_COST; in get_edit_distance()
108 edit_distance_t deletion = v_next[j] + BASE_COST; in get_edit_distance()
118 v_next[j + 1] = cheapest; in get_edit_distance()
125 v_one_ago[j] = v_next[j]; in get_edit_distance()
133 printf ("%i ", v_next[j]); in get_edit_distance()
137 edit_distance_t result = v_next[len_s]; in get_edit_distance()
140 delete[] v_next; in get_edit_distance()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/
H A Dspellcheck.c73 edit_distance_t *v_next = new edit_distance_t[len_s + 1]; in get_edit_distance() local
94 v_next[0] = (i + 1) * BASE_COST; in get_edit_distance()
108 edit_distance_t deletion = v_next[j] + BASE_COST; in get_edit_distance()
118 v_next[j + 1] = cheapest; in get_edit_distance()
125 v_one_ago[j] = v_next[j]; in get_edit_distance()
133 printf ("%i ", v_next[j]); in get_edit_distance()
137 edit_distance_t result = v_next[len_s]; in get_edit_distance()
140 delete[] v_next; in get_edit_distance()
/dports/lang/gcc11/gcc-11.2.0/gcc/
H A Dspellcheck.c73 edit_distance_t *v_next = new edit_distance_t[len_s + 1];
94 v_next[0] = (i + 1) * BASE_COST;
108 edit_distance_t deletion = v_next[j] + BASE_COST;
118 v_next[j + 1] = cheapest;
125 v_one_ago[j] = v_next[j];
133 printf ("%i ", v_next[j]);
137 edit_distance_t result = v_next[len_s];
140 delete[] v_next;
/dports/graphics/blender/blender-2.91.0/release/scripts/startup/bl_operators/
H A Dadd_mesh_torus.py105 v_next = v_prev + v_step
110 uv_data[loops[3]].uv = u_prev, v_next
111 uv_data[loops[2]].uv = u_next, v_next
113 if v_next > v_wrap:
114 v_prev = v_next - 1.0
116 v_prev = v_next
117 v_next = v_prev + v_step
/dports/cad/tkgate/tkgate-2.1/src/tkgate/
H A Dscope.c127 if (!v || !v->v_next) return 0; in isTransition()
154 while (T->t_current->v_next && T->t_current->v_next->v_time <= LTime) { in GTrace_adjust()
155 T->t_current = T->t_current->v_next; in GTrace_adjust()
240 if (V->v_next) in GTrace_drawTransValue()
323 if (!V->v_next) return; in GTrace_updateTransition()
440 for (V = T->t_current;V;V = V->v_next) { in GTrace_update()
442 x2 = GScope_getXPos(S,V->v_next,LTime); in GTrace_update()
446 if (V->v_next && V->v_next->v_time > S->s_leftTime + S->s_range) break; in GTrace_update()
1222 T->t_last = T->t_last->v_next; in trace_observe()
1358 for (V = T->t_first;V;V = V->v_next) { in delete_GTrace()
[all …]
/dports/cad/ngspice_rework/ngspice-35/src/
H A Dngsconvert.c189 end->v_next = v; in oldread()
197 for (v = pl->pl_dvecs; v; v = v->v_next) { in oldread()
207 for (v = pl->pl_dvecs; v; v = v->v_next) in oldread()
210 for (v = pl->pl_dvecs; v; v = v->v_next) in oldread()
244 for (v = pl->pl_dvecs; v; v = v->v_next) { in oldread()
251 for (v = pl->pl_dvecs; v; v = v->v_next) { in oldread()
283 for (v = pl->pl_dvecs; v; v = v->v_next) { in oldwrite()
316 for (v = pl->pl_dvecs; v; v = v->v_next) { in oldwrite()
327 for (v = pl->pl_dvecs; v; v = v->v_next) { in oldwrite()
343 for (v = pl->pl_dvecs; v; v = v->v_next) { in oldwrite()
/dports/cad/horizon-eda/horizon-2.1.0/src/core/tools/
H A Dtool_round_off_vertex.cpp37 auto v_next = wrap_index(vertex_idx + 1); in begin() local
49 vn = (Coordd(poly->vertices.at(v_next).position) - p0).normalize(); in begin()
53 …delta_max = std::min((poly->vertices.at(v_next).position - poly->vertices.at(vertex_idx).position)… in begin()
72 if (v_next == 0) { in begin()
77 vxn = &*poly->vertices.emplace(poly->vertices.begin() + v_next, Coordi()); in begin()
/dports/x11-toolkits/qt5-virtualkeyboard/kde-qtvirtualkeyboard-5.15.2p4/src/plugins/pinyin/3rdparty/pinyin/share/
H A Dspellingtable.cpp45 size_t v_next = value; in get_odd_next() local
47 size_t v_next_sqrt = (size_t)sqrt(v_next); in get_odd_next()
51 if (v_next % v_dv == 0) { in get_odd_next()
58 return v_next; in get_odd_next()
60 v_next++; in get_odd_next()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/ethernet/i825xx/
H A D82596.c282 struct i596_rbd *v_next; member
479 cmd = cmd->v_next; in i596_display_data()
488 rfd = rfd->v_next; in i596_display_data()
495 rbd = rbd->v_next; in i596_display_data()
557 rbd->v_next = rbd+1; in init_rx_bufs()
570 rbd->v_next = lp->rbds; in init_rx_bufs()
577 rfd->v_next = rfd+1; in init_rx_bufs()
588 rfd->v_next = lp->rfds; in init_rx_bufs()
867 lp->rfd_head = rfd->v_next; in i596_rx()
883 lp->cmd_head = ptr->v_next; in i596_cleanup_cmd()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/ethernet/i825xx/
H A D82596.c282 struct i596_rbd *v_next; member
479 cmd = cmd->v_next; in i596_display_data()
488 rfd = rfd->v_next; in i596_display_data()
495 rbd = rbd->v_next; in i596_display_data()
557 rbd->v_next = rbd+1; in init_rx_bufs()
570 rbd->v_next = lp->rbds; in init_rx_bufs()
577 rfd->v_next = rfd+1; in init_rx_bufs()
588 rfd->v_next = lp->rfds; in init_rx_bufs()
867 lp->rfd_head = rfd->v_next; in i596_rx()
883 lp->cmd_head = ptr->v_next; in i596_cleanup_cmd()
[all …]

123456789