/src/sys/arch/mmeye/stand/bootcoff/ |
osloader.c | 94 u_long ep_tsize; local in function:main 130 ep_tsize = sh.s_size + (sh.s_vaddr - ep_taddr); 133 ep_tsize, toffset); 150 osimage = malloc(ep_tsize+dsize+sizeof(u_long) * 2); 156 *(u_long *)osimage = ep_tsize+dsize; 161 if (fread(p, 1, ep_tsize, fp) != ep_tsize) { 176 size = (ep_tsize + dsize) >> 2;
|
/src/sys/compat/vax1k/ |
vax1k_exec.c | 192 epp->ep_tsize = execp->a_text; 193 epp->ep_daddr = epp->ep_taddr + epp->ep_tsize; 209 epp->ep_tsize, epp->ep_taddr, epp->ep_vp, text_foffset, 216 text_foffset + epp->ep_tsize,
|
/src/sys/arch/sh3/sh3/ |
coff_exec.c | 148 epp->ep_tsize = ap->a_tsize; 187 epp->ep_tsize = ap->a_tsize; 193 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, epp->ep_tsize, 284 epp->ep_tsize = sh.s_size + (sh.s_vaddr - epp->ep_taddr); 291 epp->ep_tsize, offset)); 293 epp->ep_tsize = round_page(epp->ep_tsize); 294 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, epp->ep_tsize, 298 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, epp->ep_tsize, 395 epp->ep_taddr, epp->ep_tsize, [all...] |
/src/sys/compat/common/ |
compat_exec.c | 67 epp->ep_tsize = execp->a_text; 113 epp->ep_tsize = execp->a_text; 155 epp->ep_tsize = execp->a_text; 175 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
|
/src/sys/kern/ |
exec_ecoff.c | 157 epp->ep_tsize = eap->tsize; 188 epp->ep_tsize = eap->tsize; 194 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, epp->ep_tsize, 229 epp->ep_tsize = eap->tsize;
|
exec_aout.c | 151 epp->ep_tsize = execp->a_text; 189 epp->ep_tsize = execp->a_text; 225 epp->ep_tsize = execp->a_text; 245 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
|
exec_elf.c | 703 epp->ep_taddr = epp->ep_tsize = ELFDEFNNAME(NO_ADDR); 783 size > epp->ep_tsize) { 785 epp->ep_tsize = size;
|
kern_exec.c | 507 if (epp->ep_tsize > MAXTSIZ) { 510 (uintmax_t)epp->ep_tsize, 1253 vm->vm_tsize = btoc(epp->ep_tsize);
|
/src/sys/compat/netbsd32/ |
netbsd32_exec_aout.c | 163 epp->ep_tsize = execp->a_text; 204 epp->ep_tsize = execp->a_text; 243 epp->ep_tsize = execp->a_text; 265 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize' 293 epp->ep_tsize = execp->a_text; 341 epp->ep_tsize = execp->a_text; 385 epp->ep_tsize = execp->a_text; 405 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
|
/src/sys/compat/linux/common/ |
linux_exec_aout.c | 176 epp->ep_tsize = execp->a_text; 212 epp->ep_tsize = execp->a_text; 249 epp->ep_tsize = execp->a_text; 269 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize' 287 epp->ep_tsize = execp->a_text;
|
/src/sys/compat/m68k4k/ |
m68k4k_exec.c | 170 epp->ep_tsize = execp->a_text; 208 epp->ep_tsize = execp->a_text; 245 epp->ep_tsize = execp->a_text; 265 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
|
/src/sys/compat/sunos/ |
sunos_exec_aout.c | 125 epp->ep_tsize = execp->a_text; 163 epp->ep_tsize = execp->a_text; 198 epp->ep_tsize = execp->a_text;
|
/src/sys/sys/ |
exec.h | 201 vsize_t ep_tsize; /* size of process's text */ member in struct:exec_package
|