Searched refs:expr (Results 176 - 200 of 559) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/tools/
H A Dembed_mfs.sh82 sec_size=`expr ${sec_end} - ${sec_start}`
/freebsd-13-stable/usr.sbin/crunch/examples/
H A Dfilesystem.conf7 progs sh expr ls mkdir rm sync test
/freebsd-13-stable/usr.bin/lorder/
H A Dlorder.sh80 if [ $(expr "$*" : '.*\.a[[:>:]]') -ne 0 ]; then
/freebsd-13-stable/tests/sys/geom/class/eli/
H A Dconf.sh27 bytes=`expr $osecsize \* $sectors + 512`b
60 bytes=`expr $MAX_SECSIZE \* $sectors + 512`b
/freebsd-13-stable/contrib/byacc/test/yacc/
H A Dexpr.oxout.tab.c18 #define yyparse expr.oxout_parse
22 #define yylex expr.oxout_lex
26 #define yyerror expr.oxout_error
30 #define yychar expr.oxout_char
34 #define yyval expr.oxout_val
38 #define yylval expr.oxout_lval
42 #define yydebug expr.oxout_debug
46 #define yynerrs expr.oxout_nerrs
50 #define yyerrflag expr.oxout_errflag
54 #define yylhs expr
[all...]
/freebsd-13-stable/contrib/mandoc/
H A Dmansearch.c45 struct expr { struct
50 struct expr *next; /* Next child in the parent group. */
51 struct expr *child; /* First child in this group. */
64 static struct ohash *manmerge(struct expr *, struct ohash *);
65 static struct ohash *manmerge_term(struct expr *, struct ohash *);
66 static struct ohash *manmerge_or(struct expr *, struct ohash *);
67 static struct ohash *manmerge_and(struct expr *, struct ohash *);
73 static struct expr *exprcomp(const struct mansearch *,
75 static struct expr *expr_and(const struct mansearch *,
77 static struct expr *exprter
[all...]
/freebsd-13-stable/contrib/byacc/test/btyacc/
H A Dexpr.oxout.tab.c21 #define yyparse expr.oxout_parse
25 #define yylex expr.oxout_lex
29 #define yyerror expr.oxout_error
33 #define yychar expr.oxout_char
37 #define yyval expr.oxout_val
41 #define yylval expr.oxout_lval
45 #define yydebug expr.oxout_debug
49 #define yynerrs expr.oxout_nerrs
53 #define yyerrflag expr.oxout_errflag
57 #define yylhs expr
[all...]
/freebsd-13-stable/crypto/openssh/regress/
H A Drekey.sh30 n=`expr $n - 1`
80 n=`expr $n - 1`
96 n=`expr $n - 1`
115 n=`expr $n - 1`
132 n=`expr $n - 1`
/freebsd-13-stable/usr.bin/nl/
H A Dnl.c63 regex_t expr; /* for type == number_regex */ member in struct:numbering_property
328 (regexec(&numbering_properties[section].expr,
380 regfree(&numbering_properties[section].expr);
385 if ((error = regcomp(&numbering_properties[section].expr,
388 &numbering_properties[section].expr,
391 "%s expr: %s -- %s",
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DTarget.cpp138 bool TargetInfo::needsThunk(RelExpr expr, RelType type, const InputFile *file, argument
154 RelExpr expr) const {
155 return expr;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp175 StreamString expr; local
177 expr.Printf(memory_history_asan_command_format, address, address);
190 exe_ctx, options, expr.GetString(), "", return_value_sp, eval_error);
/freebsd-13-stable/contrib/byacc/test/
H A Dbtyacc_calc1.y227 int dot = 0, expr = 0;
237 if (dot++ || expr)
244 if (expr++)
H A Dcalc1.y212 int dot = 0, expr = 0;
222 if (dot++ || expr)
229 if (expr++)
H A Dvarsyntax_calc1.y214 int dot = 0, expr = 0;
224 if (dot++ || expr)
231 if (expr++)
/freebsd-13-stable/contrib/dialog/samples/
H A Dwheel16 COLS=`expr $COLS - 30`
20 expr $1 \* $COLS / 132
23 expr $1 \* $ROWS / 60
/freebsd-13-stable/bin/pax/
H A Doptions.c1434 char *expr; local
1438 num = strtol(val, &expr, 0);
1439 if ((num == LONG_MAX) || (num <= 0) || (expr == val))
1441 num = strtoq(val, &expr, 0);
1442 if ((num == QUAD_MAX) || (num <= 0) || (expr == val))
1446 switch(*expr) {
1452 ++expr;
1459 ++expr;
1466 ++expr;
1473 ++expr;
[all...]
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_debug.h26 #define KMP_BUILD_ASSERT(expr) static_assert(expr, "Build condition error")
34 extern int __kmp_debug_assert(char const *expr, char const *file, int line);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Dfastmath2_dlib_asm.S458 #define expr R0 define
471 expr= extractu(ia,#8,#23)
477 expr= add(expr, #-126)
482 expr = zxth(expr) define
/freebsd-13-stable/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_private.h124 #define BHND_NV_ASSERT(expr, ...) KASSERT(expr, __VA_ARGS__)
167 #define BHND_NV_ASSERT(expr, msg) do { \
168 if (!(expr)) { \
170 "file %s, line %u\n", __STRING(expr), __FUNCTION__, \
178 #define BHND_NV_ASSERT(expr, msg)
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBFrame.i167 EvaluateExpression (const char *expr);
170 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic);
173 EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic, bool unwind_on_error);
176 EvaluateExpression (const char *expr, SBExpressionOptions &options);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h80 OSLogBufferItem(Kind kind, const Expr *expr, CharUnits size, unsigned flags, argument
82 : TheKind(kind), TheExpr(expr), Size(size), Flags(flags),
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h48 const til::SExpr *expr() const { return Expr; } function in class:clang::threadSafety::lexpr::Terminal
49 til::SExpr *expr() { return Expr; } function in class:clang::threadSafety::lexpr::Terminal
/freebsd-13-stable/contrib/expat/tests/
H A Dxmltest.sh78 SUCCESS=`expr $SUCCESS + 1`
80 ERROR=`expr $ERROR + 1`
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCExpr.cpp78 auto expr = getExpr(); local
79 fixELFSymbolsInTLSFixupsImpl(expr, Asm);
/freebsd-13-stable/crypto/openssh/contrib/
H A Dssh-copy-id83 if expr "$L_ID_FILE" : ".*\.pub$" >/dev/null ; then
110 [ "${SEEN_OPT_I}" ] && expr "$1" : "[-]i" >/dev/null && {
130 test "$#" -le 2 || expr "$2" : "[-]" >/dev/null || {
258 if expr "$NEW_IDS" : "^ERROR: " >/dev/null ; then

Completed in 295 milliseconds

1234567891011>>