Lines Matching defs:symAddr
581 STATIC INT32 OsDoReloc(const DynSharedObj *dso, INT32 type, UINTPTR relocAddr, UINT32 addend, UINTPTR symAddr)
588 *(UINTPTR *)relocAddr = symAddr + addend;
591 *(UINTPTR *)relocAddr = symAddr + ((addend != 0) ? addend : *(UINTPTR *)relocAddr);
609 UINTPTR relocAddr, symAddr;
620 symAddr = 0;
622 symAddr = OsFindSym(dso, symIdx);
623 if (symAddr == 0) {
630 ret = OsDoReloc(dso, type, relocAddr, addend, symAddr);
820 VOID *symAddr = NULL;
840 symAddr = (VOID *)(dso->loadBase + sym->st_value);
842 return symAddr;