Searched refs:x_new (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
D | GMRES.h | 159 VectorType x_new = y(k - 1) * VectorType::Unit(m, k - 1); in gmres() local 162 …x_new.tail(m - k + 1).applyHouseholderOnTheLeft(H.col(k - 1).tail(m - k), tau.coeffRef(k - 1), wor… in gmres() 165 x_new += y(i) * VectorType::Unit(m, i); in gmres() 167 …x_new.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.d… in gmres() 170 x += x_new; in gmres()
|
/external/libvorbis/doc/ |
D | 07-floor1.tex | 30 \item the induction step chooses a point x_new within an existing 32 from the existing line's y value at x_new (as plotted by the line) and 36 x_0,y_0 to x_new,y_new and from x_new,y_new to x_1,y_1. This step is 38 amplitude value at x_new so that later refinement is additionally 39 bounded at x_new.
|
/external/libvncserver/x11vnc/ |
D | userinput.c | 8343 int x_new = Ev[n].xconfigure.x; in read_events() local 8352 if (x_new != x || y_new != y) { in read_events() 9317 int x_new, y_new, w_new, h_new; in check_ncache() local 9341 x_new = ev.xconfigure.x; in check_ncache() 9352 if (nabs(x_new - x_old) >= dpy_x || nabs(y_new - y_old) >= dpy_y) { in check_ncache() 9357 r_new = sraRgnCreateRect(x_new, y_new, x_new+w_new, y_new+h_new); in check_ncache() 9376 …stderr, "old_wm[%d] +%04d+%04d +%04d+%04d old_wm: %d\n", i, x_old, y_old, x_new, y_new, old_wm); in check_ncache() 9725 int x_new, y_new, w_new, h_new; in check_ncache() local 9743 x_new = ev.xconfigure.x; in check_ncache() 9774 if (x_old != x_new || y_old != y_new) { in check_ncache() [all …]
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 1333 APInt x_new(BitWidth, 0); in sqrt() local 1345 x_new = (this->udiv(x_old) + x_old).udiv(two); in sqrt() 1346 if (x_old.ule(x_new)) in sqrt() 1348 x_old = x_new; in sqrt()
|