Home | History | Annotate | Download | only in src

Lines Matching defs:Vi

467                     _Tp *Vi = Vt + i*vstep, *Vj = Vt + j*vstep;
468 k = vblas.givens(Vi, Vj, n, c, s);
472 _Tp t0 = c*Vi[k] + s*Vj[k];
473 _Tp t1 = -s*Vi[k] + c*Vj[k];
474 Vi[k] = t0; Vj[k] = t1;