Lines Matching refs:wherep
537 reloc_jmpslot(Elf_Addr *wherep, Elf_Addr target, in reloc_jmpslot() argument
544 (void *)wherep, (void *)target); in reloc_jmpslot()
554 assert(wherep >= (Elf_Word *)obj->pltgot); in reloc_jmpslot()
555 assert(wherep < in reloc_jmpslot()
557 if (*wherep != target) in reloc_jmpslot()
558 *wherep = target; in reloc_jmpslot()
568 offset = target - (Elf_Addr)wherep; in reloc_jmpslot()
576 *wherep = 0x48000000 | (offset & 0x03fffffc); in reloc_jmpslot()
577 __syncicache(wherep, 4); in reloc_jmpslot()
599 distance = (Elf_Addr)pltcall - (Elf_Addr)(wherep + 1); in reloc_jmpslot()
605 wherep[1] = 0x48000000 | (distance & 0x03fffffc); in reloc_jmpslot()
606 __syncicache(wherep, 8); in reloc_jmpslot()