Lines Matching defs:bytes
384 int bytes, int offset)
397 for (i = start_index; i <= end_index && bytes > 0; i++,
398 bytes -= PAGE_SIZE, offset += PAGE_SIZE) {
400 int avail = buffer ? min_t(int, bytes, PAGE_SIZE) : 0;
402 TRACE("bytes %d, i %d, available_bytes %d\n", bytes, i, avail);
604 int bytes;
606 /* Last page (if present) may have trailing bytes not filled */
607 bytes = res % PAGE_SIZE;
608 if (index == file_end && bytes && last_page)
609 memzero_page(last_page, bytes,
610 PAGE_SIZE - bytes);