Home
last modified time | relevance | path

Searched refs:COND (Results 1 – 23 of 23) sorted by relevance

/freebsd/contrib/bmake/unit-tests/
H A Dcond-late.mk23 COND.true= "yes" == "yes"
24 COND.false= "yes" != "yes"
32 @echo ${ ${COND.true} :?yes:no}
33 @echo ${ ${COND.false} :?yes:no}
H A Dcond-token-plain.mk257 .if ${${COND} == "VAR.":?yes:no} != "yes"
H A Dvarmod-ifelse.mk39 COND:= ${${UNDEF} == "":?bad-assign:bad-assign}
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/sparc/
H A Ddt_isadep.c40 #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/sys/contrib/alpine-hal/
H A Dal_hal_plat_services.h351 #define al_assert(COND) \ argument
353 if (!(COND)) \
356 __FILE__, __LINE__, __func__, #COND); \
/freebsd/sys/contrib/x86emu/
H A Dx86emu_regs.h123 #define CONDITIONAL_SET_FLAG(COND,FLAG) \ argument
124 if (COND) SET_FLAG(FLAG); else CLEAR_FLAG(FLAG)
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h137 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 DStmt.h2731 enum { BODY, COND, END_EXPR };
2748 Expr *getCond() { return reinterpret_cast<Expr *>(SubExprs[COND]); }
2750 return reinterpret_cast<Expr *>(SubExprs[COND]);
2753 void setCond(Expr *Cond) { SubExprs[COND] = reinterpret_cast<Stmt *>(Cond); }
2789 enum { INIT, CONDVAR, COND, INC, BODY, END_EXPR };
2828 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
2833 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
2838 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
H A DExpr.h4204 enum { COND, LHS, RHS, END_EXPR }; enumerator
4214 SubExprs[COND] = cond; in ConditionalOperator()
4226 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
4266 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS }; enumerator
4286 SubExprs[COND] = cond; in BinaryConditionalOperator()
4307 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
4583 enum { COND, LHS, RHS, END_EXPR }; enumerator
4593 SubExprs[COND] = cond; in ChooseExpr()
4622 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
4623 void setCond(Expr *E) { SubExprs[COND] = E; } in setCond()
/freebsd/crypto/openssl/apps/
H A Dspeed.c456 #define COND(unused_cond) (run && count < INT_MAX) macro
560 for (count = 0; COND(c[algindex][testnum]); count++) { in EVP_Digest_loop()
604 for (count = 0; COND(c[algindex][testnum]); count++) { in EVP_MAC_loop()
660 for (count = 0; COND(c[algindex][testnum]); count++) in EVP_Cipher_loop()
674 for (count = 0; COND(c[D_GHASH][testnum]); count++) { in GHASH_loop()
727 for (count = 0; COND(c[D_RAND][testnum]); count++) in RAND_bytes_loop()
741 for (count = 0; COND(c[D_EVP][testnum]); count++) { in EVP_Update_loop()
749 for (count = 0; COND(c[D_EVP][testnum]); count++) { in EVP_Update_loop()
780 for (count = 0; COND(c[D_EVP][testnum]); count++) { in EVP_Update_loop_aead_enc()
851 for (count = 0; COND(c[D_EVP][testnum]); count++) { in EVP_Update_loop_aead_dec()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600InstrFormats.td370 bits<2> COND;
382 let Word1{9-8} = COND;
408 bits<2> COND;
417 let Word1{9-8} = COND;
H A DR600Instructions.td607 let COND = 0;
627 let COND = 0;
/freebsd/contrib/bmake/
H A Dcond.c311 DEBUG2(COND, "exists(%s) result is \"%s\"\n", in FuncExists()
515 DEBUG3(COND, "Comparing %f %s %f\n", lhs, opname[op], rhs); in EvalCompareNum()
546 DEBUG3(COND, "Comparing \"%s\" %s \"%s\"\n", lhs, opname[op], rhs); in EvalCompareStr()
934 DEBUG1(COND, "CondParser_Eval: %s\n", par.p); in CondEvalExpression()
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/arm/
H A Ddt_isadep.c47 #define COND(x) (((x) >> 25) & 0x0f) macro
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtCXX.cpp60 SubExprs[COND] = Cond; in CXXForRangeStmt()
H A DStmt.cpp1028 SubExprs[COND] = Cond; in ForStmt()
/freebsd/contrib/file/src/
H A Dencoding.c262 #define LOOKS(NAME, COND) \ argument
274 if (COND) \
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFragments.td18 // RES = op PTR, PASSTHRU, COND, EFLAGS
22 // op VAL, PTR, COND, EFLAGS
/freebsd/contrib/openpam/
H A Daclocal.m4128 # 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 DPPCInstrFormats.td1891 bits<5> COND;
1898 let Inst{21-25} = COND;
H A DPPCInstr64Bit.td1153 (outs g8rc:$RT), (ins g8rc_nox0:$RA, g8rc:$RB, crbitrc:$COND),
1154 "isel $RT, $RA, $RB, $COND", IIC_IntISEL,
H A DPPCInstrInfo.td3077 (outs gprc:$RT), (ins gprc_nor0:$RA, gprc:$RB, crbitrc:$COND),
3078 "isel $RT, $RA, $RB, $COND", IIC_IntISEL,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1147 E->SubExprs[ConditionalOperator::COND] = Record.readSubExpr(); in VisitConditionalOperator()
1159 E->SubExprs[BinaryConditionalOperator::COND] = Record.readSubExpr(); in VisitBinaryConditionalOperator()