Searched refs:w_new (Results 1 – 2 of 2) sorted by relevance
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
D | MINRES.h | 52 VectorType w_new(precond.solve(v_new)); // initialize w_new in minres() 54 RealScalar beta_new2(v_new.dot(w_new)); in minres() 59 w_new /= beta_new; in minres() 88 const VectorType w(w_new); // NOT SURE IF CREATING w EVERY ITERATION IS EFFICIENT in minres() 92 w_new = precond.solve(v_new); // overwrite w_new in minres() 93 beta_new2 = v_new.dot(w_new); // compute beta_new in minres() 97 w_new /= beta_new; // overwrite w_new for next iteration in minres()
|
/external/libvncserver/x11vnc/ |
D | userinput.c | 8345 int w_new = Ev[n].xconfigure.width; in read_events() local 8348 if (w_new != wd || h_new != ht) { in read_events() 9317 int x_new, y_new, w_new, h_new; in check_ncache() local 9343 w_new = ev.xconfigure.width; in check_ncache() 9351 if (w_new == w_old && h_new == h_old) { in check_ncache() 9357 r_new = sraRgnCreateRect(x_new, y_new, x_new+w_new, y_new+h_new); in check_ncache() 9725 int x_new, y_new, w_new, h_new; in check_ncache() local 9745 w_new = ev.xconfigure.width; in check_ncache() 9779 if (w_old != w_new || h_old != h_new) { in check_ncache() 9782 …f(stderr, " INVALIDATE bs: 0x%lx wh: %dx%d %dx%d \n", win, w_old, h_old, w_new, h_new); in check_ncache() [all …]
|