OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImageBase
(Results
1 - 25
of
108
) sorted by relevancy
1
2
3
4
5
/src/sys/external/bsd/gnu-efi/dist/gnuefi/
crt0-efi-aarch64.S
26
.globl
ImageBase
27
ImageBase
:
30
.long pe_header -
ImageBase
// Offset to the PE header.
52
.long _start -
ImageBase
// AddressOfEntryPoint
53
.long _start -
ImageBase
// BaseOfCode
56
.quad 0 //
ImageBase
67
.long _edata -
ImageBase
// SizeOfImage
70
.long _start -
ImageBase
// SizeOfHeaders
92
.long _start -
ImageBase
// VirtualAddress
94
.long _start -
ImageBase
// PointerToRawDat
[
all
...]
crt0-efi-arm.S
26
.globl
ImageBase
27
ImageBase
:
30
.long pe_header -
ImageBase
// Offset to the PE header.
53
.long _start -
ImageBase
// AddressOfEntryPoint
54
.long _start -
ImageBase
// BaseOfCode
58
.long 0 //
ImageBase
69
.long _edata -
ImageBase
// SizeOfImage
72
.long _start -
ImageBase
// SizeOfHeaders
117
.long _start -
ImageBase
// VirtualAddress
119
.long _start -
ImageBase
// PointerToRawDat
[
all
...]
crt0-efi-riscv64.S
30
.globl
ImageBase
31
ImageBase
:
34
.long pe_header -
ImageBase
// Offset to the PE header.
56
.long _start -
ImageBase
// AddressOfEntryPoint
57
.long _start -
ImageBase
// BaseOfCode
60
.quad 0 //
ImageBase
71
.long _edata -
ImageBase
// SizeOfImage
74
.long _start -
ImageBase
// SizeOfHeaders
112
.long _start -
ImageBase
// VirtualAddress
114
.long _start -
ImageBase
// PointerToRawDat
[
all
...]
crt0-efi-mips64el.S
27
.globl
ImageBase
28
ImageBase
:
31
.long pe_header -
ImageBase
// Offset to the PE header.
53
.long _start -
ImageBase
// AddressOfEntryPoint
54
.long _start -
ImageBase
// BaseOfCode
57
.quad 0 //
ImageBase
68
.long _edata -
ImageBase
// SizeOfImage
71
.long _start -
ImageBase
// SizeOfHeaders
116
.long _start -
ImageBase
// VirtualAddress
118
.long _start -
ImageBase
// PointerToRawDat
[
all
...]
crt0-efi-x86_64.S
49
lea
ImageBase
(%rip), %rdi
elf_x86_64_fbsd_efi.lds
10
ImageBase
= .;
elf_ia32_efi.lds
9
ImageBase
= .;
elf_ia32_fbsd_efi.lds
9
ImageBase
= .;
elf_ia64_efi.lds
9
ImageBase
= .;
elf_x86_64_efi.lds
10
ImageBase
= .;
crt0-efi-ia32.S
53
addl $
ImageBase
-0b,%eax # %eax = ldbase
crt0-efi-ia64.S
46
movl out0=@gprel(
ImageBase
) // out0 <-
ImageBase
(ldbase)
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFX86_64.h
32
uint64_t
ImageBase
;
36
if (!
ImageBase
) {
37
ImageBase
= std::numeric_limits<uint64_t>::max();
43
// be included in the
ImageBase
calculation.
45
ImageBase
= std::min(
ImageBase
, Section.getLoadAddress());
47
return
ImageBase
;
60
ImageBase
(0) {}
112
// ADDR32NB requires an offset less than 2GB from '
ImageBase
'.
115
const uint64_t
ImageBase
= getImageBase()
[
all
...]
RuntimeDyldCOFFAArch64.h
71
uint64_t
ImageBase
;
75
if (!
ImageBase
) {
76
ImageBase
= std::numeric_limits<uint64_t>::max();
82
// be included in the
ImageBase
calculation.
84
ImageBase
= std::min(
ImageBase
, Section.getLoadAddress());
86
return
ImageBase
;
93
ImageBase
(0) {}
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
COFFModuleDefinition.h
31
uint64_t
ImageBase
= 0;
/src/sys/arch/i386/stand/efiboot/bootia32/
start.S
54
addl $
ImageBase
-0b, %eax
57
pushl %eax /*
ImageBase
*/
59
popl %ebx /* remove
ImageBase
from the stack */
ldscript
15
ImageBase
= .;
/src/sys/arch/i386/stand/efiboot/bootx64/
start.S
53
lea
ImageBase
(%rip), %rdi
ldscript
16
ImageBase
= .;
/src/sys/external/bsd/gnu-efi/dist/apps/
t6.c
39
Print(L"Image base : %lx\n", loaded_image->
ImageBase
);
t3.c
63
Print(L" li->
ImageBase
: %xh\n", li->
ImageBase
);
85
VOID *
ImageBase
;
/src/external/gpl3/gcc/dist/libgcc/
unwind-seh.c
145
return c->disp->FunctionEntry->BeginAddress + c->disp->
ImageBase
;
152
ULONG64
ImageBase
;
154
entry = RtlLookupFunctionEntry ((ULONG64)pc, &
ImageBase
, NULL);
156
return (entry ? (void *)(entry->BeginAddress +
ImageBase
) : NULL);
168
return c->disp->
ImageBase
;
460
= RtlLookupFunctionEntry (ms_context.Rip, &gcc_context.disp->
ImageBase
,
467
= RtlVirtualUnwind (0, gcc_context.disp->
ImageBase
, ms_context.Rip,
/src/external/gpl3/gcc.old/dist/libgcc/
unwind-seh.c
145
return c->disp->FunctionEntry->BeginAddress + c->disp->
ImageBase
;
152
ULONG64
ImageBase
;
154
entry = RtlLookupFunctionEntry ((ULONG64)pc, &
ImageBase
, NULL);
156
return (entry ? (void *)(entry->BeginAddress +
ImageBase
) : NULL);
168
return c->disp->
ImageBase
;
460
= RtlLookupFunctionEntry (ms_context.Rip, &gcc_context.disp->
ImageBase
,
467
= RtlVirtualUnwind (0, gcc_context.disp->
ImageBase
, ms_context.Rip,
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBContext.cpp
26
ErrorOr<uint64_t>
ImageBase
= Object.getImageBase();
27
if (
ImageBase
)
28
Session->setLoadAddress(
ImageBase
.get());
/src/sys/arch/ia64/stand/ia64/efi/
ldscript.ia64
12
ImageBase
= .;
Completed in 37 milliseconds
1
2
3
4
5
Indexes created Mon Jun 15 00:25:07 UTC 2026