Lines Matching refs:reloff
389 size_t reloff = rela - obj->pltrela;
409 if (reloff < 32768) {
410 /* li r11,reloff */
411 *where++ = 0x39600000 | reloff;
413 /* lis r11,ha(reloff) */
414 /* addi r11,lo(reloff) */
415 *where++ = 0x3d600000 | ha(reloff);
416 *where++ = 0x396b0000 | lo(reloff);
437 _rtld_relocate_plt_object(const Obj_Entry *obj, const Elf_Rela *rela, int reloff, Elf_Addr *tp)
499 jmptab[reloff] = value;
501 if (reloff < 32768) {
502 /* li r11,reloff */
503 *where++ = 0x39600000 | reloff;
515 /* lis r11,ha(reloff) */
516 /* addi r11,lo(reloff) */
517 *where++ = 0x3d600000 | ha(reloff);
518 *where++ = 0x396b0000 | lo(reloff);
534 _rtld_bind(const Obj_Entry *obj, Elf_Word reloff)
536 const Elf_Rela *rela = obj->pltrela + reloff;
543 err = _rtld_relocate_plt_object(obj, rela, reloff, &new_value);
559 int reloff;
561 for (rela = obj->pltrela, reloff = 0; rela < obj->pltrelalim; rela++, reloff++) {
562 if (_rtld_relocate_plt_object(obj, rela, reloff, NULL) < 0)