Home
last modified time | relevance | path

Searched defs:expr (Results 1 – 25 of 166) sorted by relevance

1234567

/freebsd/contrib/kyua/utils/
H A Dsanity.hpp75 # define _UTILS_ASSERT(type, expr, message) \ argument
81 # define _UTILS_ASSERT(type, expr, message) do {} while (0) argument
95 #define INV(expr) _UTILS_ASSERT(utils::invariant, expr, #expr) argument
105 #define INV_MSG(expr, msg) _UTILS_ASSERT(utils::invariant, expr, msg) argument
118 #define PRE(expr) _UTILS_ASSERT(utils::precondition, expr, #expr) argument
128 #define PRE_MSG(expr, msg) _UTILS_ASSERT(utils::precondition, expr, msg) argument
141 #define POST(expr) _UTILS_ASSERT(utils::postcondition, expr, #expr) argument
151 #define POST_MSG(expr, msg) _UTILS_ASSERT(utils::postcondition, expr, msg) argument
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpressionList.cpp27 const auto *expr = m_exprs.GetEntryAtIndex(0); in GetAlwaysValidExpr() local
34 DWARFExpression expr) { in AddExpression()
44 if (const DWARFExpression *expr = in GetExpressionData() local
60 if (const DWARFExpression *expr = GetAlwaysValidExpr()) in GetExpressionAtAddress() local
92 const DWARFExpression &expr = m_exprs.GetEntryRef(0).data; in ContainsThreadLocalStorage() local
106 DWARFExpression &expr = m_exprs.GetEntryRef(0).data; in LinkThreadLocalStorage() local
121 const DWARFExpression *expr = nullptr; in MatchesOperand() local
148 if (const DWARFExpression *expr = GetAlwaysValidExpr()) { in DumpLocations() local
158 const auto &expr = entry.data; in DumpLocations() local
186 const auto &expr = entry.data; in GetDescription() local
[all …]
/freebsd/contrib/elftoolchain/libdwarf/
H A Ddwarf_pro_expr.c32 _dwarf_add_expr(Dwarf_P_Expr expr, Dwarf_Small opcode, Dwarf_Unsigned val1, in _dwarf_add_expr()
64 _dwarf_expr_into_block(Dwarf_P_Expr expr, Dwarf_Error *error) in _dwarf_expr_into_block()
149 dwarf_add_expr_gen(Dwarf_P_Expr expr, Dwarf_Small opcode, Dwarf_Unsigned val1, in dwarf_add_expr_gen()
165 dwarf_add_expr_addr(Dwarf_P_Expr expr, Dwarf_Unsigned address, in dwarf_add_expr_addr()
173 dwarf_add_expr_addr_b(Dwarf_P_Expr expr, Dwarf_Unsigned address, in dwarf_add_expr_addr_b()
192 dwarf_expr_current_offset(Dwarf_P_Expr expr, Dwarf_Error *error) in dwarf_expr_current_offset()
204 dwarf_expr_into_block(Dwarf_P_Expr expr, Dwarf_Unsigned *length, in dwarf_expr_into_block()
/freebsd/crypto/heimdal/lib/hx509/
H A Dsel.c39 struct hx_expr *expr; in _hx509_make_expr() local
86 eval_comp(hx509_context context, hx509_env env, struct hx_expr *expr) in eval_comp()
159 _hx509_expr_eval(hx509_context context, hx509_env env, struct hx_expr *expr) in _hx509_expr_eval()
183 _hx509_expr_free(struct hx_expr *expr) in _hx509_expr_free()
H A Dsel-gram.y47 struct hx_expr *expr; member
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_util.h26 #define COMPILE_TIME_ASSERT(expr) COMPILE_TIME_ASSERT1(expr, __COUNTER__) argument
27 #define COMPILE_TIME_ASSERT1(expr, cnt) COMPILE_TIME_ASSERT2(expr, cnt) argument
28 #define COMPILE_TIME_ASSERT2(expr, cnt) \ argument
/freebsd/contrib/openbsm/bin/auditdistd/
H A Dpjdlog.h95 #define PJDLOG_VERIFY(expr) do { \ argument
101 #define PJDLOG_RVERIFY(expr, ...) do { \ argument
110 #define PJDLOG_ASSERT(expr) do { } while (0) argument
113 #define PJDLOG_ASSERT(expr) PJDLOG_VERIFY(expr) argument
/freebsd/sbin/hastd/
H A Dpjdlog.h95 #define PJDLOG_VERIFY(expr) do { \ argument
101 #define PJDLOG_RVERIFY(expr, ...) do { \ argument
110 #define PJDLOG_ASSERT(expr) do { } while (0) argument
113 #define PJDLOG_ASSERT(expr) PJDLOG_VERIFY(expr) argument
H A Dlzf.c81 # define expect(expr,value) __builtin_expect ((expr),(value)) argument
84 # define expect(expr,value) (expr) argument
88 #define expect_false(expr) expect ((expr) != 0, 0) argument
89 #define expect_true(expr) expect ((expr) != 0, 1) argument
/freebsd/lib/libpjdlog/
H A Dpjdlog.h136 #define PJDLOG_VERIFY(expr) do { \ argument
142 #define PJDLOG_RVERIFY(expr, ...) do { \ argument
148 #define PJDLOG_EVERIFY(expr) do { \ argument
157 #define PJDLOG_ASSERT(expr) do { } while (0) argument
160 #define PJDLOG_ASSERT(expr) do { \ argument
166 #define PJDLOG_RASSERT(expr, ...) do { \ argument
/freebsd/contrib/mandoc/
H A Dmansearch.c45 struct expr { struct
47 struct dbm_match match; /* Match type and expression. */ argument
50 struct expr *next; /* Next child in the parent group. */ argument
51 struct expr *child; /* First child in this group. */ argument
64 static struct ohash *manmerge(struct expr *, struct ohash *); argument
/freebsd/contrib/bearssl/T0/
H A DTPointerExpr.cs29 string expr; field in TPointerExpr
32 internal TPointerExpr(string expr, int min, int max) in TPointerExpr()
/freebsd/contrib/xz/src/liblzma/common/
H A Dcommon.h121 # define likely(expr) __builtin_expect(expr, true) argument
122 # define unlikely(expr) __builtin_expect(expr, false) argument
124 # define likely(expr) (expr) argument
125 # define unlikely(expr) (expr) argument
377 #define return_if_error(expr) \ argument
/freebsd/sys/dev/pms/freebsd/driver/common/
H A Dosdebug.h44 #define OS_ASSERT(expr, message) \ argument
55 #define OS_ASSERT(expr, message) \ argument
/freebsd/contrib/bmake/
H A Dvar.c270 const char *expr; member
664 char *expr; in ExportVarEnv() local
2002 Expr *expr; member
2018 Expr_Define(Expr *expr) in Expr_Define()
2338 Expr *expr = ch->expr; in ModifyWords() local
2378 Expr *expr = ch->expr; in ApplyModifier_Loop() local
2470 Expr *expr = ch->expr; in ApplyModifier_Defined() local
2489 Expr *expr = ch->expr; in ApplyModifier_Literal() local
2524 Expr *expr; in ApplyModifier_Time() local
4025 Expr *expr, in ApplyModifiers()
[all …]
/freebsd/usr.bin/csplit/
H A Dcsplit.c99 const char *expr; in main() local
354 do_rexp(const char *expr) in do_rexp()
438 do_lineno(const char *expr) in do_lineno()
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dauto_cast.h20 #define _LIBCPP_AUTO_CAST(expr) static_cast<::std::__decay_t<decltype((expr))> >(expr) argument
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCXXABI.cpp205 CharUnits CGCXXABI::GetArrayCookieSize(const CXXNewExpr *expr) { in GetArrayCookieSize()
219 const CXXNewExpr *expr, in InitializeArrayCookie()
226 bool CGCXXABI::requiresArrayCookie(const CXXDeleteExpr *expr, in requiresArrayCookie()
236 bool CGCXXABI::requiresArrayCookie(const CXXNewExpr *expr) { in requiresArrayCookie()
246 const CXXDeleteExpr *expr, QualType eltTy, in ReadArrayCookie()
/freebsd/lib/libnv/tests/
H A Dnvlist_exists_test.c37 #define CHECK(expr) do { \ argument
H A Dnvlist_free_test.c37 #define CHECK(expr) do { \ argument
H A Dnvlist_add_test.c38 #define CHECK(expr) do { \ argument
/freebsd/usr.bin/m4/
H A Dexpr.c39 expr(const char *toeval) in expr() function
/freebsd/tests/sys/audit/
H A Dutils.h52 #define REQUIRE_EXTATTR_RESULT(_expected, expr) \ argument
/freebsd/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp156 template <RelExpr... Exprs> static bool oneof(RelExpr expr) { in oneof()
205 static bool needsPlt(RelExpr expr) { in needsPlt()
211 bool lld::elf::needsGot(RelExpr expr) { in needsGot()
220 static bool isRelExpr(RelExpr expr) { in isRelExpr()
227 static RelExpr toPlt(RelExpr expr) { in toPlt()
244 static RelExpr fromPlt(RelExpr expr) { in fromPlt()
488 int64_t RelocationScanner::computeMipsAddend(const RelTy &rel, RelExpr expr, in computeMipsAddend()
870 Symbol &sym, int64_t addend, RelExpr expr, in addRelativeReloc()
1051 void RelocationScanner::processAux(RelExpr expr, RelType type, uint64_t offset, in processAux()
1247 int64_t addend, RelExpr expr) { in handleMipsTlsRelocation()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h48 const til::SExpr *expr() const { return Expr; } in expr() function
49 til::SExpr *expr() { return Expr; } in expr() function

1234567