Lines Matching defs:root
28 uintptr_t root;
32 : root(reinterpret_cast<uintptr_t>(handle)) {}
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};
59 return {root, Read<uint32_t>()};