Lines Matching defs:offset
408 /* table of offset markers, that give the offset in the compressed stream
495 * Use the offset relative to the lowest value
501 long long offset;
505 offset = table[i]->addr - relative_base;
506 overflow = (offset < 0 || offset > UINT_MAX);
508 offset = table[i]->addr;
509 overflow = (offset < 0 || offset > INT_MAX);
511 offset = relative_base - table[i]->addr - 1;
512 overflow = (offset < INT_MIN || offset >= 0);
521 printf("\t.long\t%#x /* %s */\n", (int)offset, table[i]->sym);