Lines Matching refs:symbolValue
485 void *symbolValue = nullptr; in relocateSymbol() local
506 … symbolValue = reinterpret_cast<void *>((intptr_t)elfHeader + symbol.st_value + target->sh_offset); in relocateSymbol()
527 uint32_t lo = (uint32_t)(intptr_t)symbolValue | thumb; in relocateSymbol()
533 uint32_t hi = (uint32_t)(intptr_t)(symbolValue) >> 16; in relocateSymbol()
550 *patchSite = (int32_t)((intptr_t)symbolValue + *patchSite); in relocateSymbol()
553 *patchSite = (int32_t)((intptr_t)symbolValue + *patchSite - (intptr_t)patchSite); in relocateSymbol()
561 return symbolValue; in relocateSymbol()
570 void *symbolValue = nullptr; in relocateSymbol() local
591 … symbolValue = reinterpret_cast<void *>((intptr_t)elfHeader + symbol.st_value + target->sh_offset); in relocateSymbol()
609 *patchSite64 = (int64_t)((intptr_t)symbolValue + *patchSite64 + relocation.r_addend); in relocateSymbol()
612 …*patchSite32 = (int32_t)((intptr_t)symbolValue + *patchSite32 - (intptr_t)patchSite32 + relocation… in relocateSymbol()
615 *patchSite32 = (int32_t)((intptr_t)symbolValue + *patchSite32 + relocation.r_addend); in relocateSymbol()
622 return symbolValue; in relocateSymbol()