| /freebsd/contrib/llvm-project/libc/src/__support/ |
| H A D | libc_assert.h | 19 #define LIBC_ASSERT(COND) assert(COND) argument 61 #define LIBC_ASSERT(COND) \ argument 73 #define LIBC_ASSERT(COND) \ argument 75 if (LIBC_UNLIKELY(!(COND))) { \ 77 ": Assertion failed: '" #COND \
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | cond-late.mk | 23 COND.true= "yes" == "yes" 24 COND.false= "yes" != "yes" 39 @echo ${ ${COND.true} :?yes:no} 40 @echo ${ ${COND.false} :?yes:no}
|
| H A D | cond-token-plain.mk | 257 .if ${${COND} == "VAR.":?yes:no} != "yes"
|
| H A D | varmod-ifelse.mk | 39 COND:= ${${UNDEF} == "":?bad-assign:bad-assign}
|
| /freebsd/sys/contrib/alpine-hal/ |
| H A D | al_hal_plat_services.h | 351 #define al_assert(COND) \ argument 353 if (!(COND)) \ 356 __FILE__, __LINE__, __func__, #COND); \
|
| /freebsd/sys/contrib/x86emu/ |
| H A D | x86emu_regs.h | 123 #define CONDITIONAL_SET_FLAG(COND,FLAG) \ argument 124 if (COND) SET_FLAG(FLAG); else CLEAR_FLAG(FLAG)
|
| /freebsd/crypto/openssl/apps/ |
| H A D | speed.c | 591 #define COND(unused_cond) (run && count < (testmode ? 1 : INT_MAX)) macro 727 for (count = 0; COND(c[algindex][testnum]); count++) { in EVP_Digest_loop() 736 for (count = 0; COND(c[algindex][testnum]); count++) { in EVP_Digest_loop() 818 for (count = 0; COND(c[algindex][testnum]); count++) { in EVP_MAC_loop() 884 for (count = 0; COND(c[algindex][testnum]); count++) in EVP_Cipher_loop() 898 for (count = 0; COND(c[D_GHASH][testnum]); count++) { in GHASH_loop() 951 for (count = 0; COND(c[D_RAND][testnum]); count++) in RAND_bytes_loop() 965 for (count = 0; COND(c[D_EVP][testnum]); count++) { in EVP_Update_loop() 973 for (count = 0; COND(c[D_EVP][testnum]); count++) { in EVP_Update_loop() 1007 for (count = 0; COND(c[D_EVP][testnum]); count++) { in EVP_Update_loop_aead_enc() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 136 enum { INIT, RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END }; enumerator 167 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); } in getCond() 182 return cast_or_null<Expr>(SubExprs[COND]); in getCond() 197 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); } in setCond()
|
| H A D | Stmt.h | 2836 enum { BODY, COND, END_EXPR }; 2853 Expr *getCond() { return reinterpret_cast<Expr *>(SubExprs[COND]); } 2855 return reinterpret_cast<Expr *>(SubExprs[COND]); 2858 void setCond(Expr *Cond) { SubExprs[COND] = reinterpret_cast<Stmt *>(Cond); } 2894 enum { INIT, CONDVAR, COND, INC, BODY, END_EXPR }; 2933 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); } 2938 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);} 2943 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
|
| H A D | Expr.h | 4320 enum { COND, LHS, RHS, END_EXPR }; enumerator 4330 SubExprs[COND] = cond; in ConditionalOperator() 4342 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond() 4382 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS }; enumerator 4402 SubExprs[COND] = cond; in BinaryConditionalOperator() 4423 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond() 4777 enum { COND, LHS, RHS, END_EXPR }; enumerator 4787 SubExprs[COND] = cond; in ChooseExpr() 4816 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond() 4817 void setCond(Expr *E) { SubExprs[COND] = E; } in setCond()
|
| /freebsd/contrib/bmake/ |
| H A D | cond.c | 306 DEBUG2(COND, "\"%s\" exists in \"%s\"\n", file, path); in FuncExists() 308 DEBUG1(COND, "\"%s\" does not exist\n", file); in FuncExists() 511 DEBUG3(COND, "Comparing %f %s %f\n", lhs, opname[op], rhs); in EvalCompareNum() 540 DEBUG3(COND, "Comparing \"%s\" %s \"%s\"\n", lhs, opname[op], rhs); in EvalCompareStr() 922 DEBUG1(COND, "CondParser_Eval: %s\n", par.p); in CondEvalExpression()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600InstrFormats.td | 370 bits<2> COND; 382 let Word1{9-8} = COND; 408 bits<2> COND; 417 let Word1{9-8} = COND;
|
| H A D | R600Instructions.td | 607 let COND = 0; 627 let COND = 0;
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/ |
| H A D | riscv.c | 247 #define SET_SINGLE_RISCV_FEATURE(COND, EXT) \ argument 248 if (COND) { \
|
| /freebsd/cddl/contrib/opensolaris/lib/libdtrace/arm/ |
| H A D | dt_isadep.c | 47 #define COND(x) (((x) >> 25) & 0x0f) macro
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 60 SubExprs[COND] = Cond; in CXXForRangeStmt()
|
| H A D | Stmt.cpp | 1072 SubExprs[COND] = Cond; in ForStmt()
|
| /freebsd/contrib/file/src/ |
| H A D | encoding.c | 262 #define LOOKS(NAME, COND) \ argument 274 if (COND) \
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrFragments.td | 18 // RES = op PTR, PASSTHRU, COND, EFLAGS 22 // op VAL, PTR, COND, EFLAGS
|
| /freebsd/contrib/openpam/ |
| H A D | aclocal.m4 | 128 # AM_COND_IF(COND, [IF-TRUE], [IF-FALSE]) 130 # If the shell condition COND is true, execute IF-TRUE, otherwise execute
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrFormats.td | 1897 bits<5> COND; 1904 let Inst{21-25} = COND;
|
| H A D | PPCInstr64Bit.td | 1163 (outs g8rc:$RT), (ins g8rc_nox0:$RA, g8rc:$RB, crbitrc:$COND), 1164 "isel $RT, $RA, $RB, $COND", IIC_IntISEL,
|
| H A D | PPCInstrInfo.td | 3105 (outs gprc:$RT), (ins gprc_nor0:$RA, gprc:$RB, crbitrc:$COND), 3106 "isel $RT, $RA, $RB, $COND", IIC_IntISEL,
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1161 E->SubExprs[ConditionalOperator::COND] = Record.readSubExpr(); in VisitConditionalOperator() 1173 E->SubExprs[BinaryConditionalOperator::COND] = Record.readSubExpr(); in VisitBinaryConditionalOperator()
|