Searched refs:eval (Results 76 - 100 of 163) sorted by relevance

1234567

/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp26 class BuiltinFunctionChecker : public Checker<eval::Call> {
H A DDebugIteratorModeling.cpp29 : public Checker<eval::Call> {
H A DSTLAlgorithmModeling.cpp27 class STLAlgorithmModeling : public Checker<eval::Call> {
H A DErrnoTesterChecker.cpp28 class ErrnoTesterChecker : public Checker<eval::Call> {
/openbsd-current/usr.bin/m4/
H A Dextern.h38 /* eval.c */
39 extern void eval(const char *[], int, int, int);
H A Dmisc.c265 m4errx(int eval, const char *fmt, ...) argument
277 exit(eval);
/openbsd-current/gnu/usr.bin/texinfo/util/
H A Dtexi-docstring-magic.el185 (if (eval predicate)
187 (replacement (eval replace))
/openbsd-current/usr.bin/script/
H A Dscript.c341 done(int eval) argument
355 exit(eval);
/openbsd-current/usr.sbin/eeprom/
H A Dophandlers.c49 extern int eval;
70 ++eval; \
/openbsd-current/usr.bin/nm/
H A Dnm.c135 int ch, eval; local
228 eval = 0;
231 eval |= process_file(argc, *argv);
234 eval |= process_file(1, "a.out");
240 exit(eval);
/openbsd-current/bin/expr/
H A Dexpr.c240 int eval; local
254 if ((eval = regcomp(&rp, r->u.s, 0)) != 0) {
255 regerror(eval, &rp, errbuf, sizeof(errbuf));
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Ditbl-ops.c780 unsigned long eval; local
797 eval = apply_range (e->value, e->range);
803 eval = apply_range (e->value, *r);
808 if (val == eval)
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Ddominance.c124 static TBB eval PARAMS ((struct dom_info *, TBB));
371 Also performance wise compress() ranges _far_ behind eval(). */
387 eval (di, v) function
511 /* Call eval() only if really needed. If k1 is above V in DFS tree,
512 then we know, that eval(k1) == k1 and key[k1] == k1. */
514 k1 = di->key[eval (di, k1)];
527 k = eval (di, w);
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Ditbl-ops.c769 unsigned long eval; local
786 eval = apply_range (e->value, e->range);
792 eval = apply_range (e->value, *r);
797 if (val == eval)
/openbsd-current/usr.bin/find/
H A Doperator.c102 node->eval = f_expr;
H A Dfind.c223 for (p = plan; p && (p->eval)(p, entry); p = p->next)
240 * does not evaluate each plan's eval() function; it is intended
/openbsd-current/usr.bin/login/
H A Dlogin.c911 sleepexit(int eval) argument
915 exit(eval);
919 quickexit(int eval) argument
923 exit(eval);
/openbsd-current/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheckImpl.h186 virtual Expected<ExpressionValue> eval() const = 0;
210 Expected<ExpressionValue> eval() const override { return Value; }
337 Expected<ExpressionValue> eval() const override;
375 Expected<ExpressionValue> eval() const override;
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Deval.t11 eval 'pass();';
15 eval "\$foo\n = # this is a comment\n'ok 3';";
18 eval "\$foo\n = # this is a comment\n'ok 4\n';";
21 print eval '
25 print eval '$foo = /'; # this tests for a call through fatal()
28 is scalar(eval '++'), undef, 'eval syntax error in scalar context';
29 is scalar(eval 'die'), undef, 'eval run-time error in scalar context';
30 is +()=eval '
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Math-BigInt/t/
H A Dbigfltpm.inc161 $got = eval $try;
317 $want = eval $try;
/openbsd-current/usr.bin/sed/
H A Dprocess.c523 int eval; local
535 eval = regexec(defpreg, string,
537 switch (eval) {
543 error(FATAL, "RE error: %s", strregerror(eval, defpreg));
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h251 eval::Assume,
252 eval::Call > {
/openbsd-current/usr.bin/vi/ex/
H A Dex_subst.c347 int didsub, do_eol_match, eflags, nempty, eval; local
538 eval = regexec(re, (char *)s, 10, match, eflags);
545 if (eval == REG_NOMATCH)
547 if (eval != 0) {
548 re_error(sp, eval, re);
/openbsd-current/usr.sbin/bgpd/
H A Drde_update.c242 * peer eval settings prefixes are selected and distributed.
264 if (peer->eval.maxpaths != 0 &&
265 maxpaths >= peer->eval.maxpaths)
267 if (peer->eval.extrapaths != 0 &&
268 extrapaths >= peer->eval.extrapaths)
273 switch (peer->eval.mode) {
300 fatalx("unknown add-path eval mode");
/openbsd-current/gnu/llvm/clang/lib/Tooling/Transformer/
H A DRewriteRule.cpp56 auto Replacement = E.Replacement->eval(Result);
62 auto Note = E.Note->eval(Result);
147 llvm::Error eval(const ast_matchers::MatchFinder::MatchResult &,

Completed in 403 milliseconds

1234567