Home | History | Annotate | Download | only in kern

Lines Matching defs:xlen

2532 		size_t xlen;
2565 xlen = PAGE_SIZE - (base & PAGE_MASK);
2572 auio.uio_resid = xlen;
2580 for (j = 0; j < xlen; j++) {
2582 xlen = j + 1;
2589 if (len + xlen > *limit) {
2592 xlen = 0;
2594 xlen = *limit - len;
2598 error = (*cb)(cookie, arg, len, xlen);
2602 len += xlen;
2603 base += xlen;