Home
last modified time | relevance | path

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

1234567

/freebsd-13.1/contrib/subversion/subversion/include/
H A Dsvn_error.h351 #define SVN_ERR(expr) \ argument
371 #define svn_error_trace(expr) svn_error__trace(__FILE__, __LINE__, (expr)) argument
373 #define svn_error_trace(expr) (expr) argument
402 #define SVN_ERR_W(expr, wrap_msg) \ argument
422 #define SVN_INT_ERR(expr) \ argument
542 #define SVN_ERR_ASSERT_E(expr, err) assert((expr)) argument
544 #define SVN_ERR_ASSERT_E(expr, err) \ argument
578 #define SVN_ERR_ASSERT(expr) assert((expr)) argument
580 #define SVN_ERR_ASSERT(expr) \ argument
594 #define SVN_ERR_ASSERT_NO_RETURN(expr) \ argument
/freebsd-13.1/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-13.1/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-13.1/contrib/subversion/subversion/include/private/
H A Dsvn_sqlite.h442 #define SVN_SQLITE__WITH_TXN(expr, db) \ argument
468 #define SVN_SQLITE__WITH_IMMEDIATE_TXN(expr, db) \ argument
494 #define SVN_SQLITE__WITH_LOCK(expr, db) \ argument
560 #define SVN_SQLITE__ERR_CLOSE(expr, db) do \ argument
H A Dsvn_mutex.h100 #define SVN_MUTEX__WITH_LOCK(mutex, expr) \ argument
/freebsd-13.1/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-13.1/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-13.1/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dbdb-err.h87 #define SVN_BDB_ERR(bdb, expr) \ argument
99 #define BDB_ERR(expr) \ argument
/freebsd-13.1/sbin/hastd/
H A Dpjdlog.h97 #define PJDLOG_VERIFY(expr) do { \ argument
103 #define PJDLOG_RVERIFY(expr, ...) do { \ argument
112 #define PJDLOG_ASSERT(expr) do { } while (0) argument
115 #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-13.1/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-13.1/lib/libpjdlog/
H A Dpjdlog.h138 #define PJDLOG_VERIFY(expr) do { \ argument
144 #define PJDLOG_RVERIFY(expr, ...) do { \ argument
150 #define PJDLOG_EVERIFY(expr) do { \ argument
159 #define PJDLOG_ASSERT(expr) do { } while (0) argument
162 #define PJDLOG_ASSERT(expr) do { \ argument
168 #define PJDLOG_RASSERT(expr, ...) do { \ argument
/freebsd-13.1/contrib/xz/src/liblzma/common/
H A Dcommon.h40 # define likely(expr) __builtin_expect(expr, true) argument
41 # define unlikely(expr) __builtin_expect(expr, false) argument
43 # define likely(expr) (expr) argument
44 # define unlikely(expr) (expr) argument
278 #define return_if_error(expr) \ argument
/freebsd-13.1/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-13.1/contrib/bearssl/T0/
H A DTPointerExpr.cs29 string expr; field in TPointerExpr
32 internal TPointerExpr(string expr, int min, int max) in TPointerExpr()
/freebsd-13.1/sys/dev/pms/freebsd/driver/common/
H A Dosdebug.h45 #define OS_ASSERT(expr, message) \ argument
56 #define OS_ASSERT(expr, message) \ argument
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp153 template <RelExpr... Exprs> bool oneof(RelExpr expr) { in oneof()
167 int64_t addend, RelExpr expr) { in handleMipsTlsRelocation()
376 static bool needsPlt(RelExpr expr) { in needsPlt()
383 static bool needsGot(RelExpr expr) { in needsGot()
391 static bool isRelExpr(RelExpr expr) { in isRelExpr()
465 static RelExpr toPlt(RelExpr expr) { in toPlt()
478 static RelExpr fromPlt(RelExpr expr) { in fromPlt()
638 InputSectionBase &sec, RelExpr expr, in computeMipsAddend()
673 InputSectionBase &sec, RelExpr expr, in computeAddend()
1091 RelExpr expr = sym.isTls() ? R_TPREL : R_ABS; in addGotEntry() local
[all …]
/freebsd-13.1/contrib/bmake/
H A Dvar.c600 char *expr; in ExportVarEnv() local
2032 Expr *expr; member
2048 Expr_Define(Expr *expr) in Expr_Define()
2367 Expr *expr = ch->expr; in ModifyWords() local
2404 Expr *expr = ch->expr; in ApplyModifier_Loop() local
2454 Expr *expr = ch->expr; in ApplyModifier_Defined() local
2516 Expr *expr = ch->expr; in ApplyModifier_Literal() local
2551 Expr *expr; in ApplyModifier_Time() local
2599 Expr *expr = ch->expr; in ApplyModifier_Path() local
3976 Expr *expr, in ApplyModifiers()
[all …]
/freebsd-13.1/usr.bin/csplit/
H A Dcsplit.c102 const char *expr; in main() local
357 do_rexp(const char *expr) in do_rexp()
441 do_lineno(const char *expr) in do_lineno()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCXXABI.cpp164 CharUnits CGCXXABI::GetArrayCookieSize(const CXXNewExpr *expr) { in GetArrayCookieSize()
178 const CXXNewExpr *expr, in InitializeArrayCookie()
185 bool CGCXXABI::requiresArrayCookie(const CXXDeleteExpr *expr, in requiresArrayCookie()
195 bool CGCXXABI::requiresArrayCookie(const CXXNewExpr *expr) { in requiresArrayCookie()
205 const CXXDeleteExpr *expr, QualType eltTy, in ReadArrayCookie()
/freebsd-13.1/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Ddebug.h62 #define expect(expr, value) (__builtin_expect((expr), (value))) argument
64 #define likely(expr) expect((expr) != 0, 1) argument
65 #define unlikely(expr) expect((expr) != 0, 0) argument
/freebsd-13.1/lib/libnv/tests/
H A Dnvlist_exists_test.c39 #define CHECK(expr) do { \ argument
H A Dnvlist_free_test.c39 #define CHECK(expr) do { \ argument
/freebsd-13.1/tests/sys/audit/
H A Dutils.h54 #define REQUIRE_EXTATTR_RESULT(_expected, expr) \ argument

1234567