Searched refs:exec (Results 1 - 25 of 63) sorted by relevance

123

/haiku-buildtools/legacy/binutils/bfd/
H A Dfreebsd.h28 #define N_GETMAGIC_NET(exec) \
29 ((exec).a_info & 0xffff)
30 #define N_GETMID_NET(exec) \
31 (((exec).a_info >> 16) & 0x3ff)
33 (((exec).a_info >> 26) & 0x3f)
35 #define N_MACHTYPE(exec) \
37 ((N_GETMAGIC_NET (exec) == ZMAGIC) ? N_GETMID_NET (exec) : \
38 ((exec).a_info >> 16) & 0x3ff))
39 #define N_FLAGS(exec) \
[all...]
H A Dnetbsd.h37 #define N_MACHTYPE(exec) \
38 ((enum machine_type) (((exec).a_info >> 16) & 0x03ff))
39 #define N_FLAGS(exec) \
40 (((exec).a_info >> 26) & 0x3f)
42 #define N_SET_INFO(exec, magic, type, flags) \
43 ((exec).a_info = ((magic) & 0xffff) \
46 #define N_SET_MACHTYPE(exec, machtype) \
47 ((exec).a_info = \
48 ((exec).a_info & 0xfb00ffff) | ((((int) (machtype)) & 0x3ff) << 16))
49 #define N_SET_FLAGS(exec, flag
[all...]
H A Dcorefile.c135 char *exec; local
151 exec = bfd_get_filename (exec_bfd);
152 if (exec == NULL)
159 last_slash = strrchr (exec, '/');
161 exec = last_slash + 1;
163 return strcmp (exec, core) == 0;
H A Dlibaout.h172 /* zmagic files only. For go32, the length of the exec header contributes
216 /* This is the layout in memory of a "struct exec" while we process it.
297 #define N_DYNAMIC(exec) ((exec).a_info & 0x80000000)
300 # define N_MAGIC(exec) ((exec).a_info & 0xffff)
304 # define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
308 # define N_FLAGS(exec) (((exec)
[all...]
H A Dgen-aout.c32 struct exec my_exec;
41 if (fread(&my_exec, sizeof(struct exec), 1, file) != 1) {
H A Daout-target.h134 struct external_exec exec_bytes; /* Raw exec header from file. */
135 struct internal_exec exec; /* Cleaned-up exec header. */ local
147 exec.a_info = SWAP_MAGIC (exec_bytes.e_info);
149 exec.a_info = GET_MAGIC (abfd, exec_bytes.e_info);
152 if (N_BADMAG (exec))
156 if (!(MACHTYPE_OK (N_MACHTYPE (exec))))
160 NAME (aout, swap_exec_header_in) (abfd, &exec_bytes, &exec);
164 exec.a_info = SWAP_MAGIC (exec_bytes.e_info);
167 target = NAME (aout, some_aout_object_p) (abfd, &exec, M
[all...]
/haiku-buildtools/legacy/binutils/include/aout/
H A Dhp.h21 /* The `exec' structure and overall layout must be close to HP's when
28 struct exec struct
49 /* Tell a.out.gnu.h not to define `struct exec'. */
62 #define N_MAGIC(exec) ((exec) . a_magic)
63 #define N_MACHTYPE(exec) ((exec) . a_machtype)
64 #define N_SET_MAGIC(exec, magic) (((exec) . a_magic) = (magic))
65 #define N_SET_MACHTYPE(exec, machtyp
[all...]
H A Dencap.h24 * how to exec the file. Therefore, the only fields that need to
29 * A normal bsd header (struct exec) is placed after the coff headers,
35 * The only problem is to track down the bsd exec header. The
117 The _N_HDROFF gets sizeof struct exec added to it, so we have
130 sizeof (struct coffheader) + sizeof (struct exec) : 0)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-nested5.C15 static void exec() { MetaFunction::template exec<Type>; } member in class:B::MetaFunction
18 B<MetaFunction, Types...>::exec; member in class:B
22 template <typename T> void exec() { function in struct:__anon889::C
/haiku-buildtools/binutils/bfd/
H A Dcorefile.c160 char *exec; local
176 exec = bfd_get_filename (exec_bfd);
177 if (exec == NULL)
184 last_slash = strrchr (exec, '/');
186 exec = last_slash + 1;
188 return filename_cmp (exec, core) == 0;
H A Dgen-aout.c31 struct exec my_exec;
51 if (fread (&my_exec, sizeof (struct exec), 1, file) != 1)
H A Daout-target.h134 struct external_exec exec_bytes; /* Raw exec header from file. */
135 struct internal_exec exec; /* Cleaned-up exec header. */ local
147 exec.a_info = SWAP_MAGIC (exec_bytes.e_info);
149 exec.a_info = GET_MAGIC (abfd, exec_bytes.e_info);
152 if (N_BADMAG (&exec))
156 if (!(MACHTYPE_OK (N_MACHTYPE (&exec))))
160 NAME (aout, swap_exec_header_in) (abfd, &exec_bytes, &exec);
164 exec.a_info = SWAP_MAGIC (exec_bytes.e_info);
167 target = NAME (aout, some_aout_object_p) (abfd, &exec, M
[all...]
/haiku-buildtools/legacy/binutils/gas/config/
H A Daout_gnu.h72 "struct exec". Don't assume that on this machine, the "struct exec"
87 /* How big the "struct exec" is on disk */
90 /* This is the layout in memory of a "struct exec" while we process it. */
92 struct exec struct
129 #define N_MAGIC(exec) ((exec).a_info & 0xffff)
130 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
131 #define N_FLAGS(exec) (((exe
[all...]
/haiku-buildtools/binutils/ld/testsuite/ld-x86-64/
H A Dcompressed1.d3 #ld: -e foo -melf_x86_64 --noinhibit-exec
H A Dpie1.d3 #ld: -pie -melf_x86_64 --noinhibit-exec
/haiku-buildtools/binutils/ld/testsuite/ld-i386/
H A Dcompressed1.d3 #ld: -e foo -melf_i386 --noinhibit-exec
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr39764.C6 B foo(A* exec, double d);
/haiku-buildtools/binutils/binutils/testsuite/binutils-all/
H A Delfedit-2.d2 #elfedit: --output-type exec
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dpr57735.C107 static JSValue decode(ExecState* exec, const CharType* characters, int length, const char* doNotUnescape, bool strict) argument
137 static JSValue decode(ExecState* exec, const char* doNotUnescape, bool strict) argument
139 UString str = exec->argument(0).toString(exec)->value(exec);
140 return decode(exec, str.characters8(), str.length(), doNotUnescape, strict);
142 EncodedJSValue globalFuncDecodeURI(ExecState* exec) argument
146 return JSValue::encode(decode(exec, do_not_unescape_when_decoding_URI, true));
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/stress/
H A Drunstress.go21 "os/exec"
29 doExec = flag.Bool("exec", true, "stress exec")
88 cmd := exec.Command("/bin/sh", "-c", fmt.Sprintf("echo %s; exit %d", wantOutput, exit))
92 log.Fatal("stressExec: unexpected exec success")
97 log.Fatalf("stressExec: exec failure: %v: %s", err, out)
101 log.Fatalf("stressExec: exec output = %q; want %q", out, wantOutput)
103 Println("did exec")
/haiku-buildtools/binutils/include/aout/
H A Dhp.h22 /* The `exec' structure and overall layout must be close to HP's when
29 struct exec struct
50 /* Tell a.out.gnu.h not to define `struct exec'. */
79 #define _N_HDROFF(x) (SEGMENT_SIZE - (sizeof (struct exec)))
/haiku-buildtools/binutils/ld/testsuite/ld-sh/
H A Dtlsbin.s31 ! @GOTTPOFF IE -> LE against global var defined in exec
64 ! LE @TPOFF, global var defined in exec
76 ! LE @TPOFF, hidden var defined in exec
/haiku-buildtools/legacy/binutils/ld/testsuite/ld-sh/
H A Dtlsbin.s31 ! @GOTTPOFF IE -> LE against global var defined in exec
64 ! LE @TPOFF, global var defined in exec
76 ! LE @TPOFF, hidden var defined in exec
/haiku-buildtools/legacy/binutils/include/opcode/
H A Dor32.h70 void (*exec) (void); member in struct:or32_opcode
/haiku-buildtools/binutils/gas/config/
H A Daout_gnu.h72 "struct exec". Don't assume that on this machine, the "struct exec"
87 /* How big the "struct exec" is on disk */
90 /* This is the layout in memory of a "struct exec" while we process it. */
92 struct exec struct
178 #define _N_HDROFF(x) (N_SEGSIZE(x) - sizeof (struct exec))
183 _N_HDROFF((x)) + sizeof (struct exec) : \
184 sizeof (struct exec))

Completed in 281 milliseconds

123