Lines Matching defs:boff
529 u32 bidx, boff, bsize;
538 boff = tmp % bsize;
544 tmp = min(bsize - boff, to - pos);
547 memcpy(data + pos, AFFS_DATA(bh) + boff, tmp);
552 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);
696 u32 bidx, boff, bsize;
718 boff = tmp % bsize;
719 if (boff) {
725 tmp = min(bsize - boff, to - from);
726 BUG_ON(boff + tmp > bsize || tmp > bsize);
727 memcpy(AFFS_DATA(bh) + boff, data + from, tmp);