Lines Matching defs:offset
29 uintptr_t offset = 0;
34 RelativeAddress(HMODULE handle, uintptr_t offset) noexcept
35 : root(reinterpret_cast<uintptr_t>(handle)), offset(offset) {}
37 RelativeAddress(uintptr_t root, uintptr_t offset) noexcept
38 : root(root), offset(offset) {}
42 return reinterpret_cast<const T*>(root + offset);
51 return {root, offset + amount};
55 return {root, offset + amount};
74 // At relative offset 0x3C is a 32 bit offset to the COFF signature, 4 bytes