Lines Matching refs:off
17 off Offset // byte offset of data within the aggregate info
61 u.base = b.off
79 u.off = b.off
88 // offsetToUnit returns the index of the unit containing offset off.
90 func (d *Data) offsetToUnit(off Offset) int {
91 // Find the unit after off
93 return d.unit[i].off > off
99 if u.off <= off && off < u.off+Offset(len(u.data)) {