Lines Matching defs:bytes
201 * @len: the length (in bytes) of the buffer
211 * The size of the buffer is in bytes, but is it assumed that it is
236 /* Mask off any bits which are more than len bytes from the start */
353 u32 bytes;
374 bytes = min_t(u32, len / GFS2_NBBY, (end - start));
375 ptr = memchr_inv(start, 0, bytes);
376 chunk_size = ((ptr == NULL) ? bytes : (ptr - start));
403 * @buflen: the length (in bytes) of the buffer
744 u32 bytes_left, bytes;
762 bytes = bytes_left;
765 bi->bi_bytes = bytes;
766 bi->bi_blocks = bytes * GFS2_NBBY;
769 bytes = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_rgrp);
772 bi->bi_bytes = bytes;
773 bi->bi_blocks = bytes * GFS2_NBBY;
776 bytes = bytes_left;
779 bi->bi_bytes = bytes;
780 bi->bi_blocks = bytes * GFS2_NBBY;
783 bytes = sdp->sd_sb.sb_bsize -
787 bi->bi_bytes = bytes;
788 bi->bi_blocks = bytes * GFS2_NBBY;
791 bytes_left -= bytes;