Home | History | Annotate | Download | only in toolutil

Lines Matching defs:offset

57         printf("  reserved (offset 8):          %6ld\n", (long)length);
67 printf(" reserved (offset 10): %6ld\n", (long)length);
108 printf(" reserved (offset 18): %6ld\n", (long)length);
133 int16_t offset = (int16_t)pair;
134 if(offset == 0) {
137 } else if(offset > 0) {
138 printf(" reorder [%04x, %04x[ by offset %02x to [%04x, %04x[\n",
139 start, limit, offset,
140 start + (offset << 8), limit + (offset << 8));
141 } else /* offset < 0 */ {
142 printf(" reorder [%04x, %04x[ by offset -%02x to [%04x, %04x[\n",
143 start, limit, -offset,
144 start + (offset << 8), limit + (offset << 8));