Searched refs:a_text (Results 1 – 8 of 8) sorted by relevance
/freebsd/sys/i386/linux/ |
H A D | imgact_linux.c | 89 (u_long)a_out->a_text, (u_long)a_out->a_data, bss_size); in exec_linux_imgact() 96 a_out->a_entry >= virtual_offset + a_out->a_text || in exec_linux_imgact() 97 a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK) in exec_linux_imgact() 101 if (a_out->a_data + a_out->a_text > imgp->attr->va_size) in exec_linux_imgact() 107 if (a_out->a_text > maxtsiz || in exec_linux_imgact() 139 a_out->a_text + a_out->a_data + bss_size, 0, VMFS_NO_SPACE, in exec_linux_imgact() 145 a_out->a_text + a_out->a_data, UIO_USERSPACE, 0, in exec_linux_imgact() 158 vmaddr + a_out->a_text, 0, VM_PROT_EXECUTE | VM_PROT_READ, in exec_linux_imgact() 171 a_out->a_text + a_out->a_data, in exec_linux_imgact() 180 (u_long)a_out->a_text + (u_long)a_out->a_data); in exec_linux_imgact() [all …]
|
/freebsd/sys/kern/ |
H A D | imgact_aout.c | 207 if (a_out->a_text) { in exec_aout_imgact() 241 a_out->a_entry >= virtual_offset + a_out->a_text || in exec_aout_imgact() 244 a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK in exec_aout_imgact() 249 virtual_offset + a_out->a_text + a_out->a_data + bss_size > UINT_MAX in exec_aout_imgact() 255 if (a_out->a_data + a_out->a_text > imgp->attr->va_size) in exec_aout_imgact() 263 a_out->a_text > maxtsiz || in exec_aout_imgact() 302 text_end = virtual_offset + a_out->a_text; in exec_aout_imgact() 318 file_offset + a_out->a_text, in exec_aout_imgact() 342 vmspace->vm_tsize = a_out->a_text >> PAGE_SHIFT; in exec_aout_imgact() 346 (virtual_offset + a_out->a_text); in exec_aout_imgact()
|
/freebsd/sys/sys/ |
H A D | imgact_aout.h | 77 (le32toh((ex).a_entry) < le32toh((ex).a_text) ? 0 : \ 82 N_ALIGN(ex, N_TXTADDR(ex) + le32toh((ex).a_text)) 91 N_ALIGN(ex, N_TXTOFF(ex) + le32toh((ex).a_text)) 112 uint32_t a_text; /* text segment size */ member
|
/freebsd/stand/i386/zfsboot/ |
H A D | zfsboot.c | 374 size = hdr.ex.a_text; in load() 375 if (read(fd, p, hdr.ex.a_text) != size) { in load() 379 p += roundup2(hdr.ex.a_text, PAGE_SIZE); in load()
|
/freebsd/stand/i386/isoboot/ |
H A D | isoboot.c | 357 if (xfsread(ino, p, hdr.ex.a_text)) in load() 359 p += roundup2(hdr.ex.a_text, PAGE_SIZE); in load()
|
/freebsd/stand/i386/boot2/ |
H A D | boot2.c | 305 if (xfsread(ino, p, hdr.ex.a_text)) in load() 307 p += roundup2(hdr.ex.a_text, PAGE_SIZE); in load()
|
/freebsd/usr.sbin/btxld/ |
H A D | btxld.c | 353 hdr->text = le32toh(ex->a_text); in gethdr() 408 ex.a_text = htole32(hdr->text); in puthdr()
|
/freebsd/stand/i386/gptboot/ |
H A D | gptboot.c | 418 if (xfsread(ino, p, hdr.ex.a_text)) in load() 420 p += roundup2(hdr.ex.a_text, PAGE_SIZE); in load()
|