Lines Matching defs:overflow
1530 overflowed(Address value, Overflow_check overflow)
1532 if (overflow == CHECK_SIGNED)
1537 else if (overflow == CHECK_UNSIGNED)
1542 else if (overflow == CHECK_BITFIELD)
1553 rela(unsigned char* view, Address value, Overflow_check overflow)
1558 return overflowed<valsize>(value, overflow);
1567 Overflow_check overflow)
1576 return overflowed<valsize>(value >> right_shift, overflow);
1582 rela_ua(unsigned char* view, Address value, Overflow_check overflow)
1585 return overflowed<valsize>(value, overflow);
1594 Overflow_check overflow)
1603 return overflowed<valsize>(value >> right_shift, overflow);
1619 addr32(unsigned char* view, Address value, Overflow_check overflow)
1620 { return This::template rela<32,32>(view, value, overflow); }
1624 addr32_u(unsigned char* view, Address value, Overflow_check overflow)
1625 { return This::template rela_ua<32,32>(view, value, overflow); }
1629 addr24(unsigned char* view, Address value, Overflow_check overflow)
1632 value, overflow);
1633 if (overflow != CHECK_NONE && (value & 3) != 0)
1640 addr16(unsigned char* view, Address value, Overflow_check overflow)
1641 { return This::template rela<16,16>(view, value, overflow); }
1645 addr16_u(unsigned char* view, Address value, Overflow_check overflow)
1646 { return This::template rela_ua<16,16>(view, value, overflow); }
1650 addr16_ds(unsigned char* view, Address value, Overflow_check overflow)
1652 Status stat = This::template rela<16,16>(view, 0, 0xfffc, value, overflow);
1653 if (overflow != CHECK_NONE && (value & 3) != 0)
1690 overflow)
1692 Status stat = This::template rela<32,16>(view, 0, 0xfffc, value, overflow);
1693 if (overflow != CHECK_NONE && (value & 3) != 0)
7453 typename Reloc::Overflow_check overflow = Reloc::CHECK_NONE;
7460 overflow = Reloc::CHECK_BITFIELD;
7465 overflow = Reloc::CHECK_SIGNED;
7469 overflow = Reloc::CHECK_BITFIELD;
7476 overflow = Reloc::CHECK_BITFIELD;
7478 overflow = Reloc::CHECK_LOW_INSN;
7508 overflow = Reloc::CHECK_HIGH_INSN;
7521 overflow = Reloc::CHECK_LOW_INSN;
7540 overflow = Reloc::CHECK_SIGNED;
7544 if (overflow == Reloc::CHECK_LOW_INSN
7545 || overflow == Reloc::CHECK_HIGH_INSN)
7551 overflow = Reloc::CHECK_BITFIELD;
7552 else if (overflow == Reloc::CHECK_LOW_INSN
7559 overflow = Reloc::CHECK_UNSIGNED;
7561 overflow = Reloc::CHECK_SIGNED;
7586 status = Reloc::addr32(view, value, overflow);
7594 status = Reloc::addr32(view, value, overflow);
7599 status = Reloc::addr32_u(view, value, overflow);
7606 overflow);
7613 status = Reloc::addr16_ds(view, value, overflow);
7636 status = Reloc::addr16(view, value, overflow);
7640 status = Reloc::addr16_u(view, value, overflow);
7737 status = Reloc::addr16_ds(view, value, overflow);
7746 status = Reloc::addr14(view, value, overflow);
7809 _("relocation overflow"));