Home | History | Annotate | Download | only in libvncserver

Lines Matching defs:nlines

3242     int nlines;
3266 nlines = (UPDATE_BUF_SIZE - cl->ublen) / bytesPerLine;
3269 if (nlines > h)
3270 nlines = h;
3275 cl->scaledScreen->paddedWidthInBytes, w, nlines);
3277 cl->ublen += nlines * bytesPerLine;
3278 h -= nlines;
3283 /* buffer full - flush partial rect and do another nlines */
3288 fbptr += (cl->scaledScreen->paddedWidthInBytes * nlines);
3290 nlines = (UPDATE_BUF_SIZE - cl->ublen) / bytesPerLine;
3291 if (nlines == 0) {