Lines Matching defs:from
69 /* need to recalculate linear cache, start from old size */
180 /* read the next extended block from the current one */
697 unsigned from, to;
701 from = pos & (PAGE_SIZE - 1);
702 to = from + len;
716 tmp = (page->index << PAGE_SHIFT) + from;
725 tmp = min(bsize - boff, to - from);
727 memcpy(AFFS_DATA(bh) + boff, data + from, tmp);
732 from += tmp;
741 while (from + bsize <= to) {
746 memcpy(AFFS_DATA(bh), data + from, bsize);
770 from += bsize;
773 if (from < to) {
778 tmp = min(bsize, to - from);
780 memcpy(AFFS_DATA(bh), data + from, tmp);
805 from += tmp;
812 tmp = (page->index << PAGE_SHIFT) + from;