Home | History | Annotate | Download | only in puffin

Lines Matching refs:offset

41   ByteExtent(uint64_t offset, uint64_t length)
42 : offset(offset), length(length) {}
45 return this->length == other.length && this->offset == other.offset;
48 uint64_t offset;
53 BitExtent(uint64_t offset, uint64_t length)
54 : offset(offset), length(length) {}
57 return this->length == other.length && this->offset == other.offset;
60 uint64_t offset;