Searched refs:start_blk (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/sys/geom/uncompress/
H A Dg_uncompress.c172 uint32_t start_blk, i; local
202 * Get start_blk from user request:
203 * start_blk = bp2->bio_offset / 65536 = 65540/65536 = 1
205 * pos(in stream from parent) = sc->offsets[start_blk] % bsize =
212 start_blk = bp2->bio_offset / sc->blksz;
215 pos = sc->offsets[start_blk] % bsize;
218 DPRINTF(("%s: done: bio_length %jd bio_completed %jd start_blk %d, "
221 start_blk, (intmax_t)pos, (intmax_t)upos,
224 for (i = start_blk; upos < bp2->bio_length; i++) {
227 uoff = i == start_blk
327 uint32_t start_blk, end_blk; local
[all...]
/freebsd-10-stable/sys/geom/uzip/
H A Dg_uzip.c224 size_t i, start_blk, end_blk, zsize; local
235 start_blk = ofs / sc->blksz;
236 KASSERT(start_blk < sc->nblocks, ("start_blk out of range"));
240 for (; BLK_IS_NIL(sc, start_blk) && start_blk < end_blk; start_blk++) {
244 DPRINTF_BLK(GUZ_DBG_IO, start_blk, ("%s/%s: %p/%ju: "
253 if (start_blk == end_blk) {
265 for (i = start_blk
[all...]
/freebsd-10-stable/sys/dev/mrsas/
H A Dmrsas_fp.c1156 u_int64_t start_blk = io_info->pdBlock; local
1177 cdb[12] = (u_int8_t)((start_blk >> 56) & 0xff);
1178 cdb[13] = (u_int8_t)((start_blk >> 48) & 0xff);
1179 cdb[14] = (u_int8_t)((start_blk >> 40) & 0xff);
1180 cdb[15] = (u_int8_t)((start_blk >> 32) & 0xff);
1181 cdb[16] = (u_int8_t)((start_blk >> 24) & 0xff);
1182 cdb[17] = (u_int8_t)((start_blk >> 16) & 0xff);
1183 cdb[18] = (u_int8_t)((start_blk >> 8) & 0xff);
1184 cdb[19] = (u_int8_t)(start_blk & 0xff);
1215 (start_blk <
[all...]

Completed in 106 milliseconds