Lines Matching refs:chunksz
7783 unsigned long chunksz, in put_value() argument
7788 location += (size - chunksz); in put_value()
7790 for (; size; size -= chunksz, location -= chunksz, x >>= (chunksz * 8)) in put_value()
7792 switch (chunksz) in put_value()
7819 unsigned long chunksz, in get_value() argument
7827 BFD_ASSERT (chunksz <= sizeof (x) in get_value()
7828 && size >= chunksz in get_value()
7829 && chunksz != 0 in get_value()
7830 && (size % chunksz) == 0 in get_value()
7834 if (chunksz == sizeof (x)) in get_value()
7836 BFD_ASSERT (size == chunksz); in get_value()
7844 shift = 8 * chunksz; in get_value()
7846 for (; size; size -= chunksz, location += chunksz) in get_value()
7848 switch (chunksz) in get_value()
7876 unsigned long *chunksz, /* in bytes */ in decode_complex_addend() argument
7886 * chunksz = (encoded >> 22) & 0xF; in decode_complex_addend()
7900 unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p; in bfd_elf_perform_complex_relocation() local
7910 &chunksz, &lsb0_p, &signed_p, in bfd_elf_perform_complex_relocation()
7921 x = get_value (wordsz, chunksz, input_bfd, contents + rel->r_offset); in bfd_elf_perform_complex_relocation()
7928 lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len, in bfd_elf_perform_complex_relocation()
7954 put_value (wordsz, chunksz, input_bfd, x, contents + rel->r_offset); in bfd_elf_perform_complex_relocation()