Lines Matching refs:wherep
526 reloc_jmpslot(Elf_Addr *wherep, Elf_Addr target, in reloc_jmpslot() argument
533 (void *)wherep, (void *)target); in reloc_jmpslot()
543 assert(wherep >= (Elf_Word *)obj->pltgot); in reloc_jmpslot()
544 assert(wherep < in reloc_jmpslot()
546 if (*wherep != target) in reloc_jmpslot()
547 *wherep = target; in reloc_jmpslot()
557 offset = target - (Elf_Addr)wherep; in reloc_jmpslot()
565 *wherep = 0x48000000 | (offset & 0x03fffffc); in reloc_jmpslot()
566 __syncicache(wherep, 4); in reloc_jmpslot()
588 distance = (Elf_Addr)pltcall - (Elf_Addr)(wherep + 1); in reloc_jmpslot()
594 wherep[1] = 0x48000000 | (distance & 0x03fffffc); in reloc_jmpslot()
595 __syncicache(wherep, 8); in reloc_jmpslot()