Lines Matching refs:RVAToAddr
109 return RVAToAddr(
118 // Don't use the virtual RVAToAddr.
120 PEImage::RVAToAddr(section->VirtualAddress));
162 RVAToAddr(exports->AddressOfFunctions));
172 PBYTE function = reinterpret_cast<PBYTE>(RVAToAddr(*export_entry));
201 PDWORD names = reinterpret_cast<PDWORD>(RVAToAddr(exports->AddressOfNames));
209 LPCSTR name = reinterpret_cast<LPCSTR>(RVAToAddr(*middle));
231 RVAToAddr(exports->AddressOfNameOrdinals));
245 PVOID section_start = RVAToAddr(section->VirtualAddress);
268 PDWORD functions = reinterpret_cast<PDWORD>(RVAToAddr(
270 PDWORD names = reinterpret_cast<PDWORD>(RVAToAddr(exports->AddressOfNames));
271 PWORD ordinals = reinterpret_cast<PWORD>(RVAToAddr(
275 PVOID func = RVAToAddr(functions[count]);
284 name = reinterpret_cast<LPCSTR>(RVAToAddr(names[hint]));
325 PVOID address = RVAToAddr(base->VirtualAddress + (*reloc & 0x0FFF));
347 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name));
349 RVAToAddr(import->OriginalFirstThunk));
351 RVAToAddr(import->FirstThunk));
376 RVAToAddr(name_table->u1.ForwarderString));
417 RVAToAddr(delay_descriptor->rvaDLLName));
419 RVAToAddr(delay_descriptor->rvaINT));
421 RVAToAddr(delay_descriptor->rvaIAT));
423 RVAToAddr(delay_descriptor->rvaBoundIAT));
425 RVAToAddr(delay_descriptor->rvaUnloadIAT));
473 RVAToAddr(name_table->u1.ForwarderString));
522 LPVOID address = RVAToAddr(rva);
539 // Don't follow the virtual RVAToAddr, use the one on the base.
541 reinterpret_cast<DWORD>(PEImage::RVAToAddr(
549 PVOID PEImage::RVAToAddr(DWORD rva) const {
556 PVOID PEImageAsData::RVAToAddr(DWORD rva) const {
560 PVOID in_memory = PEImage::RVAToAddr(rva);
566 return PEImage::RVAToAddr(disk_offset);