Searched refs:expr (Results 101 - 125 of 559) sorted by relevance

1234567891011>>

/freebsd-13-stable/bin/expr/
H A Dexpr.y93 %type <val> start expr
97 start: expr { result = $$; }
99 expr: TOKEN label
100 | '(' expr ')' { $$ = $2; }
101 | expr '|' expr { $$ = op_or($1, $3); }
102 | expr '&' expr { $$ = op_and($1, $3); }
103 | expr '=' expr {
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/
H A Dreservation_006_pos.ksh75 fill_size=`expr $RESV_SIZE + 20971520`
76 write_count=`expr $fill_size / $BLOCK_SIZE`
/freebsd-13-stable/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dossa.h75 #define ossaAssert(agRoot, expr, message) \
77 if (agFALSE == (expr)) \
/freebsd-13-stable/contrib/pjdfstest/tests/ftruncate/
H A D12.t25 ntest=`expr ${ntest} + 1`
/freebsd-13-stable/contrib/pjdfstest/tests/truncate/
H A D12.t25 ntest=`expr ${ntest} + 1`
/freebsd-13-stable/share/examples/netgraph/
H A Dether.bridge107 LINKNUM=`expr ${LINKNUM} + 1`
114 LINKNUM=`expr ${LINKNUM} + 1`
145 LINKNUM=`expr ${LINKNUM} + 1`
150 LINKNUM=`expr ${LINKNUM} + 1`
/freebsd-13-stable/tests/sys/geom/class/mirror/
H A D2_test.sh11 nblocks2=`expr $nblocks1 / \( $ddbs / 512 \)`
17 us0=$(attach_md -t malloc -s `expr $nblocks1 + 1`) || exit 1
18 us1=$(attach_md -t malloc -s `expr $nblocks1 + 1`) || exit 1
19 us2=$(attach_md -t malloc -s `expr $nblocks1 + 1`) || exit 1
H A D5_test.sh11 nblocks2=`expr $nblocks1 / \( $ddbs / 512 \)`
17 us0=$(attach_md -t malloc -s `expr $nblocks1 + 1`) || exit 1
18 us1=$(attach_md -t malloc -s `expr $nblocks1 + 1`) || exit 1
19 us2=$(attach_md -t malloc -s `expr $nblocks1 + 1`) || exit 1
21 gmirror label -b $balance -s `expr $ddbs / 2` $name /dev/${us0} /dev/${us1} /dev/${us2} || exit 1
/freebsd-13-stable/contrib/bc/src/
H A Dbc.c52 vm.expr = bc_parse_expr;
H A Ddc.c52 vm.expr = dc_parse_expr;
/freebsd-13-stable/contrib/ntp/scripts/deprecated/
H A Dntp-groper72 synchost=`expr "$synchost" : '.*refid=\([^,]*\),.*'`
78 stratum=`expr "$stratum" : '.*stratum=\([^,]*\),.*'`
/freebsd-13-stable/tests/sys/cddl/zfs/tests/reservation/
H A Dreservation_009_pos.ksh87 fill_size=`expr $space_avail_still + $RESV_TOLERANCE`
88 write_count=`expr $fill_size / $BLOCK_SIZE`
H A Dreservation_010_pos.ksh87 fill_size=`expr $space_avail_still + $RESV_TOLERANCE`
88 write_count=`expr $fill_size / $BLOCK_SIZE`
/freebsd-13-stable/contrib/sendmail/libsm/
H A Dtest.c100 ** expr -- expression that has been evaluated.
109 sm_test(success, expr, filename, lineno)
111 char *expr;
124 expr);
/freebsd-13-stable/crypto/openssl/include/internal/
H A Dcryptlib.h31 __owur static ossl_inline int ossl_assert_int(int expr, const char *exprstr, argument
34 if (!expr)
37 return expr;
/freebsd-13-stable/tools/tools/nanobsd/rescue/Files/root/
H A DGPT4ZFS_Create.sh6 swapsize=$(expr 1 \* 1024 \* 2048 + 1024)
32 siz=$(expr 1024 \- 34)
42 off=$(expr $align + $swapsize)
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp142 template <RelExpr... Exprs> bool oneof(RelExpr expr) { argument
143 assert(0 <= expr && (int)expr < 64 &&
145 return (uint64_t(1) << expr) & RelExprMaskBuilder<Exprs...>::build();
156 int64_t addend, RelExpr expr) {
157 if (expr == R_MIPS_TLSLD) {
159 c.relocations.push_back({expr, type, offset, addend, &sym});
162 if (expr == R_MIPS_TLSGD) {
164 c.relocations.push_back({expr, type, offset, addend, &sym});
180 typename ELFT::uint offset, int64_t addend, RelExpr expr) {
154 handleMipsTlsRelocation(RelType type, Symbol &sym, InputSectionBase &c, uint64_t offset, int64_t addend, RelExpr expr) argument
179 handleTlsRelocation(RelType type, Symbol &sym, InputSectionBase &c, typename ELFT::uint offset, int64_t addend, RelExpr expr) argument
361 needsPlt(RelExpr expr) argument
368 needsGot(RelExpr expr) argument
376 isRelExpr(RelExpr expr) argument
449 toPlt(RelExpr expr) argument
462 fromPlt(RelExpr expr) argument
614 computeMipsAddend(const RelTy &rel, const RelTy *end, InputSectionBase &sec, RelExpr expr, bool isLocal) argument
649 computeAddend(const RelTy &rel, const RelTy *end, InputSectionBase &sec, RelExpr expr, bool isLocal) argument
1026 addRelativeReloc(InputSectionBase *isec, uint64_t offsetInSec, Symbol *sym, int64_t addend, RelExpr expr, RelType type) argument
1058 RelExpr expr = sym.isTls() ? R_TLS : R_ABS; local
1120 processRelocAux(InputSectionBase &sec, RelExpr expr, RelType type, uint64_t offset, Symbol &sym, const RelTy &rel, int64_t addend) argument
1291 RelExpr expr = target->getRelExpr(type, sym, relocatedAddr); local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Ddebug.h62 #define expect(expr, value) (__builtin_expect((expr), (value)))
64 #define likely(expr) expect((expr) != 0, 1)
65 #define unlikely(expr) expect((expr) != 0, 0)
/freebsd-13-stable/usr.bin/find/
H A Doperator.c126 * replaces "parenthesized" plans in our search plan with "expr" nodes.
131 PLAN *expr; /* pointer to next expression */ local
141 while ((expr = yankexpr(&plan)) != NULL) {
146 if (expr->execute == f_closeparen)
151 tail = result = expr;
153 tail->next = expr;
154 tail = expr;
178 * the expr subplan.
201 * If we encounter ! ( expr ) then look for nots in
202 * the expr subpla
[all...]
/freebsd-13-stable/tests/sys/geom/class/eli/
H A Dattach_test.sh16 md=$(attach_md -t malloc -s `expr $sectors + 1`)
54 md=$(attach_md -t malloc -s `expr $sectors + 1`)
82 md0=$(attach_md -t malloc -s `expr $sectors + 1`)
83 md1=$(attach_md -t malloc -s `expr $sectors + 1`)
84 md2=$(attach_md -t malloc -s `expr $sectors + 1`)
112 md=$(attach_md -t malloc -s `expr $sectors + 1`)
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp200 expr(ignoringParenImpCasts(
201 expr(hasType(
209 expr(ignoringParenImpCasts(
210 expr(hasType(hasCanonicalType(
221 expr(ignoringParenImpCasts(
222 expr(hasType(hasCanonicalType(
236 expr(anyOf(
265 expr(ignoringParenImpCasts(expr(hasType(SuspiciousScalarTypeM))));
311 has(expr(SuspiciousNumberObjectExpr
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/compression/
H A Dcompress_004_pos.ksh60 for start in 0 `expr $RANDOM % $fsz`
63 for len in `expr $RANDOM % $dist` $dist \
64 `expr $start + $dist`; do
/freebsd-13-stable/tests/sys/cddl/zfs/tests/compression/
H A Dcompress_004_pos.ksh74 for start in 0 `expr $RANDOM % $fsz`
77 for len in `expr $RANDOM % $dist` $dist \
78 `expr $start + $dist`; do
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFrame.h100 lldb::SBValue EvaluateExpression(const char *expr);
102 lldb::SBValue EvaluateExpression(const char *expr,
105 lldb::SBValue EvaluateExpression(const char *expr,
109 lldb::SBValue EvaluateExpression(const char *expr,
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A Dsel.h64 struct hx_expr *expr; member in struct:hx_expr_input

Completed in 219 milliseconds

1234567891011>>