Searched refs:a_out (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/sys/i386/linux/
H A Dimgact_linux.c63 const struct exec *a_out = (const struct exec *) imgp->image_header; local
71 if (((a_out->a_magic >> 16) & 0xff) != 0x64)
77 switch ((int)(a_out->a_magic & 0xffff)) {
89 bss_size = round_page(a_out->a_bss);
92 (u_long)a_out->a_text, (u_long)a_out->a_data, bss_size);
98 if (a_out->a_entry < virtual_offset ||
99 a_out->a_entry >= virtual_offset + a_out->a_text ||
100 a_out
[all...]
/freebsd-13-stable/sys/kern/
H A Dimgact_aout.c158 const struct exec *a_out = (const struct exec *) imgp->image_header; local
174 if (((a_out->a_midmag >> 16) & 0xff) != 0x86 &&
175 ((a_out->a_midmag >> 16) & 0xff) != 0 &&
176 ((((int)ntohl(a_out->a_midmag)) >> 16) & 0xff) != 0x86)
184 switch ((int)(a_out->a_midmag & 0xffff)) {
187 if (a_out->a_text) {
198 if (N_GETMID(*a_out) == MID_ZERO)
203 switch ((int)(ntohl(a_out->a_midmag) & 0xffff)) {
214 bss_size = roundup(a_out->a_bss, PAGE_SIZE);
220 a_out
[all...]
/freebsd-13-stable/contrib/libevent/test/
H A Dregress_dns.c1354 struct gai_outcome a_out[12]; local
1363 memset(a_out, 0, sizeof(a_out));
1535 &hints, gai_cb, &a_out[0]);
1540 &hints, gai_cb, &a_out[1]);
1546 &hints, gai_cb, &a_out[2]);
1553 &hints, gai_cb, &a_out[3]);
1560 &hints, gai_cb, &a_out[4]);
1566 &hints, gai_cb, &a_out[5]);
1573 &hints, gai_cb, &a_out[
[all...]
/freebsd-13-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_dns.c1316 struct gai_outcome a_out[12]; local
1325 memset(&a_out, 0, sizeof(a_out));
1497 &hints, gai_cb, &a_out[0]);
1502 &hints, gai_cb, &a_out[1]);
1508 &hints, gai_cb, &a_out[2]);
1515 &hints, gai_cb, &a_out[3]);
1522 &hints, gai_cb, &a_out[4]);
1528 &hints, gai_cb, &a_out[5]);
1535 &hints, gai_cb, &a_out[
[all...]
/freebsd-13-stable/sys/compat/linux/
H A Dlinux_misc.c240 struct exec *a_out; local
252 a_out = NULL;
321 error = vm_mmap(exec_map, (vm_offset_t *)&a_out, PAGE_SIZE,
327 if (((a_out->a_magic >> 16) & 0xff) != 0x64) {
337 switch ((int)(a_out->a_magic & 0xffff)) {
349 bss_size = round_page(a_out->a_bss);
352 if (a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK) {
358 if (a_out->a_data + a_out
[all...]

Completed in 103 milliseconds