Lines Matching defs:base
8 #include "base/win/pe_image.h"
10 namespace base {
15 #error This code is not tested on x64. Please make sure all the base unit tests\
164 return functions + ordinal - exports->Base;
233 *ordinal = ordinals[lower - names] + static_cast<WORD>(exports->Base);
265 UINT ordinal_base = exports->Base;
312 PIMAGE_BASE_RELOCATION base = reinterpret_cast<PIMAGE_BASE_RELOCATION>(
318 while (base->SizeOfBlock) {
319 PWORD reloc = reinterpret_cast<PWORD>(base + 1);
320 UINT num_relocs = (base->SizeOfBlock - sizeof(IMAGE_BASE_RELOCATION)) /
325 PVOID address = RVAToAddr(base->VirtualAddress + (*reloc & 0x0FFF));
331 base = reinterpret_cast<PIMAGE_BASE_RELOCATION>(
332 reinterpret_cast<char*>(base) + base->SizeOfBlock);
539 // Don't follow the virtual RVAToAddr, use the one on the base.
570 } // namespace base