Searched refs:rel_offset (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp402 static size_t GetInstructionSize(uptr address, size_t* rel_offset = nullptr) {
499 if (rel_offset)
500 *rel_offset = 2;
545 if (rel_offset)
546 *rel_offset = 3;
630 size_t rel_offset = 0; local
631 size_t instruction_size = GetInstructionSize(from + cursor, &rel_offset);
634 if (rel_offset) {
636 uptr relocated_offset = *(u32*)(to + cursor + rel_offset) - delta;
641 *(u32*)(to + cursor + rel_offset)
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp855 uint64_t rel_offset; local
856 rel_offset = target->ReadUnsignedIntegerFromMemory(
858 if (error.Success() && rel_offset != UINT64_MAX) {
861 dyn_base + (offset - GetAddressByteSize()) + rel_offset;

Completed in 279 milliseconds