Lines Matching defs:offset
117 * We started with an offset, and we didn't reset the
118 * offset to 0 in a failure case, so start from 0 to
274 static inline void emit_byte(struct seq_file *m, unsigned int offset, u8 byte)
276 if ((offset & 0xf) == 0) {
277 if (offset != 0)
279 seq_printf(m, "%08x:", offset);
281 if ((offset & 0x1) == 0)
290 unsigned int offset = 0;
306 emit_byte(m, offset, byte);
309 offset++;
316 emit_byte(m, offset, byte);
317 offset++;
319 if (offset)