| /freebsd-13.1/contrib/bmake/unit-tests/ |
| H A D | cond-late.mk | 19 COND.true= "yes" == "yes" 20 COND.false= "yes" != "yes" 26 @echo ${ ${COND.true} :?yes:no} 27 @echo ${ ${COND.false} :?yes:no}
|
| H A D | varmod-ifelse.mk | 37 COND:= ${${UNDEF} == "":?bad-assign:bad-assign}
|
| H A D | cond-token-plain.mk | 246 .if ${${COND} == "VAR.":?yes:no} != "yes"
|
| /freebsd-13.1/cddl/contrib/opensolaris/lib/libdtrace/sparc/ |
| H A D | dt_isadep.c | 40 #define COND(x) (((x) >> 25) & 0x0f) macro 202 baa = COND(text[i]) == 8 && A(text[i]); in dt_pid_create_return_probe() 209 baa = COND(text[i]) == 8 && A(text[i]); in dt_pid_create_return_probe() 224 baa = COND(text[i]) == 8 && A(text[i]); in dt_pid_create_return_probe() 231 baa = COND(text[i]) == 8 && A(text[i]); in dt_pid_create_return_probe()
|
| /freebsd-13.1/crypto/openssl/apps/ |
| H A D | speed.c | 596 # define COND(d) (count < (d)) macro 599 # define COND(unused_cond) (run && count<0x7fffffff) macro 697 for (count = 0; COND(c[D_MD5][testnum]); count++) in MD5_loop() 788 for (count = 0; COND(c[D_RC4][testnum]); count++) in RC4_loop() 929 for (count = 0; COND(nb_iter); count++) { in EVP_Update_loop() 937 for (count = 0; COND(nb_iter); count++) { in EVP_Update_loop() 968 for (count = 0; COND(nb_iter); count++) { in EVP_Update_loop_ccm() 976 for (count = 0; COND(nb_iter); count++) { in EVP_Update_loop_ccm() 1007 for (count = 0; COND(nb_iter); count++) { in EVP_Update_loop_aead() 1016 for (count = 0; COND(nb_iter); count++) { in EVP_Update_loop_aead() [all …]
|
| /freebsd-13.1/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-13.1/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-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 136 enum { INIT, RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END }; enumerator 166 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); } in getCond() 181 return cast_or_null<Expr>(SubExprs[COND]); in getCond() 196 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); } in setCond()
|
| H A D | Stmt.h | 2450 enum { BODY, COND, END_EXPR }; enumerator 2467 Expr *getCond() { return reinterpret_cast<Expr *>(SubExprs[COND]); } in getCond() 2469 return reinterpret_cast<Expr *>(SubExprs[COND]); in getCond() 2472 void setCond(Expr *Cond) { SubExprs[COND] = reinterpret_cast<Stmt *>(Cond); } in setCond() 2506 enum { INIT, CONDVAR, COND, INC, BODY, END_EXPR }; enumerator 2537 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); } in getCond() 2542 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond() 2547 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); } in setCond()
|
| H A D | Expr.h | 4135 enum { COND, LHS, RHS, END_EXPR }; enumerator 4145 SubExprs[COND] = cond; in ConditionalOperator() 4157 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond() 4197 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS }; enumerator 4217 SubExprs[COND] = cond; in BinaryConditionalOperator() 4238 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond() 4514 enum { COND, LHS, RHS, END_EXPR }; enumerator 4524 SubExprs[COND] = cond; in ChooseExpr() 4553 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond() 4554 void setCond(Expr *E) { SubExprs[COND] = E; } in setCond()
|
| /freebsd-13.1/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 | 619 let COND = 0; 639 let COND = 0;
|
| /freebsd-13.1/contrib/bmake/ |
| H A D | cond.c | 316 DEBUG2(COND, "exists(%s) result is \"%s\"\n", in FuncExists() 560 DEBUG3(COND, "lhs = %f, rhs = %f, op = %.2s\n", lhs, rhs, opname[op]); in EvalCompareNum() 589 DEBUG3(COND, "lhs = \"%s\", rhs = \"%s\", op = %.2s\n", in EvalCompareStr() 974 DEBUG1(COND, "CondParser_Eval: %s\n", par->p); in CondParser_Eval()
|
| /freebsd-13.1/sys/contrib/ngatm/netnatm/msg/ |
| H A D | unistruct.h | 543 D(UNALL_NUM, 0x01 /* 1*/, COND, Q.850, "Unallocated (unassigned) number") \ 545 D(NOROUTE, 0x03 /* 3*/, COND, Q.850, "No route to destination") \ 552 D(CLEARING, 0x10 /* 16*/, COND, Q.850, "Normal call clearing") \ 584 D(QOS_NAVL, 0x31 /* 49*/, COND, Q.850, "Quality of service not available") \
|
| /freebsd-13.1/cddl/contrib/opensolaris/lib/libdtrace/arm/ |
| H A D | dt_isadep.c | 47 #define COND(x) (((x) >> 25) & 0x0f) macro
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 59 SubExprs[COND] = Cond; in CXXForRangeStmt()
|
| H A D | Stmt.cpp | 1019 SubExprs[COND] = Cond; in ForStmt()
|
| /freebsd-13.1/contrib/file/src/ |
| H A D | encoding.c | 263 #define LOOKS(NAME, COND) \ argument 275 if (COND) \
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrFormats.td | 1801 bits<5> COND; 1808 let Inst{21-25} = COND;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1133 E->SubExprs[ConditionalOperator::COND] = Record.readSubExpr(); in VisitConditionalOperator() 1145 E->SubExprs[BinaryConditionalOperator::COND] = Record.readSubExpr(); in VisitBinaryConditionalOperator()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | type_traits | 2546 // COND-RES(COPYCV(X, Y)&, COPYCV(Y, X)&) if that type exists and is a reference type. 2645 // sub-bullet 3 - Otherwise, if COND-RES(T1, T2) is well-formed,
|