Home | History | Annotate | Download | only in bfd

Lines Matching defs:check

272 		 If you put a patch like that into BFD you need to check all
308 to other formats (the thing to check for would be whether
354 might have overflowed before we get here. For a correct check we
362 bfd_vma check;
367 check = relocation >> (howto->rightshift - howto->bitpos);
369 check = relocation << (howto->bitpos - howto->rightshift);
382 check |= ((bfd_vma) - 1
385 if ((bfd_signed_vma) check > reloc_signed_max
386 || (bfd_signed_vma) check < reloc_signed_min)
398 if ((bfd_vma) check > reloc_unsigned_max)
409 if (((bfd_vma) check & ~reloc_bits) != 0
410 && (((bfd_vma) check & ~reloc_bits)
419 check |= ((bfd_vma) - 1
422 if (((bfd_vma) check & ~reloc_bits)
600 /* Check for overflow. FIXME: We may drop bits during the addition
601 which we don't check for. We must either check at every single
607 bfd_vma check;
614 check = relocation;
620 check = relocation >> howto->rightshift;
625 signed_check = check;
627 signed_check = (check
651 check += add;
656 check += add >> howto->bitpos;
690 if (check > reloc_unsigned_max)
701 if ((check & ~reloc_bits) != 0
779 /* Sanity check the address. */