Searched refs:COND (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-9.3-release/crypto/openssl/crypto/bf/
H A Dbfspeed.c199 # define COND(d) (count != (d)) macro
202 # define COND(c) (run) macro
210 for (count = 0, run = 1; COND(ca); count += 4) {
227 for (count = 0, run = 1; COND(cb); count += 4) {
248 for (count = 0, run = 1; COND(cc); count++)
H A Dbf_opts.c196 for (count=0,run=1; COND(cb); count+=4) \
259 # define COND(d) (count != (d)) macro
262 # define COND(c) (run) macro
/freebsd-9.3-release/crypto/openssl/crypto/rc5/
H A Drc5speed.c199 # define COND(d) (count != (d)) macro
202 # define COND(c) (run) macro
210 for (count = 0, run = 1; COND(ca); count += 4) {
227 for (count = 0, run = 1; COND(cb); count += 4) {
248 for (count = 0, run = 1; COND(cc); count++)
/freebsd-9.3-release/crypto/openssl/crypto/cast/
H A Dcast_spd.c199 # define COND(d) (count != (d)) macro
202 # define COND(c) (run) macro
210 for (count = 0, run = 1; COND(ca); count += 4) {
227 for (count = 0, run = 1; COND(cb); count += 4) {
248 for (count = 0, run = 1; COND(cc); count++)
H A Dcastopts.c206 for (count=0,run=1; COND(cb); count+=4) \
269 # define COND(d) (count != (d)) macro
272 # define COND(c) (run) macro
/freebsd-9.3-release/crypto/openssl/crypto/rc2/
H A Drc2speed.c199 # define COND(d) (count != (d)) macro
202 # define COND(c) (run) macro
210 for (count = 0, run = 1; COND(ca); count += 4) {
227 for (count = 0, run = 1; COND(cb); count += 4) {
248 for (count = 0, run = 1; COND(cc); count++)
/freebsd-9.3-release/crypto/openssl/crypto/des/
H A Dspeed.c211 # define COND(d) (count != (d)) macro
214 # define COND(c) (run) macro
222 for (count = 0, run = 1; COND(ca); count++)
235 for (count = 0, run = 1; COND(cb); count++) {
253 for (count = 0, run = 1; COND(cc); count++)
269 for (count = 0, run = 1; COND(cd); count++)
284 for (count = 0, run = 1; COND(ce); count++)
H A Ddes_opts.c402 for (count=0,run=1; COND(cb); count++) \
468 # define COND(d) (count != (d)) macro
471 # define COND(c) (run) macro
/freebsd-9.3-release/crypto/openssl/crypto/rc4/
H A Drc4speed.c198 # define COND(d) (count != (d)) macro
201 # define COND(c) (run) macro
209 for (count = 0, run = 1; COND(ca); count += 4) {
226 for (count = 0, run = 1; COND(cc); count++)
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dsyslex.l78 "cond" { return COND;}
H A Dsysinfo.y43 %token COND
227 cond_it_field: '(' COND NAME
/freebsd-9.3-release/crypto/openssl/crypto/idea/
H A Didea_spd.c200 # define COND(d) (count <= (d)) macro
203 # define COND(c) (run) macro
211 for (count = 0, run = 1; COND(ca); count += 4) {
229 for (count = 0, run = 1; COND(cca); count += 4) {
246 for (count = 0, run = 1; COND(cb); count += 4) {
267 for (count = 0, run = 1; COND(cc); count++)
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Darc-opc.c140 'q' COND condition code field
239 #define COND (DELAY + 1)
243 #define FORCELIMM (COND + 1)
1504 { "al", 0, COND, 0 },
1505 { "ra", 0, COND, 0 },
1506 { "eq", 1, COND, 0 },
1507 { "z", 1, COND, 0 },
1508 { "ne", 2, COND, 0 },
1509 { "nz", 2, COND, 0 },
1510 { "pl", 3, COND,
238 #define COND macro
[all...]
H A Dsparc-opc.c105 #define COND(x) (((x) & 0xf) << 25)
113 #define CONDA (COND (0x8))
114 #define CONDCC (COND (0xd))
115 #define CONDCS (COND (0x5))
116 #define CONDE (COND (0x1))
117 #define CONDG (COND (0xa))
118 #define CONDGE (COND (0xb))
119 #define CONDGU (COND (0xc))
120 #define CONDL (COND (0x3))
121 #define CONDLE (COND (
104 #define COND macro
[all...]
/freebsd-9.3-release/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]);
209 baa = COND(text[i]) == 8 && A(text[i]);
224 baa = COND(text[i]) == 8 && A(text[i]);
231 baa = COND(text[i]) == 8 && A(text[i]);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtCXX.h129 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END }; enumerator in enum:clang::CXXForRangeStmt::__anon2803
131 // SubExprs[COND] and SubExprs[INC] are expressions.
154 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); }
166 return cast_or_null<Expr>(SubExprs[COND]);
179 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
H A DStmt.h847 enum { VAR, COND, THEN, ELSE, END_EXPR }; enumerator in enum:clang::IfStmt::__anon2796
877 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
878 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
884 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
915 enum { VAR, COND, BODY, END_EXPR }; enumerator in enum:clang::SwitchStmt::__anon2797
950 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
954 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);}
955 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
1008 enum { VAR, COND, BODY, END_EXPR }; enumerator in enum:clang::WhileStmt::__anon2798
1035 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
1063 enum { BODY, COND, END_EXPR }; enumerator in enum:clang::DoStmt::__anon2799
1114 enum { INIT, CONDVAR, COND, INC, BODY, END_EXPR }; enumerator in enum:clang::ForStmt::__anon2800
[all...]
/freebsd-9.3-release/crypto/openssl/apps/
H A Dspeed.c1623 # define COND(d) (count < (d)) macro
1630 # define COND(c) (run) macro
1640 for (count = 0, run = 1; COND(c[D_MD2][j]); count++)
1653 for (count = 0, run = 1; COND(c[D_MDC2][j]); count++)
1667 for (count = 0, run = 1; COND(c[D_MD4][j]); count++)
1681 for (count = 0, run = 1; COND(c[D_MD5][j]); count++)
1701 for (count = 0, run = 1; COND(c[D_HMAC][j]); count++) {
1717 for (count = 0, run = 1; COND(c[D_SHA1][j]); count++)
1729 for (count = 0, run = 1; COND(c[D_SHA256][j]); count++)
1742 for (count = 0, run = 1; COND(
[all...]
/freebsd-9.3-release/sys/contrib/x86emu/
H A Dx86emu_regs.h123 #define CONDITIONAL_SET_FLAG(COND,FLAG) \
124 if (COND) SET_FLAG(FLAG); else CLEAR_FLAG(FLAG)
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/sparc/dtrace/
H A Dfasttrap_isa.c138 #define COND(x) (((x) >> 25) & 0x0f) macro
1150 if (COND(instr) == 8) {
1160 tp->ftt_code = COND(instr);
1173 if (COND(instr) == 8) {
1178 tp->ftt_code = COND(instr);
1222 if (COND(instr) == 8) {
1227 tp->ftt_code = COND(instr);
1240 if (COND(instr) == 8) {
1245 tp->ftt_code = COND(instr);
/freebsd-9.3-release/contrib/gcc/
H A Dgenattrtab.c965 case COND:
969 "first operand of COND must have even length");
1016 is expanded later by make_canonical into a COND. In a non-constant
1032 It becomes a COND with each test being (eq_attr "alternative" "n") */
1049 /* Make a COND with all tests but the last. Select the last value via the
1051 condexp = rtx_alloc (COND);
1162 expressions by converting them into a COND. This removes cases from this
1194 This makes the COND something that won't be considered an arbitrary
1201 newexp = rtx_alloc (COND);
1209 /* Fall through to COND cas
[all...]
/freebsd-9.3-release/contrib/bmake/
H A Dcond.c409 if (DEBUG(COND)) {
732 if (DEBUG(COND)) {
754 if (DEBUG(COND)) {
/freebsd-9.3-release/sys/sparc64/sbus/
H A Dlsi64854.c238 #define DMAWAIT(SC, COND, MSG, DONTPANIC) do if (COND) { \
240 while ((COND) && --count > 0) DELAY(1); \
/freebsd-9.3-release/contrib/gcc/config/mips/
H A Dmips.c228 /* Invokes MACRO (COND) for each c.cond.fmt condition. */
3287 (set temp (COND:CCV2 CMP_OP0 CMP_OP1))
10100 /* Define __builtin_mips_<INSN>_<COND>_{s,d}, both of which require
10102 #define CMP_SCALAR_BUILTINS(INSN, COND, TARGET_FLAGS) \
10103 { CODE_FOR_mips_ ## INSN ## _cond_s, MIPS_FP_COND_ ## COND, \
10104 "__builtin_mips_" #INSN "_" #COND "_s", \
10106 { CODE_FOR_mips_ ## INSN ## _cond_d, MIPS_FP_COND_ ## COND, \
10107 "__builtin_mips_" #INSN "_" #COND "_d", \
10110 /* Define __builtin_mips_{any,all,upper,lower}_<INSN>_<COND>_ps.
10113 #define CMP_PS_BUILTINS(INSN, COND, TARGET_FLAG
[all...]
/freebsd-9.3-release/contrib/gcclibs/libcpp/
H A Ddirectives.c65 /* Values for the flags field of struct directive. COND indicates a
72 #define COND (1 << 0) macro
139 D(endif, T_ENDIF, KANDR, COND) /* 45855 */ \
140 D(ifdef, T_IFDEF, KANDR, COND | IF_COND) /* 22000 */ \
141 D(if, T_IF, KANDR, COND | IF_COND | EXPAND) /* 18162 */ \
142 D(else, T_ELSE, KANDR, COND) /* 9863 */ \
143 D(ifndef, T_IFNDEF, KANDR, COND | IF_COND) /* 9675 */ \
146 D(elif, T_ELIF, STDC89, COND | EXPAND) /* 610 */ \
448 if (pfile->state.skipping && !(dir->flags & COND))

Completed in 383 milliseconds

12