Home
last modified time | relevance | path

Searched refs:execute (Results 1 – 25 of 607) sorted by relevance

12345678910>>...25

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/
H A DChangeLog.05 * execute/961213-1.c: New test (from hjl@lucon.org).
7 * execute/complex-5.c: New test (from moshier@world.std.com).
9 * execute/970217-1.c: New test (from eggert@twinsun.com).
11 * execute/970214-[12].c: New tests (from eggert@twinsun.com).
15 * execute/ieee/930529-1.c: Also handle arm's unusual byte/word
18 * execute/index-1.c: Make large vars and values `long'
21 * execute/941014-2.c: Declare malloc.
25 * execute/960521-1.c: Rewrite to take STACK_SIZE into account
28 * execute/961223-1.c: New test (from wilson@cygnus.com).
34 * execute/961125-1.c: New test (from meyering@asic.sc.ti.com).
[all …]
/openbsd-src/usr.bin/awk/
H A Drun.c142 execute(a); in run()
146 Cell *execute(Node *u) /* execute a node of the parse tree */ in execute() function
190 x = execute(a[0]); in program()
199 x = execute(a[1]); in program()
208 x = execute(a[2]); in program()
240 fcn = execute(a[0]); /* the function itself */ in call()
260 y = execute(x); in call()
290 y = execute((Node *)(fcn->sval)); /* execute body */ in call()
366 y = execute(a[0]); in jump()
373 y = execute(a[0]); in jump()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/
H A DChangeLog9 * gcc.c-torture/execute/20050124-1.c: New test.
45 * gcc.c-torture/execute/20020720-1.x: XFAIL for x86 when using
70 * gcc.c-torture/execute/restrict-1.c: New test.
98 * gcc.c-torture/execute/pr16790-1.c: New test case.
152 * gcc.c-torture/execute/pr15296.c: New test.
178 * gcc.c-torture/execute/20040331-1.c: New test.
198 * gcc.c-torture/execute/20040307-1.c: New test case.
208 * gcc.c-torture/execute/20040313-1.c: New test.
253 * gcc.c-torture/execute/20040218-1.c: New test.
347 * gcc.c-torture/execute/20031215-1.c: New test case.
[all …]
/openbsd-src/gnu/gcc/gcc/config/arm/
H A Darm1026ejs.md44 ;; The ALU pipeline has fetch, issue, decode, execute, memory, and
45 ;; write stages. We only need to model the execute, memory and write
50 ;; The LSU pipeline has decode, execute, memory, and write stages.
51 ;; We only model the execute, memory and write stages.
60 ;; ALU instructions require three cycles to execute, and use the ALU
62 ;; after the execute stage stage has finished.
82 ;; the execute stage.
92 ;; Multiplication instructions loop in the execute stage until the
104 ;; the execute stage; the result is available immediately following
105 ;; the execute stage.
[all …]
H A Darm1020e.md44 ;; The ALU pipeline has fetch, issue, decode, execute, memory, and
45 ;; write stages. We only need to model the execute, memory and write
50 ;; The LSU pipeline has decode, execute, memory, and write stages.
51 ;; We only model the execute, memory and write stages.
60 ;; ALU instructions require three cycles to execute, and use the ALU
62 ;; after the execute stage stage has finished.
82 ;; the execute stage.
92 ;; Multiplication instructions loop in the execute stage until the
104 ;; the execute stage; the result is available immediately following
105 ;; the execute stage.
[all …]
H A Darm926ejs.md42 ;; The ALU pipeline has fetch, decode, execute, memory, and
43 ;; write stages. We only need to model the execute, memory and write
52 ;; ALU instructions require three cycles to execute, and use the ALU
54 ;; after the execute stage stage has finished.
68 ;; the execute stage.
78 ;; Multiplication instructions loop in the execute stage until the
80 ;; times. Multiply operations occur in both the execute and memory
173 ;; therefore appear to require zero cycles to execute. We assume that
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_exec_anatomy.py15 def execute(cmd): function
21 execute(['cmake', source_dir])
22 execute(['make'])
26 execute(['intercept-build', '--cdb', result_file, './exec',
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D920302-1.c3 execute (ip) in execute() function
33 execute ((short *) 0); in main()
38 execute (&p); in main()
H A D920501-3.c2 execute(oip, ip) in execute() function
31 execute(ip, ip); in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920625-2.c20 int execute(String, String, String, Boolean); in trashQueryResult()
42 if ((status = execute(((void *)0), "rm", rmstring, 1)) != 0) { in trashQueryResult()
62 int execute(String, String, String, Boolean); in copyQueryResult()
87 if ((status = execute(((void *)0), "cp", copystring, 1)) != 0) { in copyQueryResult()
/openbsd-src/gnu/llvm/clang/lib/Tooling/
H A DExecution.cpp43 ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action) { in execute() function in clang::tooling::ToolExecutor
44 return execute(std::move(Action), ArgumentsAdjuster()); in execute()
47 llvm::Error ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action, in execute() function in clang::tooling::ToolExecutor
53 return execute(Actions); in execute()
/openbsd-src/bin/ksh/
H A Dexec.c42 execute(struct op *volatile t, in execute() function
136 rv = execute(t->left, flags|XFORK, xerrok); in execute()
168 execute(t->left, flags & XERROK, NULL); in execute()
171 rv = execute(t, flags & XERROK, xerrok); in execute()
238 rv = execute(t->left, (flags&~XEXEC)|XBGND|XFORK, xerrok); in execute()
243 rv = execute(t->left, XERROK, xerrok); in execute()
245 rv = execute(t->right, flags & XERROK, xerrok); in execute()
253 rv = !execute(t->right, XERROK, xerrok); in execute()
301 rv = execute(t->left, flags & XERROK, xerrok); in execute()
312 rv = execute(t->left, flags & XERROK, xerrok); in execute()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/custom-result-category/
H A Dformat.py9 def execute(self, test, lit_config): member in MyFormat
10 result = super(MyFormat, self).execute(test, lit_config)
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlan.h588 virtual void execute(VPTransformState *State) = 0;
688 virtual void execute(VPTransformState &State) = 0;
841 void execute(VPTransformState &State) override;
920 void execute(VPTransformState &State) override;
947 void execute(VPTransformState &State) override;
974 void execute(VPTransformState &State) override;
1009 void execute(VPTransformState &State) override;
1046 void execute(VPTransformState &State) override;
1137 void execute(VPTransformState &State) override = 0;
1191 void execute(VPTransformState &State) override;
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp3764.C9 virtual void execute (Menu& menu, MenuItem& menuItem) = 0;
20 void execute(Menu& menu, MenuItem& menuItem);
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dnested2.C10 virtual void execute (Menu& menu, MenuItem& menuItem) = 0;
21 void execute (Menu& menu, MenuItem& menuItem);
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/
H A DExecution.h120 execute(llvm::ArrayRef<
125 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action);
127 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action,
H A DAllTUsExecution.h48 using ToolExecutor::execute;
51 execute(llvm::ArrayRef<
H A DStandaloneExecution.h56 using ToolExecutor::execute;
59 execute(llvm::ArrayRef<
/openbsd-src/regress/sys/kern/fork-exit/
H A Dfork-exit.c34 int execute = 0; variable
166 if (execute) { in run_child()
224 execute = 1; in main()
264 if (execute) { in main()
268 errx(1, "execute sleep cannot be used with threads"); in main()
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/
H A DExecutable.pm64 0.75 if it's got an execute bit set
75 return 0.85 if $file->{execute} && $file->{binary};
77 return 0.25 if $file->{execute};
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/Stages/
H A DStage.h58 virtual Error execute(InstRef &IR) = 0;
75 return NextInSequence->execute(IR); in moveToTheNextStage()
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/lib/libear/
H A D__init__.py61 def execute(cmd, *args, **kwargs): function
174 execute([self.ctx.compiler, src_file] + self.ctx.c_flags,
245 execute(
251 execute(
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/
H A Dworker.py35 def execute(test): function
76 result = test.config.test_format.execute(test, lit_config)
/openbsd-src/usr.bin/vi/docs/
H A Dev11 ^A/ / Prompt and execute a forward search.
12 ^A: : Prompt and execute an ex command.
13 ^A? ? Prompt and execute a backward search.

12345678910>>...25