Lines Matching refs:offset

40  * each having an offset and a length.  The extents are logically
42 * picks up. Which extent a given "virtual offset" belongs to is
55 * require the list be sorted by offset to work, and that's the typical
102 sp_ext_offset_t ext_offset; /* starting offset */
137 sp_ext_node_t **head, sp_ext_offset_t offset, sp_ext_length_t length,
144 sp_ext_offset_t offset);
189 mp_watermark_t *wm, sp_ext_offset_t offset, md_error_t *ep);
361 * make sure block offset does not overflow 2^64 bytes.
753 * slblk - the starting offset of the device to check
846 * PURPOSE: used for sorted list inserts to build a list sorted by offset
864 * offset - the physical offset of this extent in sectors
886 sp_ext_offset_t offset,
906 newext->ext_offset = offset;
919 /* the first node has a bigger offset, so insert before it */
928 * find the next node whose offset is greater than
1026 * offset - the offset contained by the node to find
1028 * RETURNS: sp_ext_node_t * - the node containing the requested offset
1030 * PURPOSE: finds a node in a list containing the requested offset
1031 * (inclusive). If multiple nodes contain this offset then
1035 * *The list MUST be sorted by offset for this function to work.*
1040 sp_ext_offset_t offset
1046 /* check if the offset lies within this extent */
1047 if ((offset >= ext->ext_offset) &&
1048 (offset < ext->ext_offset + ext->ext_length)) {
1072 * *The list MUST be sorted by offset for this function to work.*
1158 * offset for this function to work properly.
1185 * alloc_offset - the offset of the allocation
1255 * last_off - the last offset already allocated.
1358 * The offset test reflects the
1809 * subtract from offset and add to the length
2484 /* record the extent offset */
2589 * offset - the offset of the watermark to read (sectors)
2593 * PURPOSE: seeks out to the requested offset and reads a watermark.
2603 sp_ext_offset_t offset,
2610 * make sure block offset does not overflow 2^64 bytes and it's a
2613 assert(offset <= (1LL << (64 - DEV_BSHIFT)));
2622 read_params.offset = offset;
2629 "Extent header read failed, block %llu.\n"), offset);
3854 sp_ext_offset_t offset;
3865 case 'o': /* offset in the partition */
3876 offset = tmp_size;
3895 &extlist, offset, length,
5558 "%s: virtual offset for extent %u "
5569 "%s: extent %u at offset %llu, "
5740 * offset, length, sequence number, set, and name are compared.