Lines Matching defs:boff
532 size_t bidx, boff, bsize;
541 boff = tmp % bsize;
547 tmp = min(bsize - boff, to - pos);
549 memcpy_to_folio(folio, pos, AFFS_DATA(bh) + boff, tmp);
553 boff = 0;
563 u32 bidx, boff;
572 boff = size % bsize;
573 if (boff) {
577 tmp = min(bsize - boff, newsize - size);
578 BUG_ON(boff + tmp > bsize || tmp > bsize);
579 memset(AFFS_DATA(bh) + boff, 0, tmp);
697 u32 bidx, boff, bsize;
719 boff = tmp % bsize;
720 if (boff) {
726 tmp = min(bsize - boff, to - from);
727 BUG_ON(boff + tmp > bsize || tmp > bsize);
728 memcpy(AFFS_DATA(bh) + boff, data + from, tmp);