text               52 bsp/boot/common/bootinfo.c 	       m->text, m->data, m->textsz,
text              138 bsp/boot/common/elf.c 			m->text = phdr->p_vaddr;
text              146 bsp/boot/common/elf.c 			load_base = phys_base + (m->data - m->text);
text              302 bsp/boot/common/elf.c 				m->text = (vaddr_t)ptokv(load_base);
text              350 bsp/boot/common/elf.c 	m->textsz = (size_t)(m->data - m->text);
text              356 bsp/boot/common/elf.c 	ELFDBG(("module load_base=%lx text=%lx\n", load_base, m->text));
text              357 bsp/boot/common/elf.c 	m->size = (size_t)(load_base - kvtop(m->text));
text               41 include/arm/asm.h 	.text; _ALIGN_TEXT; .globl x; .type x,_ASM_TYPE_FUNCTION; x:
text               39 include/ppc/asm.h 	.text; .align 2; .globl x; .type x,@function; x:
text               65 include/sys/bootinfo.h 	vaddr_t		text;		/* text address */
text               40 include/x86/asm.h 	.text; _ALIGN_TEXT; .globl x; .type x,@function; x:
text              677 sys/mem/vm.c   	void *text, *data;
text              689 sys/mem/vm.c   	text = (void *)mod->text;
text              695 sys/mem/vm.c   	error = do_allocate(map, &text, mod->textsz, 0);
text              698 sys/mem/vm.c   	memcpy(text, src, mod->textsz);
text              699 sys/mem/vm.c   	error = do_attribute(map, text, PROT_READ);
text              711 sys/mem/vm.c   			src = src + (mod->data - mod->text);
text              465 sys/mem/vm_nommu.c 	base = mod->text;