| /freebsd-12.1/sys/i386/linux/ |
| H A D | imgact_linux.c | 92 (u_long)a_out->a_text, (u_long)a_out->a_data, bss_size); in exec_linux_imgact() 100 a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK) in exec_linux_imgact() 104 if (a_out->a_data + a_out->a_text > imgp->attr->va_size) in exec_linux_imgact() 111 a_out->a_data + bss_size > lim_cur_proc(imgp->proc, RLIMIT_DATA) || in exec_linux_imgact() 112 racct_set(imgp->proc, RACCT_DATA, a_out->a_data + bss_size) != 0) { in exec_linux_imgact() 142 a_out->a_text + a_out->a_data + bss_size, 0, VMFS_NO_SPACE, in exec_linux_imgact() 148 a_out->a_text + a_out->a_data, UIO_USERSPACE, 0, in exec_linux_imgact() 173 a_out->a_text + a_out->a_data, in exec_linux_imgact() 182 (u_long)a_out->a_text + (u_long)a_out->a_data); in exec_linux_imgact() 188 vmaddr + a_out->a_text + a_out->a_data, VM_PROT_ALL, FALSE); in exec_linux_imgact() [all …]
|
| /freebsd-12.1/sys/kern/ |
| H A D | imgact_aout.c | 228 a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK in exec_aout_imgact() 233 virtual_offset + a_out->a_text + a_out->a_data + bss_size > UINT_MAX in exec_aout_imgact() 239 if (a_out->a_data + a_out->a_text > imgp->attr->va_size) in exec_aout_imgact() 250 a_out->a_data + bss_size > lim_cur_proc(imgp->proc, RLIMIT_DATA) || in exec_aout_imgact() 251 racct_set(imgp->proc, RACCT_DATA, a_out->a_data + bss_size) != 0) { in exec_aout_imgact() 298 data_end = text_end + a_out->a_data; in exec_aout_imgact() 299 if (a_out->a_data) { in exec_aout_imgact() 327 vmspace->vm_dsize = (a_out->a_data + bss_size) >> PAGE_SHIFT; in exec_aout_imgact()
|
| H A D | imgact_gzip.c | 203 gz->a_out.a_text & PAGE_MASK || gz->a_out.a_data & PAGE_MASK) { in do_aout_hdr() 215 gz->a_out.a_data + gz->bss_size > in do_aout_hdr() 218 gz->a_out.a_data + gz->bss_size) != 0) { in do_aout_hdr() 225 gz->file_end = gz->file_offset + gz->a_out.a_text + gz->a_out.a_data; in do_aout_hdr() 254 gz->a_out.a_text + gz->a_out.a_data, in do_aout_hdr() 272 gz->a_out.a_data; in do_aout_hdr() 283 vmspace->vm_dsize = (gz->a_out.a_data + gz->bss_size) >> PAGE_SHIFT; in do_aout_hdr()
|
| /freebsd-12.1/contrib/binutils/gas/config/ |
| H A D | aout_gnu.h | 79 unsigned char a_data[4]; member 96 unsigned a_data; /* length of data, in bytes */ member 192 #define N_TRELOFF(x) ( N_DATOFF(x) + (x).a_data ) 219 #define N_BSSADDR(x) (N_DATADDR(x) + (x).a_data)
|
| /freebsd-12.1/usr.sbin/kgzip/ |
| H A D | kgzcmp.c | 90 ahdr0.a.a_data += kh->nsize + x; in kgzcmp() 232 xcopy(idi, ido, le32toh(a->a_data), N_DATOFF(*a)); in ld_aout() 233 addr += le32toh(a->a_data); in ld_aout()
|
| /freebsd-12.1/sys/sys/ |
| H A D | imgact_aout.h | 99 N_ALIGN(ex, N_DATOFF(ex) + le32toh((ex).a_data)) 117 uint32_t a_data; /* initialized data size */ member
|
| /freebsd-12.1/contrib/binutils/include/aout/ |
| H A D | aout64.h | 224 #define N_BSSADDR(x) (N_DATADDR (x) + (x).a_data) 244 #define N_TRELOFF(x) (N_DATOFF (x) + (x).a_data)
|
| /freebsd-12.1/contrib/gdb/include/ |
| H A D | bout.h | 92 #define N_TROFF(x) ( N_DATOFF(x) + (x).a_data )
|
| /freebsd-12.1/usr.bin/find/ |
| H A D | find.h | 141 #define a_data p_un._a_data macro
|
| /freebsd-12.1/stand/i386/isoboot/ |
| H A D | isoboot.c | 363 if (xfsread(ino, p, hdr.ex.a_data)) in load() 365 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE); in load()
|
| /freebsd-12.1/sys/compat/linux/ |
| H A D | linux_misc.c | 372 if (a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK) { in linux_uselib() 378 if (a_out->a_data + a_out->a_text > attr.va_size) { in linux_uselib() 390 a_out->a_data + bss_size > lim_cur_proc(td->td_proc, RLIMIT_DATA) || in linux_uselib() 391 racct_set(td->td_proc, RACCT_DATA, a_out->a_data + in linux_uselib() 429 &vmaddr, a_out->a_text + a_out->a_data, 0, VMFS_NO_SPACE, in linux_uselib() 435 a_out->a_text + a_out->a_data, UIO_USERSPACE, 0, in linux_uselib() 459 a_out->a_text + a_out->a_data, VM_PROT_ALL, VM_PROT_ALL, in linux_uselib() 480 a_out->a_data; in linux_uselib()
|
| /freebsd-12.1/usr.bin/elf2aout/ |
| H A D | elf2aout.c | 53 u_int32_t a_data; member
|
| /freebsd-12.1/usr.bin/ldd/ |
| H A D | sods.c | 227 printf(" a_data = 0x%lx\n", (long)ex->a_data); in dump_file() 363 && (unsigned long)r->r_address < origin + ex->a_text + ex->a_data in dump_rels()
|
| /freebsd-12.1/stand/i386/gptboot/ |
| H A D | gptboot.c | 424 if (xfsread(ino, p, hdr.ex.a_data)) in load() 426 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE); in load()
|
| /freebsd-12.1/usr.sbin/btxld/ |
| H A D | btxld.c | 359 hdr->data = le32toh(ex->a_data); in gethdr() 415 ex.a_data = htole32(hdr->data); in puthdr()
|
| /freebsd-12.1/contrib/binutils/bfd/ |
| H A D | bout.c | 86 execp->a_data = GET_WORD (abfd, bytes->e_data); in bout_swap_exec_header_in() 111 PUT_WORD (abfd, execp->a_data , bytes->e_data); in bout_swap_exec_header_out() 159 bss_start = execp->a_dload + execp->a_data; /* BSS = end of data section. */ in b_out_callback() 405 exec_hdr (abfd)->a_data = obj_datasec (abfd)->size; in b_out_write_object_contents()
|
| H A D | aoutx.h | 385 execp->a_data = GET_WORD (abfd, bytes->e_data); in NAME() 417 PUT_WORD (abfd, execp->a_data , bytes->e_data); in NAME() 541 obj_datasec (abfd)->size = execp->a_data; in NAME() 940 execp->a_data = obj_datasec (abfd)->size; in adjust_o_magic() 1039 execp->a_data = BFD_ALIGN (obj_datasec (abfd)->size, in adjust_z_magic() 1041 data_pad = execp->a_data - obj_datasec (abfd)->size; in adjust_z_magic() 1098 execp->a_data = obj_datasec (abfd)->size; in adjust_n_magic() 5564 pos = obj_datasec (abfd)->filepos + exec_hdr (abfd)->a_data - 1; in NAME()
|
| H A D | libaout.h | 224 bfd_vma a_data; /* Length of data, in bytes. */ member
|
| /freebsd-12.1/sys/fs/devfs/ |
| H A D | devfs_vnops.c | 794 *(int *)ap->a_data = dsw->d_flags & D_TYPEMASK; in devfs_ioctl() 798 fgn = ap->a_data; in devfs_ioctl() 808 error = dsw->d_ioctl(dev, com, ap->a_data, ap->a_fflag, td); in devfs_ioctl() 1568 error = devfs_rules_ioctl(dmp, ap->a_command, ap->a_data, ap->a_td); in devfs_rioctl()
|
| /freebsd-12.1/stand/i386/zfsboot/ |
| H A D | zfsboot.c | 955 if (xfsread(&dn, &off, p, hdr.ex.a_data)) in load() 957 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE); in load()
|
| /freebsd-12.1/stand/i386/boot2/ |
| H A D | boot2.c | 311 if (xfsread(ino, p, hdr.ex.a_data)) in load()
|
| /freebsd-12.1/sys/fs/cd9660/ |
| H A D | cd9660_vnops.c | 277 *(int *)(ap->a_data) = ip->iso_start;
|
| /freebsd-12.1/sys/fs/pseudofs/ |
| H A D | pseudofs_vnops.c | 305 error = pn_ioctl(curthread, proc, pn, va->a_command, va->a_data); in pfs_ioctl()
|
| /freebsd-12.1/sys/ufs/ufs/ |
| H A D | ufs_vnops.c | 2705 error = ufs_bmap_seekdata(vp, (off_t *)ap->a_data); in ufs_ioctl() 2711 return (vn_bmap_seekhole(vp, ap->a_command, (off_t *)ap->a_data, in ufs_ioctl()
|
| /freebsd-12.1/sys/fs/ext2fs/ |
| H A D | ext2_vnops.c | 2163 (off_t *)ap->a_data, ap->a_cred)); in ext2_ioctl()
|