Lines Matching refs:Elf32_Word
731 Elf32_Word nbuckets; in translate_offs()
732 Elf32_Word symndx; in translate_offs()
733 Elf32_Word maskwords; in translate_offs()
734 Elf32_Word shift2; in translate_offs()
742 Elf32_Word nbuckets = header->nbuckets; in translate_offs()
743 Elf32_Word symndx = header->symndx; in translate_offs()
746 * sizeof (Elf32_Word) in translate_offs()
752 if (nbuckets > SIZE_MAX / sizeof (Elf32_Word)) in translate_offs()
757 nbuckets * sizeof (Elf32_Word), in translate_offs()
761 const Elf32_Word *const buckets = data->d_buf; in translate_offs()
762 Elf32_Word maxndx = symndx; in translate_offs()
763 for (Elf32_Word bucket = 0; bucket < nbuckets; ++bucket) in translate_offs()
768 + nbuckets * sizeof (Elf32_Word)); in translate_offs()
769 hasharr_at += (maxndx - symndx) * sizeof (Elf32_Word); in translate_offs()
774 sizeof (Elf32_Word), in translate_offs()
777 && (*(const Elf32_Word *) data->d_buf & 1u)) in translate_offs()
783 hasharr_at += sizeof (Elf32_Word); in translate_offs()