Lines Matching defs:bytes
217 * @len: the length (in bytes) of the buffer
227 * The size of the buffer is in bytes, but is it assumed that it is
252 /* Mask off any bits which are more than len bytes from the start */
379 u32 bytes;
400 bytes = min_t(u32, len / GFS2_NBBY, (end - start));
401 ptr = memchr_inv(start, 0, bytes);
402 chunk_size = ((ptr == NULL) ? bytes : (ptr - start));
429 * @buflen: the length (in bytes) of the buffer
760 u32 bytes_left, bytes;
778 bytes = bytes_left;
781 bi->bi_bytes = bytes;
782 bi->bi_blocks = bytes * GFS2_NBBY;
785 bytes = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_rgrp);
788 bi->bi_bytes = bytes;
789 bi->bi_blocks = bytes * GFS2_NBBY;
792 bytes = bytes_left;
795 bi->bi_bytes = bytes;
796 bi->bi_blocks = bytes * GFS2_NBBY;
799 bytes = sdp->sd_sb.sb_bsize -
803 bi->bi_bytes = bytes;
804 bi->bi_blocks = bytes * GFS2_NBBY;
807 bytes_left -= bytes;