/linux/drivers/firmware/efi/libstub/ |
A D | arm64-stub.c | 119 if (image->image_base != _text) in handle_kernel_image() 122 if (!IS_ALIGNED((u64)_text, EFI_KIMG_ALIGN)) in handle_kernel_image() 126 kernel_size = _edata - _text; in handle_kernel_image() 144 if (!check_image_region((u64)_text, kernel_memsize)) { in handle_kernel_image() 146 } else if (IS_ALIGNED((u64)_text, min_kimg_align)) { in handle_kernel_image() 151 *image_addr = (u64)_text; in handle_kernel_image() 167 memcpy((void *)*image_addr, _text, kernel_size); in handle_kernel_image()
|
/linux/arch/mips/kernel/ |
A D | relocate.c | 268 void *dest = &_text; in determine_relocation_address() 274 kernel_length = (long)_end - (long)(&_text); in determine_relocation_address() 347 kernel_length = (long)(&_relocation_start) - (long)(&_text); in relocate_kernel() 354 offset = (unsigned long)loc_new - (unsigned long)(&_text); in relocate_kernel() 373 if (fdt_phys >= virt_to_phys(RELOCATED(&_text)) && in relocate_kernel() 384 memcpy(loc_new, &_text, kernel_length); in relocate_kernel() 387 res = do_relocations(&_text, loc_new, offset); in relocate_kernel() 443 pr_cont(" .text @ 0x%pK\n", _text); in show_kernel_relocation()
|
A D | setup.c | 282 memblock_reserve(__pa_symbol(&_text), in bootmem_init() 283 __pa_symbol(&_end) - __pa_symbol(&_text)); in bootmem_init() 503 phys_addr_t start = __pa_symbol(&_text); in check_kernel_sections_mem() 692 code_resource.start = __pa_symbol(&_text); in resource_init()
|
/linux/arch/arm64/kernel/ |
A D | image-vars.h | 15 __efistub_kernel_size = _edata - _text; 16 __efistub_primary_entry_offset = primary_entry - _text; 46 __efistub__text = _text;
|
A D | vmlinux.lds | 2 ENTRY(_text) 14 _text = .; symbol 118 …_kernel_size_le_lo32 = (((_end - _text) & 0xffffffff) & 0xffffffff); _kernel_size_le_hi32 = (((_en… 126 __efistub_kernel_size = _edata - _text; 127 __efistub_primary_entry_offset = primary_entry - _text; 139 __efistub__text = _text; 186 ASSERT(_text == ((((((-(((1)) << ((((48))) - 1)))) + (0x08000000))) + (0x08000000))), "HEAD is misa…
|
A D | vmlinux.lds.S | 73 ENTRY(_text) 158 _text = .; symbol 353 ASSERT(_text == KIMAGE_VADDR, "HEAD is misaligned")
|
/linux/arch/mips/dec/prom/ |
A D | memory.c | 111 end = __pa(&_text) - 0x00020000; in prom_free_prom_memory() 114 end = __pa(&_text); in prom_free_prom_memory()
|
/linux/drivers/power/supply/ |
A D | power_supply_sysfs.c | 31 #define _POWER_SUPPLY_ATTR(_name, _text, _len) \ argument 36 .text_values = _text, \ 41 #define _POWER_SUPPLY_ENUM_ATTR(_name, _text) \ argument 42 _POWER_SUPPLY_ATTR(_name, _text, ARRAY_SIZE(_text))
|
/linux/arch/x86/include/asm/ |
A D | setup.h | 78 extern char _text[]; 97 return (unsigned long)&_text - __START_KERNEL; in kaslr_offset()
|
/linux/arch/sh/boot/compressed/ |
A D | misc.c | 42 extern int _text; /* Defined in vmlinux.lds.S */ 132 output_addr = __pa((unsigned long)&_text+PAGE_SIZE); in decompress_kernel()
|
A D | head_32.S | 104 .long ___pa(_text+PAGE_SIZE) 106 .long _text+PAGE_SIZE
|
/linux/scripts/ |
A D | kallsyms.c | 45 static unsigned long long _text; variable 220 _text = addr; in read_symbol() 349 if (_text <= addr) in output_address() 350 printf("\tPTR\t_text + %#llx\n", addr - _text); in output_address() 352 printf("\tPTR\t_text - %#llx\n", _text - addr); in output_address()
|
/linux/arch/x86/kernel/ |
A D | head64.c | 90 return ptr - (void *)_text + (void *)physaddr; in fixup_pointer() 160 load_delta = physaddr - (unsigned long)(_text - __START_KERNEL_map); in __startup_64() 236 for (i = 0; i < DIV_ROUND_UP(_end - _text, PMD_SIZE); i++) { in __startup_64() 261 for (i = 0; i < pmd_index((unsigned long)_text); i++) in __startup_64()
|
A D | setup.c | 672 u64 start = __pa_symbol(_text); in e820_add_kernel_range() 698 memblock_reserve(__pa_symbol(_text), in early_reserve_memory() 699 (unsigned long)__end_of_kernel_reserve - (unsigned long)_text); in early_reserve_memory() 852 setup_initial_init_mm(_text, _etext, _edata, (void *)_brk_end); in setup_arch() 854 code_resource.start = __pa_symbol(_text); in setup_arch()
|
/linux/arch/xtensa/mm/ |
A D | init.c | 158 (unsigned long)_text, (unsigned long)_etext, in mem_init() 159 (unsigned long)(_etext - _text) >> 10, in mem_init()
|
/linux/arch/sh/kernel/ |
A D | setup.c | 297 setup_initial_init_mm(_text, _etext, _edata, _end); in setup_arch() 299 code_resource.start = virt_to_phys(_text); in setup_arch()
|
/linux/kernel/printk/ |
A D | printk_ringbuffer.h | 283 static char _##name##_text[1U << ((avgtextbits) + (descbits))] \ 285 _DEFINE_PRINTKRB(name, descbits, avgtextbits, &_##name##_text[0])
|
/linux/arch/parisc/kernel/ |
A D | cache.c | 397 size = (unsigned long)(_end - _text); in parisc_setup_cache_timing() 399 flush_kernel_dcache_range((unsigned long)_text, size); in parisc_setup_cache_timing() 424 size = (unsigned long)_end - (unsigned long)_text; in parisc_setup_cache_timing() 426 flush_tlb_kernel_range((unsigned long)_text, (unsigned long)_end); in parisc_setup_cache_timing()
|
/linux/arch/arm64/mm/ |
A D | init.c | 253 memblock_add(__pa_symbol(_text), (u64)(_end - _text)); in arm64_memblock_init()
|
/linux/arch/nds32/mm/ |
A D | init.c | 222 (unsigned long)&_text, (unsigned long)&_etext, in mem_init() 223 ((unsigned long)&_etext - (unsigned long)&_text) >> 10); in mem_init()
|
/linux/arch/parisc/mm/ |
A D | init.c | 318 code_resource.start = virt_to_phys(_text); in setup_bootmem() 357 ro_start = __pa((unsigned long)_text); in map_pages() 600 _text, _etext, in mem_init() 601 ((unsigned long)_etext - (unsigned long)_text) >> 10); in mem_init()
|
/linux/arch/mips/mm/ |
A D | physaddr.c | 51 VIRTUAL_BUG_ON(x < (unsigned long)_text || in __phys_addr_symbol()
|
/linux/arch/s390/purgatory/ |
A D | purgatory.lds.S | 19 _text = .; /* Text */ symbol
|
/linux/arch/nios2/boot/compressed/ |
A D | vmlinux.lds.S | 18 _text = .; symbol
|
/linux/arch/hexagon/kernel/ |
A D | vmlinux.lds.S | 39 _text = .; symbol
|