Lines Matching refs:reltab
126 ELFSectionRelTableTy *reltab, in relocateARM() argument
135 for (size_t i = 0; i < reltab->size(); ++i) { in relocateARM()
137 ELFRelocTy *rel = (*reltab)[i]; in relocateARM()
359 ELFSectionRelTableTy *reltab, in relocateX86_64() argument
367 for (size_t i = 0; i < reltab->size(); ++i) { in relocateX86_64()
369 ELFRelocTy *rel = (*reltab)[i]; in relocateX86_64()
413 ELFSectionRelTableTy *reltab, in relocateX86_32() argument
421 for (size_t i = 0; i < reltab->size(); ++i) { in relocateX86_32()
423 ELFRelocTy *rel = (*reltab)[i]; in relocateX86_32()
461 ELFSectionRelTableTy *reltab, in relocateMIPS() argument
469 for (size_t i = 0; i < reltab->size(); ++i) { in relocateMIPS()
471 ELFRelocTy *rel = (*reltab)[i]; in relocateMIPS()
550 for (size_t j = i + 1; j < reltab->size(); j++) { in relocateMIPS()
551 ELFRelocTy *this_rel = (*reltab)[j]; in relocateMIPS()
587 for (size_t j = i + 1; j < reltab->size(); j++) { in relocateMIPS()
588 ELFRelocTy *this_rel = (*reltab)[j]; in relocateMIPS()
679 ELFSectionRelTableTy *reltab = in relocate() local
681 rsl_assert(reltab && "Relocation section can't be NULL."); in relocate()
699 relocateARM(find_sym, context, reltab, need_rel); in relocate()
702 relocateX86_32(find_sym, context, reltab, need_rel); in relocate()
705 relocateX86_64(find_sym, context, reltab, need_rel); in relocate()
708 relocateMIPS(find_sym, context, reltab, need_rel); in relocate()