/freebsd-src/contrib/kyua/utils/ |
H A D | sanity.hpp | 75 # 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-src/contrib/llvm-project/lldb/source/Expression/ |
H A D | DWARFExpressionList.cpp | 27 const auto *expr = m_exprs.GetEntryAtIndex(0); in GetAlwaysValidExpr() local 34 DWARFExpression expr) { in AddExpression() argument 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; ContainsThreadLocalStorage() local 106 DWARFExpression &expr = m_exprs.GetEntryRef(0).data; LinkThreadLocalStorage() local 121 const DWARFExpression *expr = nullptr; MatchesOperand() local 148 if (const DWARFExpression *expr = GetAlwaysValidExpr()) { DumpLocations() local 158 const auto &expr = entry.data; DumpLocations() local 186 const auto &expr = entry.data; GetDescription() local 210 DWARFExpression expr; Evaluate() local [all...] |
/freebsd-src/contrib/elftoolchain/libdwarf/ |
H A D | dwarf_pro_expr.c | 32 _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-src/crypto/heimdal/lib/hx509/ |
H A D | sel.c | 39 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 D | sel-gram.y | 47 struct hx_expr *expr; member
|
/freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | int_util.h | 26 #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-src/contrib/openbsm/bin/auditdistd/ |
H A D | pjdlog.h | 95 #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-src/sbin/hastd/ |
H A D | pjdlog.h | 95 #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 D | lzf.c | 81 # 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-src/lib/libpjdlog/ |
H A D | pjdlog.h | 136 #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-src/contrib/mandoc/ |
H A D | mansearch.c | 45 struct expr { struct 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 47 matchexpr global() argument [all...] |
/freebsd-src/contrib/bearssl/T0/ |
H A D | TPointerExpr.cs | 29 string expr; field in TPointerExpr 32 internal TPointerExpr(string expr, int min, int max) in TPointerExpr()
|
/freebsd-src/contrib/xz/src/liblzma/common/ |
H A D | common.h | 120 # define likely(expr) __builtin_expect(expr, true) argument 121 # define unlikely(expr) __builtin_expect(expr, false) argument 123 # define likely(expr) (expr) argument 124 # define unlikely(expr) (expr) argument 376 #define return_if_error(expr) \ argument
|
/freebsd-src/sys/dev/pms/freebsd/driver/common/ |
H A D | osdebug.h | 44 #define OS_ASSERT(expr, message) \ argument 55 #define OS_ASSERT(expr, message) \ argument
|
/freebsd-src/usr.bin/csplit/ |
H A D | csplit.c | 99 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-src/contrib/bmake/ |
H A D | var.c | 685 char *expr; ExportVarEnv() local 957 char *expr = str_concat3( UnexportVar() local 2033 Expr *expr; global() member 2049 Expr_Define(Expr * expr) Expr_Define() argument 2056 Expr_Str(const Expr * expr) Expr_Str() argument 2062 Expr_Words(const Expr * expr) Expr_Words() argument 2068 Expr_SetValue(Expr * expr,FStr value) Expr_SetValue() argument 2075 Expr_SetValueOwn(Expr * expr,char * value) Expr_SetValueOwn() argument 2081 Expr_SetValueRefer(Expr * expr,const char * value) Expr_SetValueRefer() argument 2087 Expr_ShouldEval(const Expr * expr) Expr_ShouldEval() argument 2348 Expr *expr = ch->expr; ModifyWords() local 2388 Expr *expr = ch->expr; ApplyModifier_Loop() local 2486 Expr *expr = ch->expr; ApplyModifier_Defined() local 2506 Expr *expr = ch->expr; ApplyModifier_Literal() local 2541 Expr *expr; ApplyModifier_Time() local 2601 Expr *expr = ch->expr; ApplyModifier_Path() local 2632 Expr *expr = ch->expr; ApplyModifier_ShellCommand() local 2719 Expr *expr = ch->expr; ParseModifier_Match() local 3174 Expr *expr = ch->expr; ApplyModifier_To() local 3226 Expr *expr = ch->expr; ApplyModifier_Words() local 3454 Expr *expr = ch->expr; ApplyModifier_IfElse() local 3534 Expr *expr = ch->expr; ApplyModifier_Assign() local 3601 Expr *expr = ch->expr; ApplyModifier_Remember() local 3704 Expr *expr = ch->expr; ApplyModifier_SysV() local 3755 Expr *expr = ch->expr; ApplyModifier_SunShell() local 3779 ShouldLogInSimpleFormat(const Expr * expr) ShouldLogInSimpleFormat() argument 3788 const Expr *expr = ch->expr; LogBeforeApply() local 3819 const Expr *expr = ch->expr; LogAfterApply() local 3929 Expr *expr = ch->expr; ApplyModifiersIndirect() local 4028 ModChain_Init(expr,startc,endc,sep,oneBigWord) global() argument 4032 ModChain_Init(Expr * expr,char startc,char endc,char sep,bool oneBigWord) ModChain_Init() argument 4047 ApplyModifiers(Expr * expr,const char ** pp,char startc,char endc) ApplyModifiers() argument 4445 Expr expr; Expr_Init() local 4533 Expr expr = Expr_Init(NULL, FStr_InitRefer(NULL), emode, Var_Parse() local [all...] |
/freebsd-src/contrib/llvm-project/libcxx/include/__utility/ |
H A D | auto_cast.h | 20 #define _LIBCPP_AUTO_CAST(expr) static_cast<::std::__decay_t<decltype((expr))> >(expr) argument
|
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGCXXABI.cpp | 236 bool CGCXXABI::requiresArrayCookie(const CXXDeleteExpr *expr, in requiresArrayCookie() argument 246 bool CGCXXABI::requiresArrayCookie(const CXXNewExpr *expr) { in ReadArrayCookie() argument 205 GetArrayCookieSize(const CXXNewExpr * expr) GetArrayCookieSize() argument 219 InitializeArrayCookie(CodeGenFunction & CGF,Address NewPtr,llvm::Value * NumElements,const CXXNewExpr * expr,QualType ElementType) InitializeArrayCookie() argument 226 requiresArrayCookie(const CXXDeleteExpr * expr,QualType elementType) requiresArrayCookie() argument [all...] |
/freebsd-src/tests/sys/audit/ |
H A D | utils.h | 52 #define REQUIRE_EXTATTR_RESULT(_expected, expr) \ argument
|
/freebsd-src/lib/libnv/tests/ |
H A D | nvlist_free_test.c | 37 if ((expr)) \ argument
|
H A D | nvlist_exists_test.c | 37 if ((expr)) \ argument
|
H A D | nvlist_add_test.c | 38 if ((expr)) \ argument
|
/freebsd-src/usr.bin/m4/ |
H A D | expr.c | 39 expr(const char *toeval) in expr() function
|
/freebsd-src/contrib/llvm-project/lld/ELF/ |
H A D | Relocations.cpp | 156 template <RelExpr... Exprs> static bool oneof(RelExpr expr) { in oneof() argument 205 static bool needsPlt(RelExpr expr) { in needsPlt() argument 211 bool lld::elf::needsGot(RelExpr expr) { in needsGot() argument 220 isRelExpr(RelExpr expr) isRelExpr() argument 227 toPlt(RelExpr expr) toPlt() argument 244 fromPlt(RelExpr expr) fromPlt() argument 488 computeMipsAddend(const RelTy & rel,RelExpr expr,bool isLocal) const computeMipsAddend() argument 870 addRelativeReloc(InputSectionBase & isec,uint64_t offsetInSec,Symbol & sym,int64_t addend,RelExpr expr,RelType type) addRelativeReloc() argument 1051 processAux(RelExpr expr,RelType type,uint64_t offset,Symbol & sym,int64_t addend) const processAux() argument 1247 handleMipsTlsRelocation(RelType type,Symbol & sym,InputSectionBase & c,uint64_t offset,int64_t addend,RelExpr expr) handleMipsTlsRelocation() argument 1270 handleTlsRelocation(RelType type,Symbol & sym,InputSectionBase & c,uint64_t offset,int64_t addend,RelExpr expr) handleTlsRelocation() argument 1415 RelExpr expr = target->getRelExpr(type, sym, sec->content().data() + offset); scanOne() local [all...] |
/freebsd-src/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyLogical.h | 48 const til::SExpr *expr() const { return Expr; } in expr() function 49 til::SExpr *expr() { return Expr; } in expr() function
|