| /NextBSD/contrib/binutils/opcodes/ |
| HD | arc-opc.c | 238 #define COND (DELAY + 1) macro 242 #define FORCELIMM (COND + 1) 1500 { "al", 0, COND, 0 }, 1501 { "ra", 0, COND, 0 }, 1502 { "eq", 1, COND, 0 }, 1503 { "z", 1, COND, 0 }, 1504 { "ne", 2, COND, 0 }, 1505 { "nz", 2, COND, 0 }, 1506 { "pl", 3, COND, 0 }, 1507 { "p", 3, COND, 0 }, [all …]
|
| HD | sparc-opc.c | 104 #define COND(x) (((x) & 0xf) << 25) macro 112 #define CONDA (COND (0x8)) 113 #define CONDCC (COND (0xd)) 114 #define CONDCS (COND (0x5)) 115 #define CONDE (COND (0x1)) 116 #define CONDG (COND (0xa)) 117 #define CONDGE (COND (0xb)) 118 #define CONDGU (COND (0xc)) 119 #define CONDL (COND (0x3)) 120 #define CONDLE (COND (0x2)) [all …]
|
| /NextBSD/crypto/openssl/crypto/des/ |
| HD | speed.c | 211 # define COND(d) (count != (d)) in main() macro 214 # define COND(c) (run) in main() macro 222 for (count = 0, run = 1; COND(ca); count++) in main() 235 for (count = 0, run = 1; COND(cb); count++) { in main() 253 for (count = 0, run = 1; COND(cc); count++) in main() 269 for (count = 0, run = 1; COND(cd); count++) in main() 284 for (count = 0, run = 1; COND(ce); count++) in main()
|
| HD | des_opts.c | 402 for (count=0,run=1; COND(cb); count++) \ 468 # define COND(d) (count != (d)) in main() macro 471 # define COND(c) (run) in main() macro
|
| /NextBSD/crypto/openssl/crypto/idea/ |
| HD | idea_spd.c | 200 # define COND(d) (count <= (d)) in main() macro 203 # define COND(c) (run) in main() macro 211 for (count = 0, run = 1; COND(ca); count += 4) { in main() 229 for (count = 0, run = 1; COND(cca); count += 4) { in main() 246 for (count = 0, run = 1; COND(cb); count += 4) { in main() 267 for (count = 0, run = 1; COND(cc); count++) in main()
|
| /NextBSD/crypto/openssl/crypto/bf/ |
| HD | bfspeed.c | 199 # define COND(d) (count != (d)) in main() macro 202 # define COND(c) (run) in main() macro 210 for (count = 0, run = 1; COND(ca); count += 4) { in main() 227 for (count = 0, run = 1; COND(cb); count += 4) { in main() 248 for (count = 0, run = 1; COND(cc); count++) in main()
|
| HD | bf_opts.c | 196 for (count=0,run=1; COND(cb); count+=4) \ 259 # define COND(d) (count != (d)) in main() macro 262 # define COND(c) (run) in main() macro
|
| /NextBSD/crypto/openssl/crypto/cast/ |
| HD | cast_spd.c | 199 # define COND(d) (count != (d)) in main() macro 202 # define COND(c) (run) in main() macro 210 for (count = 0, run = 1; COND(ca); count += 4) { in main() 227 for (count = 0, run = 1; COND(cb); count += 4) { in main() 248 for (count = 0, run = 1; COND(cc); count++) in main()
|
| HD | castopts.c | 206 for (count=0,run=1; COND(cb); count+=4) \ 269 # define COND(d) (count != (d)) in main() macro 272 # define COND(c) (run) in main() macro
|
| /NextBSD/crypto/openssl/crypto/rc2/ |
| HD | rc2speed.c | 199 # define COND(d) (count != (d)) in main() macro 202 # define COND(c) (run) in main() macro 210 for (count = 0, run = 1; COND(ca); count += 4) { in main() 227 for (count = 0, run = 1; COND(cb); count += 4) { in main() 248 for (count = 0, run = 1; COND(cc); count++) in main()
|
| /NextBSD/crypto/openssl/crypto/rc5/ |
| HD | rc5speed.c | 199 # define COND(d) (count != (d)) in main() macro 202 # define COND(c) (run) in main() macro 210 for (count = 0, run = 1; COND(ca); count += 4) { in main() 227 for (count = 0, run = 1; COND(cb); count += 4) { in main() 248 for (count = 0, run = 1; COND(cc); count++) in main()
|
| /NextBSD/crypto/openssl/apps/ |
| HD | speed.c | 1534 # define COND(d) (count < (d)) in MAIN() macro 1541 # define COND(c) (run && count<0x7fffffff) in MAIN() macro 1553 for (count = 0, run = 1; COND(c[D_MD2][j]); count++) in MAIN() 1566 for (count = 0, run = 1; COND(c[D_MDC2][j]); count++) in MAIN() 1580 for (count = 0, run = 1; COND(c[D_MD4][j]); count++) in MAIN() 1594 for (count = 0, run = 1; COND(c[D_MD5][j]); count++) in MAIN() 1614 for (count = 0, run = 1; COND(c[D_HMAC][j]); count++) { in MAIN() 1630 for (count = 0, run = 1; COND(c[D_SHA1][j]); count++) in MAIN() 1642 for (count = 0, run = 1; COND(c[D_SHA256][j]); count++) in MAIN() 1655 for (count = 0, run = 1; COND(c[D_SHA512][j]); count++) in MAIN() [all …]
|
| /NextBSD/crypto/openssl/crypto/rc4/ |
| HD | rc4speed.c | 198 # define COND(d) (count != (d)) in main() macro 201 # define COND(c) (run) in main() macro 209 for (count = 0, run = 1; COND(ca); count += 4) { in main() 226 for (count = 0, run = 1; COND(cc); count++) in main()
|
| /NextBSD/sys/dev/drm2/i915/ |
| HD | intel_drv.h | 37 #define _intel_wait_for(DEV, COND, MS, W, WMSG) \ argument 44 while (!(COND)) { \ 58 #define wait_for_atomic_us(COND, US) ({ \ argument 61 if ((COND)) { \ 70 #define wait_for(COND, MS) _intel_wait_for(NULL, COND, MS, 1, "915wfi") argument 71 #define wait_for_atomic(COND, MS) _intel_wait_for(NULL, COND, MS, 0, "915wfa") argument
|
| /NextBSD/cddl/contrib/opensolaris/lib/libdtrace/sparc/ |
| HD | 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()
|
| /NextBSD/sys/contrib/alpine-hal/ |
| HD | al_hal_plat_services.h | 272 #define al_assert(COND) \ argument 274 if (!(COND)) \ 277 __FILE__, __LINE__, __func__, #COND); \
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | StmtCXX.h | 130 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END }; enumerator 154 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); } in getCond() 166 return cast_or_null<Expr>(SubExprs[COND]); in getCond() 179 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); } in setCond()
|
| HD | Stmt.h | 883 enum { VAR, COND, THEN, ELSE, END_EXPR }; enumerator 914 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond() 915 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); } in setCond() 921 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); } in getCond() 953 enum { VAR, COND, BODY, END_EXPR }; enumerator 985 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond() 989 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond() 990 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); } in setCond() 1022 return SubExprs[BODY] ? SubExprs[BODY]->getLocEnd() : SubExprs[COND]->getLocEnd(); in getLocEnd() 1040 enum { VAR, COND, BODY, END_EXPR }; enumerator [all …]
|
| /NextBSD/sys/cddl/contrib/opensolaris/uts/sparc/dtrace/ |
| HD | fasttrap_isa.c | 136 #define COND(x) (((x) >> 25) & 0x0f) macro 1148 if (COND(instr) == 8) { in fasttrap_tracepoint_init() 1158 tp->ftt_code = COND(instr); in fasttrap_tracepoint_init() 1171 if (COND(instr) == 8) { in fasttrap_tracepoint_init() 1176 tp->ftt_code = COND(instr); in fasttrap_tracepoint_init() 1220 if (COND(instr) == 8) { in fasttrap_tracepoint_init() 1225 tp->ftt_code = COND(instr); in fasttrap_tracepoint_init() 1238 if (COND(instr) == 8) { in fasttrap_tracepoint_init() 1243 tp->ftt_code = COND(instr); in fasttrap_tracepoint_init()
|
| /NextBSD/sys/contrib/x86emu/ |
| HD | x86emu_regs.h | 123 #define CONDITIONAL_SET_FLAG(COND,FLAG) \ argument 124 if (COND) SET_FLAG(FLAG); else CLEAR_FLAG(FLAG)
|
| /NextBSD/contrib/binutils/binutils/ |
| HD | sysinfo.y | 43 %token COND 227 cond_it_field: '(' COND NAME
|
| HD | syslex.l | 78 "cond" { return COND;}
|
| /NextBSD/contrib/gcc/ |
| HD | genattrtab.c | 966 case COND: in check_attr_value() 1052 condexp = rtx_alloc (COND); in convert_set_attr_alternative() 1202 newexp = rtx_alloc (COND); in make_canonical() 1212 case COND: in make_canonical() 1328 condexp = rtx_alloc (COND); in expand_delays() 1344 condexp = rtx_alloc (COND); in expand_delays() 1455 if (GET_CODE (exp) == COND) in substitute_address() 1466 newexp = rtx_alloc (COND); in substitute_address() 1661 if (GET_CODE (defval) == COND) in simplify_cond() 1676 if (GET_CODE (newval) == COND) in simplify_cond() [all …]
|
| /NextBSD/contrib/llvm/lib/Target/AMDGPU/ |
| HD | R600InstrFormats.td | 361 bits<2> COND; 373 let Word1{9-8} = COND; 399 bits<2> COND; 408 let Word1{9-8} = COND;
|
| /NextBSD/contrib/gcc/config/mips/ |
| HD | mips.c | 10067 #define CMP_SCALAR_BUILTINS(INSN, COND, TARGET_FLAGS) \ argument 10068 { CODE_FOR_mips_ ## INSN ## _cond_s, MIPS_FP_COND_ ## COND, \ 10069 "__builtin_mips_" #INSN "_" #COND "_s", \ 10071 { CODE_FOR_mips_ ## INSN ## _cond_d, MIPS_FP_COND_ ## COND, \ 10072 "__builtin_mips_" #INSN "_" #COND "_d", \ 10078 #define CMP_PS_BUILTINS(INSN, COND, TARGET_FLAGS) \ argument 10079 { CODE_FOR_mips_ ## INSN ## _cond_ps, MIPS_FP_COND_ ## COND, \ 10080 "__builtin_mips_any_" #INSN "_" #COND "_ps", \ 10082 { CODE_FOR_mips_ ## INSN ## _cond_ps, MIPS_FP_COND_ ## COND, \ 10083 "__builtin_mips_all_" #INSN "_" #COND "_ps", \ [all …]
|