Lines Matching defs:bytes
1179 * bio_advance - increment/complete a bio by some number of bytes
1181 * @bytes: number of bytes to complete
1183 * This updates bi_sector, bi_size and bi_idx; if the number of bytes to
1189 void bio_advance(struct bio *bio, unsigned bytes)
1192 bio_integrity_advance(bio, bytes);
1194 bio_crypt_advance(bio, bytes);
1195 bio_advance_iter(bio, &bio->bi_iter, bytes);
1204 unsigned bytes;
1210 bytes = min(src_bv.bv_len, dst_bv.bv_len);
1217 bytes);
1224 bio_advance_iter(src, src_iter, bytes);
1225 bio_advance_iter(dst, dst_iter, bytes);
1236 * min(src->bi_size, dst->bi_size) bytes (or the equivalent for lists of bios).
1254 * copies min(src->bi_size, dst->bi_size) bytes (or the equivalent for lists of
1568 * @front_pad: Number of bytes to allocate in front of the returned bio
1574 * to ask for a number of bytes to be allocated in front of the bio.