Searched refs:expr (Results 151 - 175 of 567) sorted by relevance

1234567891011>>

/freebsd-current/tests/sys/geom/class/mirror/
H A D7_test.sh10 nblocks2=`expr $nblocks1 / \( $ddbs / 512 \)`
16 attach_md us0 -t malloc -s `expr $nblocks1 + 1` || exit 1
17 attach_md us1 -t malloc -s `expr $nblocks1 + 1` || exit 1
18 attach_md us2 -t malloc -s `expr $nblocks1 + 1` || exit 1
/freebsd-current/stand/common/
H A Dinterp_parse.c49 #define PARSE_FAIL(expr) \
50 if (expr) { \
/freebsd-current/sbin/hastd/
H A Dlzf.c81 # define expect(expr,value) __builtin_expect ((expr),(value))
84 # define expect(expr,value) (expr)
88 #define expect_false(expr) expect ((expr) != 0, 0)
89 #define expect_true(expr) expect ((expr) != 0, 1)
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindPlan.cpp45 if (m_location.expr.length == rhs.m_location.expr.length)
46 return !memcmp(m_location.expr.opcodes, rhs.m_location.expr.opcodes,
47 m_location.expr.length);
59 m_location.expr.opcodes = opcodes;
60 m_location.expr.length = len;
68 m_location.expr.opcodes = opcodes;
69 m_location.expr.length = len;
83 static void DumpDWARFExpr(Stream &s, llvm::ArrayRef<uint8_t> expr, Threa argument
[all...]
H A DPostfixExpression.cpp46 Node *postfix::ParseOneExpression(llvm::StringRef expr, argument
51 while (std::tie(token, expr) = getToken(expr), !token.empty()) {
98 for (llvm::StringRef expr : exprs) {
100 std::tie(lhs, expr) = getToken(expr);
101 Node *rhs = ParseOneExpression(expr, alloc);
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DTarget.cpp135 bool TargetInfo::needsThunk(RelExpr expr, RelType type, const InputFile *file, argument
150 RelExpr TargetInfo::adjustTlsExpr(RelType type, RelExpr expr) const {
151 return expr;
170 secAddr + rel.offset, *rel.sym, rel.expr),
172 if (rel.expr != R_RELAX_HINT)
/freebsd-current/tests/sys/geom/class/eli/
H A Dattach_test.sh15 attach_md md -t malloc -s `expr $sectors + 1`
53 attach_md md -t malloc -s `expr $sectors + 1`
81 attach_md md -t malloc -s `expr $sectors + 1`
109 attach_md md0 -t malloc -s `expr $sectors + 1`
110 attach_md md1 -t malloc -s `expr $sectors + 1`
111 attach_md md2 -t malloc -s `expr $sectors + 1`
139 attach_md md -t malloc -s `expr $sectors + 1`
/freebsd-current/contrib/dialog/samples/
H A Dwheel16 COLS=`expr "$COLS" - 30`
20 expr "$1" \* "$COLS" / 132
23 expr "$1" \* "$ROWS" / 60
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h156 *opcodes = m_location.expr.opcodes;
157 len = m_location.expr.length;
170 return m_location.expr.opcodes;
176 return m_location.expr.length;
194 } expr; member in union:lldb_private::UnwindPlan::Row::RegisterLocation::__anon1248
246 m_value.expr.opcodes = opcodes;
247 m_value.expr.length = len;
281 *opcodes = m_value.expr.opcodes;
282 len = m_value.expr.length;
291 return m_value.expr
317 } expr; member in union:lldb_private::UnwindPlan::Row::FAValue::__anon1250
[all...]
/freebsd-current/tests/sys/acl/
H A Daclfuzzer.sh42 max=`expr $1 + 1`
44 rnd=`expr $rnd % $max`
216 i=`expr $i + 1`
/freebsd-current/crypto/heimdal/doc/
H A Dmdate-sh84 if (expr $nummonth \> $nummonthtod) > /dev/null;
86 year=`expr $year - 1`
/freebsd-current/crypto/openssh/regress/
H A Dcipher-speed.sh41 n=`expr $n + 1`
/freebsd-current/release/riscv/
H A Dmkisoimages.sh100 espstart=`expr $et_lba \* 2048`
101 espsize=`expr $et_sectors \* 512`
/freebsd-current/release/arm64/
H A Dmkisoimages.sh100 espstart=`expr $et_lba \* 2048`
101 espsize=`expr $et_sectors \* 512`
/freebsd-current/release/amd64/
H A Dmkisoimages.sh105 espstart=`expr $et_lba \* 2048`
106 espsize=`expr $et_sectors \* 512`
/freebsd-current/usr.bin/m4/
H A DMakefile14 SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c parser.y
/freebsd-current/bin/
H A DMakefile16 expr \
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFrame.h109 lldb::SBValue EvaluateExpression(const char *expr);
111 lldb::SBValue EvaluateExpression(const char *expr,
114 lldb::SBValue EvaluateExpression(const char *expr,
118 lldb::SBValue EvaluateExpression(const char *expr,
/freebsd-current/libexec/rc/rc.d/
H A Ddefaultroute27 nocarrier=`expr "${output}" : '.*[[:blank:]]status: \(no carrier\)'`
/freebsd-current/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.h25 Expr *expr; member in union:YYSTYPE
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCXXABI.cpp205 CharUnits CGCXXABI::GetArrayCookieSize(const CXXNewExpr *expr) { argument
206 if (!requiresArrayCookie(expr))
208 return getArrayCookieSizeImpl(expr->getAllocatedType());
219 const CXXNewExpr *expr,
226 bool CGCXXABI::requiresArrayCookie(const CXXDeleteExpr *expr, argument
230 if (expr->doesUsualArrayDeleteWantSize())
236 bool CGCXXABI::requiresArrayCookie(const CXXNewExpr *expr) { argument
239 if (expr->doesUsualArrayDeleteWantSize())
242 return expr->getAllocatedType().isDestructedType();
246 const CXXDeleteExpr *expr, QualTyp
216 InitializeArrayCookie(CodeGenFunction &CGF, Address NewPtr, llvm::Value *NumElements, const CXXNewExpr *expr, QualType ElementType) argument
245 ReadArrayCookie(CodeGenFunction &CGF, Address ptr, const CXXDeleteExpr *expr, QualType eltTy, llvm::Value *&numElements, llvm::Value *&allocPtr, CharUnits &cookieSize) argument
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyLogical.cpp98 return cast<Terminal>(LHS)->expr() == cast<Terminal>(RHS)->expr();
/freebsd-current/contrib/pjdfstest/tests/link/
H A D05.t29 i=`expr $i + 1`
H A D15.t29 i=`expr $i + 1`
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcMCInstLower.cpp62 const SparcMCExpr *expr = SparcMCExpr::create(Kind, MCSym, local
64 return MCOperand::createExpr(expr);

Completed in 408 milliseconds

1234567891011>>