Lines Matching defs:offset
118 static inline u16 make_pair(size_t offset, size_t len, size_t index)
120 return ((offset - 1) << (12 - index)) |
124 static inline size_t parse_pair(u16 pair, size_t *offset, size_t index)
126 *offset = 1 + (pair >> (12 - index));
235 size_t offset, length;
261 /* Translate packed information into offset and length. */
262 length = parse_pair(pair, &offset, index);
264 /* Check offset for boundary. */
265 if (unc + offset > up)
274 *up = *(up - offset);