Searched refs:_text (Results 1 - 25 of 91) sorted by relevance

1234

/linux-master/drivers/firmware/efi/libstub/
H A Darm64-stub.c27 if (image->image_base != _text) {
29 image->image_base = _text;
32 if (!IS_ALIGNED((u64)_text, SEGMENT_ALIGN))
36 kernel_size = _edata - _text;
37 kernel_codesize = __inittext_end - _text;
40 *image_addr = (unsigned long)_text;
64 return (char *)primary_entry - _text;
/linux-master/arch/s390/purgatory/
H A Dpurgatory.lds.S19 _text = .; /* Text */ define
/linux-master/arch/nios2/boot/compressed/
H A Dvmlinux.lds.S18 _text = .; define
/linux-master/arch/loongarch/include/asm/
H A Dsetup.h43 return (unsigned long)&_text - VMLINUX_LOAD_ADDRESS;
/linux-master/arch/loongarch/kernel/
H A Dmem.c58 memblock_reserve(__pa_symbol(&_text),
59 __pa_symbol(&_end) - __pa_symbol(&_text));
H A Drelocate.c134 void *destination = _text;
139 kernel_length = (long)_end - (long)_text;
172 void *location_new = _text; /* Default to original kernel start */
182 random_offset = (unsigned long)location_new - (unsigned long)(_text);
184 reloc_offset = (unsigned long)_text - VMLINUX_LOAD_ADDRESS;
187 kernel_length = (long)(_end) - (long)(_text);
190 memcpy(location_new, _text, kernel_length);
222 pr_cont(" .text @ 0x%px\n", _text);
H A Dvmlinux.lds.S39 _text = .; define
145 _kernel_asize = _end - _text;
146 _kernel_fsize = _edata - _text;
/linux-master/arch/arm64/kernel/
H A Dimage-vars.h26 PROVIDE(__efistub__text = _text);
62 PROVIDE(__pi__text = _text);
149 _kernel_codesize = ABSOLUTE(__inittext_end - _text);
H A Dimage.h64 DEFINE_IMAGE_LE64(_kernel_size_le, _end - _text); \
/linux-master/arch/mips/mm/
H A Dphysaddr.c45 VIRTUAL_BUG_ON(x < (unsigned long)_text ||
/linux-master/arch/openrisc/kernel/
H A Dvmlinux.lds.S44 _text = .; define
/linux-master/arch/alpha/kernel/
H A Dvmlinux.lds.S25 _text = .; /* Text and read-only data */ define
/linux-master/arch/nios2/kernel/
H A Dvmlinux.lds.S21 _text = .; define
/linux-master/arch/hexagon/kernel/
H A Dvmlinux.lds.S39 _text = .; define
/linux-master/arch/mips/dec/prom/
H A Dmemory.c111 end = __pa(&_text) - 0x00020000;
114 end = __pa(&_text);
/linux-master/arch/sh/boot/compressed/
H A Dmisc.c42 extern int _text; /* Defined in vmlinux.lds.S */
132 output_addr = __pa((unsigned long)&_text+PAGE_SIZE);
H A Dhead_32.S104 .long ___pa(_text+PAGE_SIZE)
106 .long _text+PAGE_SIZE
/linux-master/arch/mips/kernel/
H A Drelocate.c268 void *dest = &_text;
274 kernel_length = (long)_end - (long)(&_text);
347 kernel_length = (long)(&_relocation_start) - (long)(&_text);
354 offset = (unsigned long)loc_new - (unsigned long)(&_text);
366 * during kernel _text relocation. If appended DTB is used
373 if (fdt_phys >= virt_to_phys(RELOCATED(&_text)) &&
384 memcpy(loc_new, &_text, kernel_length);
387 res = do_relocations(&_text, loc_new, offset);
443 pr_cont(" .text @ 0x%pK\n", _text);
/linux-master/arch/x86/include/asm/
H A Dsetup.h76 extern char _text[];
95 return (unsigned long)&_text - __START_KERNEL;
/linux-master/arch/parisc/boot/compressed/
H A Dvmlinux.lds.S57 _text = .; /* Text */ define
/linux-master/arch/sh/kernel/
H A Dvmlinux.lds.S23 _text = .; /* Text and read-only data */ define
/linux-master/arch/xtensa/mm/
H A Dinit.c158 (unsigned long)_text, (unsigned long)_etext,
159 (unsigned long)(_etext - _text) >> 10,
/linux-master/arch/sh/boot/romimage/
H A Dhead.S82 .long _text
/linux-master/include/asm-generic/
H A Dsections.h12 * _text, _data: architecture specific, don't use them in arch-independent code
27 * _text, _data
35 extern char _text[], _stext[], _etext[];
/linux-master/arch/arm/boot/compressed/
H A Dvmlinux.lds.S37 _text = .; define

Completed in 313 milliseconds

1234