Home | History | Annotate | Download | only in vndcompress

Lines Matching defs:window

156 	/* Don't bother if blkno is already in the window.  */
192 /* Don't bother if [start, end) does not cover our window. */
278 * window is the whole offset table.
379 /* Initialize window of all ones. */
383 /* Write the window to every position in the table. */
409 /* Write out the first window with the first offset. */
438 * Write the window unless we just did that and were
439 * interrupted before we could move the window.
473 * window.
478 /* If it's already in our window, we're good to go. */
483 /* Otherwise, write out the current window and choose a new one. */
492 uint64_t *window;
496 * Mark the window as being updated so nobody tries to write it
500 window = offtab->ot_window;
504 /* Fill the window with ones. */
506 window[i] = ~(uint64_t)0;
508 /* Restore the window as ready again. */
510 offtab->ot_window = window;