Home
last modified time | relevance | path

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

12345678910>>...14

/freebsd-12.1/usr.bin/find/
H A Doperator.c94 if (node->execute == f_openparen) in yankexpr()
105 if (next->execute == f_closeparen) { in yankexpr()
109 node->execute = f_expr; in yankexpr()
146 if (expr->execute == f_closeparen) in paren_squish()
180 if (next->execute == f_expr) in not_squish()
188 if (next->execute == f_not) { in not_squish()
198 if (node->execute == f_or) in not_squish()
204 if (node->execute == f_expr) in not_squish()
242 if (next->execute == f_expr) in or_squish()
246 if (next->execute == f_not) in or_squish()
[all …]
H A Dfind.h107 exec_f *execute; /* node evaluation function */ member
170 exec_f *execute; /* execute function */ member
/freebsd-12.1/contrib/one-true-awk/
H A Drun.c137 execute(a); in run()
185 x = execute(a[0]); in program()
203 x = execute(a[2]); in program()
255 y = execute(x); in call()
621 x = execute(a[0]); in boolop()
654 x = execute(a[0]); in relop()
655 y = execute(a[1]); in relop()
891 x = execute(a); in format()
940 execute(a); in format()
1661 y = execute(x); in printstat()
[all …]
/freebsd-12.1/sys/contrib/zstd/tests/
H A Dtest-zstd-speed.py66 execute.cwd = None
71 execute(command, verbose, False, False)
83 execute('mutt -s "' + topic + '" ' + emails + ' < ' + logFileName, verbose)
108 execute('git fetch -p', verbose)
109 branches = execute('git branch -rl', verbose)
120 commits = execute('git log -n 10 %s %s' % (fmt, commit))
301 gcc_version = execute("gcc -dumpversion", verbose)[0];
325 execute.cwd = working_path
326 execute('git clone ' + args.repoURL)
330 execute.cwd = clone_path
[all …]
H A Dtest-zstd-versions.py34 def execute(command, print_output=False, print_error=True, param_shell=False): function
78 …result = execute('./dictBuilder.' + tag + ' ' + ' '.join(cFiles) + ' ' + ' '.join(hFiles) + ' -o '…
80 …result = execute('./zstd.' + tag + ' -f --train ' + ' '.join(cFiles) + ' ' + ' '.join(hFiles) + ' …
155 if execute(params) == 0:
185 if execute(params) == 0:
251 execute('cp ' + dict_files + ' ' + dict_source_path, param_shell=True)
/freebsd-12.1/contrib/gcc/config/arm/
H A Darm1026ejs.md44 ;; The ALU pipeline has fetch, issue, decode, execute, memory, and
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.
165 ;; with LSL of zero. The remainder take 1 cycle to execute.
[all …]
H A Darm1020e.md44 ;; The ALU pipeline has fetch, issue, decode, execute, memory, and
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.
119 ;; The "muls" and "mlas" instructions loop in the execute stage for
[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
/freebsd-12.1/lib/libthr/thread/
H A Dthr_clean.c74 __thr_cleanup_pop_imp(int execute) in __thr_cleanup_pop_imp() argument
81 if (execute) in __thr_cleanup_pop_imp()
107 _thr_cleanup_pop(int execute) in _thr_cleanup_pop() argument
109 __pthread_cleanup_pop_imp(execute); in _thr_cleanup_pop()
/freebsd-12.1/usr.sbin/bluetooth/hccontrol/
H A Dhccontrol.c204 goto execute; in do_hci_command()
208 goto execute; in do_hci_command()
212 goto execute; in do_hci_command()
216 goto execute; in do_hci_command()
220 goto execute; in do_hci_command()
224 goto execute; in do_hci_command()
232 execute: in do_hci_command()
/freebsd-12.1/release/picobsd/tinyware/msh/
H A Dsh3.c77 execute(t, pin, pout, act) in execute() function
111 (void) execute(t->left, pin, pv, 0);
112 rv = execute(t->right, pv, pout, 0);
116 (void) execute(t->left, pin, pout, 0);
117 rv = execute(t->right, pin, pout, 0);
150 rv = execute(t->left, pin, pout, 0);
152 rv = execute(t1, pin, pout, 0);
172 rv = execute(t1, pin, pout, 0);
202 rv = execute(t1, pin, pout, 0);
215 rv = execute(t1, pin, pout, 0);
[all …]
/freebsd-12.1/contrib/ipfilter/rules/
H A Dipmon.conf6 do { execute("/usr/bin/mail -s 'logtag 10000' root"); };
9 do { execute("echo 'XXXXXXXX tag 2000 packet XXXXXXXX'"); };
18 do { execute("/usr/bin/mail -s 'from 10.1 to 192.168.1' root"); };
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/
H A DExecution.cpp44 ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action) { in execute() function in clang::tooling::ToolExecutor
45 return execute(std::move(Action), ArgumentsAdjuster()); in execute()
48 llvm::Error ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action, in execute() function in clang::tooling::ToolExecutor
54 return execute(Actions); in execute()
/freebsd-12.1/tools/regression/security/cap_test/
H A Dcap_test.c70 execute(i + 1, all_tests + i); in main()
85 execute(i, all_tests + j); in main()
98 execute(int id, struct test *t) { in execute() function
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DVPlan.h667 void execute(VPTransformState &State) override;
708 void execute(VPTransformState &State) override;
741 void execute(VPTransformState &State) override;
762 void execute(VPTransformState &State) override;
793 void execute(VPTransformState &State) override;
820 void execute(VPTransformState &State) override;
868 void execute(VPTransformState &State) override;
894 void execute(VPTransformState &State) override;
929 void execute(VPTransformState &State) override;
956 void execute(VPTransformState &State) override;
[all …]
H A DVPlan.cpp162 void VPBasicBlock::execute(VPTransformState *State) { in execute() function in VPBasicBlock
201 Recipe.execute(*State); in execute()
231 void VPRegionBlock::execute(VPTransformState *State) { in execute() function in VPRegionBlock
252 Block->execute(State); in execute()
269 Block->execute(State); in execute()
318 void VPInstruction::execute(VPTransformState &State) { in execute() function in VPInstruction
360 void VPlan::execute(VPTransformState *State) { in execute() function in VPlan
399 Block->execute(State); in execute()
/freebsd-12.1/contrib/tcsh/
H A Dsh.sem.c87 execute(struct command *t, volatile int wanttty, int *pipein, int *pipeout, in execute() function
698 execute(t->t_dspr, wanttty, NULL, NULL, do_glob); in execute()
705 execute(t->t_dcdr, wanttty, pv, pipeout, do_glob); in execute()
708 execute(t->t_dcar, wanttty, pipein, pv, do_glob); in execute()
712 execute(t->t_dcar, wanttty, pipein, pv, do_glob); in execute()
715 execute(t->t_dcdr, wanttty, pv, pipeout, do_glob); in execute()
722 execute(t->t_dcar, wanttty, NULL, NULL, do_glob); in execute()
733 execute(t->t_dcdr, wanttty, NULL, NULL, do_glob); in execute()
741 execute(t->t_dcar, wanttty, NULL, NULL, do_glob); in execute()
750 execute(t->t_dcdr, wanttty, NULL, NULL, do_glob); in execute()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/
H A DExecution.h128 execute(llvm::ArrayRef<
133 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action);
135 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action,
H A DAllTUsExecution.h50 using ToolExecutor::execute;
53 execute(llvm::ArrayRef<
H A DStandaloneExecution.h58 using ToolExecutor::execute;
61 execute(llvm::ArrayRef<
/freebsd-12.1/contrib/llvm/include/llvm/MCA/Stages/
H A DStage.h56 virtual Error execute(InstRef &IR) = 0;
73 return NextInSequence->execute(IR); in moveToTheNextStage()
/freebsd-12.1/contrib/bzip2/
H A Dwords320 The -n instructs make to show the commands it would execute, but
21 not actually execute them.
/freebsd-12.1/stand/forth/
H A Dbrand.4th53 \ If `brand' is defined, execute it
55 brandX @ brandY @ rot execute
71 brandX @ brandY @ rot execute
H A Dbeastie.4th58 \ If `logo' is defined, execute it
60 logoX @ logoY @ rot execute
80 logoX @ logoY @ rot execute
/freebsd-12.1/contrib/llvm/tools/lldb/tools/driver/
H A DOptions.td108 …HelpText<"Tells the debugger to execute this one-line lldb command before any file has been loaded…
135 …HelpText<"Tells the debugger to read in and execute the lldb commands in the given file, after any…
144 …HelpText<"Tells the debugger to read in and execute the lldb commands in the given file, before an…
153 …HelpText<"Tells the debugger to execute this one-line lldb command after any file provided on the …
162 …HelpText<"Tells the debugger to execute this one-line lldb command before any file provided on the…

12345678910>>...14