Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/binutils/opcodes/
H A Darc-opc.c238 #define COND (DELAY + 1) macro
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 },
1507 { "p", 3, COND, 0 },
1509 { "n", 4, COND, 0 },
1511 { "c", 5, COND, 0 },
1517 { "v", 7, COND, 0 },
[all …]
H A Dsparc-opc.c112 #define CONDA (COND (0x8))
115 #define CONDE (COND (0x1))
116 #define CONDG (COND (0xa))
119 #define CONDL (COND (0x3))
122 #define CONDN (COND (0x0))
1400 FBR(fop, F2(0, 6)|COND(mask), F2(~0, ~6)|COND(~(mask)), flags), \
1401 CBR(cop, F2(0, 7)|COND(mask), F2(~0, ~7)|COND(~(mask)), flags, v6notlet)
1405 FBR(fop, F2(0, 6)|COND(mask), F2(~0, ~6)|COND(~(mask)), flags), \
1406 CBR(cop, F2(0, 7)|COND(mask), F2(~0, ~7)|COND(~(mask)), flags, v6)
1410 FBR(fop, F2(0, 6)|COND(mask), F2(~0, ~6)|COND(~(mask)), flags)
[all …]
/freebsd-12.1/sys/dev/drm2/i915/
H A Dintel_drv.h37 #define _intel_wait_for(DEV, COND, MS, W, WMSG) \ argument
44 while (!(COND)) { \
60 #define _wait_for(COND, MS, W, WMSG) ({ \ argument
63 while (!(COND)) { \
79 #define wait_for_atomic_us(COND, US) ({ \ argument
82 if ((COND)) { \
91 #define wait_for(COND, MS) _intel_wait_for(NULL, COND, MS, 1, "915wfi") argument
92 #define wait_for_atomic(COND, MS) _intel_wait_for(NULL, COND, MS, 0, "915wfa") argument
/freebsd-12.1/crypto/openssl/apps/
H A Dspeed.c596 # 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-12.1/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-12.1/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-12.1/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-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtCXX.h129 enum { INIT, RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END }; enumerator
159 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); } in getCond()
174 return cast_or_null<Expr>(SubExprs[COND]); in getCond()
189 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); } in setCond()
H A DStmt.h2186 enum { BODY, COND, END_EXPR }; enumerator
2203 Expr *getCond() { return reinterpret_cast<Expr *>(SubExprs[COND]); } in getCond()
2205 return reinterpret_cast<Expr *>(SubExprs[COND]); in getCond()
2208 void setCond(Expr *Cond) { SubExprs[COND] = reinterpret_cast<Stmt *>(Cond); } in setCond()
2238 enum { INIT, CONDVAR, COND, INC, BODY, END_EXPR }; enumerator
2269 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); } in getCond()
2274 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond()
2279 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); } in setCond()
H A DExpr.h3588 enum { COND, LHS, RHS, END_EXPR }; enumerator
3610 SubExprs[COND] = cond; in ConditionalOperator()
3621 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
3661 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS }; enumerator
3687 SubExprs[COND] = cond; in BinaryConditionalOperator()
3707 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
3983 enum { COND, LHS, RHS, END_EXPR }; enumerator
4000 SubExprs[COND] = cond; in ChooseExpr()
4027 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
4028 void setCond(Expr *E) { SubExprs[COND] = E; } in setCond()
/freebsd-12.1/contrib/binutils/binutils/
H A Dsysinfo.y43 %token COND
227 cond_it_field: '(' COND NAME
H A Dsyslex.l78 "cond" { return COND;}
/freebsd-12.1/contrib/gcc/
H A Dgenattrtab.c966 case COND: in check_attr_value()
1052 condexp = rtx_alloc (COND); in convert_set_attr_alternative()
1212 case COND: in make_canonical()
1328 condexp = rtx_alloc (COND); in expand_delays()
1455 if (GET_CODE (exp) == COND) in substitute_address()
1956 case COND: in evaluate_eq_attr()
3457 case COND: in max_attr_value()
3498 case COND: in min_attr_value()
3540 case COND: in or_attr_value()
4445 code_exp = rtx_alloc (COND); in make_automaton_attrs()
[all …]
H A Dbuiltins.def26 FALLBACK_P, NONANSI_P, ATTRS, IMPLICIT, COND)
66 The builtins is registered only if COND is true. */
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DR600InstrFormats.td371 bits<2> COND;
383 let Word1{9-8} = COND;
409 bits<2> COND;
418 let Word1{9-8} = COND;
/freebsd-12.1/contrib/gcc/config/mips/
H A Dmips.c10070 "__builtin_mips_" #INSN "_" #COND "_s", \
10073 "__builtin_mips_" #INSN "_" #COND "_d", \
10081 "__builtin_mips_any_" #INSN "_" #COND "_ps", \
10084 "__builtin_mips_all_" #INSN "_" #COND "_ps", \
10095 #define CMP_4S_BUILTINS(INSN, COND) \ argument
10097 "__builtin_mips_any_" #INSN "_" #COND "_4s", \
10118 #define CMP_BUILTINS(COND) \ argument
10120 MOVTF_BUILTINS (cabs, COND, MASK_MIPS3D), \
10123 CMP_PS_BUILTINS (cabs, COND, MASK_MIPS3D), \
10124 CMP_4S_BUILTINS (c, COND), \
[all …]
/freebsd-12.1/sys/contrib/ngatm/netnatm/msg/
H A Dunistruct.h543 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-12.1/sys/sparc64/sbus/
H A Dlsi64854.c240 #define DMAWAIT(SC, COND, MSG, DONTPANIC) do if (COND) { \ argument
242 while ((COND) && --count > 0) DELAY(1); \
/freebsd-12.1/contrib/gcclibs/libcpp/
H A Ddirectives.c72 #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)) in _cpp_handle_directive()
/freebsd-12.1/contrib/bmake/
H A Dcond.c414 if (DEBUG(COND)) { in CondDoExists()
749 if (DEBUG(COND)) { in compare_expression()
771 if (DEBUG(COND)) { in compare_expression()
/freebsd-12.1/cddl/contrib/opensolaris/lib/libdtrace/arm/
H A Ddt_isadep.c47 #define COND(x) (((x) >> 25) & 0x0f) macro
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtCXX.cpp60 SubExprs[COND] = Cond; in CXXForRangeStmt()
/freebsd-12.1/contrib/binutils/bfd/
H A Delf-eh-frame.c444 #define REQUIRE(COND) \ in _bfd_elf_discard_section_eh_frame() argument
446 if (!(COND)) \ in _bfd_elf_discard_section_eh_frame()
/freebsd-12.1/contrib/binutils/gas/config/
H A Dtc-sparc.c3202 #define COND(x) (((x)&0xf)<<25) macro
3203 #define CONDA COND(0x8)
H A Dtc-arm.c15356 TUE(it, 0, bf08, 1, (COND), it, t_it),
15357 TUE(itt, 0, bf0c, 1, (COND), it, t_it),
15358 TUE(ite, 0, bf04, 1, (COND), it, t_it),
15359 TUE(ittt, 0, bf0e, 1, (COND), it, t_it),
15360 TUE(itet, 0, bf06, 1, (COND), it, t_it),
15361 TUE(itte, 0, bf0a, 1, (COND), it, t_it),
15362 TUE(itee, 0, bf02, 1, (COND), it, t_it),
15363 TUE(itttt, 0, bf0f, 1, (COND), it, t_it),
15364 TUE(itett, 0, bf07, 1, (COND), it, t_it),
15365 TUE(ittet, 0, bf0b, 1, (COND), it, t_it),
[all …]

12