Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/x86emu/
Dx86emu.c5970 #define PARITY(x) (((x86emu_parity_tab[(x) / 32] >> ((x) % 32)) & 1) == 0) macro
5994 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in aaa_word()
6018 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in aas_word()
6041 CONDITIONAL_SET_FLAG(PARITY(l & 0xff), F_PF); in aad_word()
6063 CONDITIONAL_SET_FLAG(PARITY(l & 0xff), F_PF); in aam_word()
6085 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in adc_byte()
6112 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in adc_word()
6145 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in adc_long()
6168 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in add_byte()
6191 CONDITIONAL_SET_FLAG(PARITY(res & 0xff), F_PF); in add_word()
[all …]
/freebsd-12-stable/usr.bin/locate/locate/
Dlocate.h40 #define PARITY 0200 /* parity bit */ macro
Dfastfind.c70 if (c < PARITY) {
236 if (c < PARITY) {
/freebsd-12-stable/usr.bin/tip/tip/
Dtip.c617 if (value(PARITY) == NOSTR) in setparity()
618 value(PARITY) = defparity; in setparity()
619 parity = value(PARITY); in setparity()
Dtip.h233 #define PARITY 32 macro
Dcmds.c791 if (vtable[PARITY].v_access&CHANGED) { in variable()
792 vtable[PARITY].v_access &= ~CHANGED; in variable()
/freebsd-12-stable/usr.bin/locate/code/
Dlocate.code.c213 if (putchar((code / 2) | PARITY) == EOF) in main()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DISDOpcodes.h671 PARITY, enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp431 case ISD::PARITY: return "parity"; in getOperationName()
DLegalizeIntegerTypes.cpp66 case ISD::PARITY: in PromoteIntegerResult()
2108 case ISD::PARITY: ExpandIntRes_PARITY(N, Lo, Hi); break; in ExpandIntegerResult()
2947 DAG.getNode(ISD::PARITY, dl, NVT, DAG.getNode(ISD::XOR, dl, NVT, Lo, Hi)); in ExpandIntRes_PARITY()
DLegalizeDAG.cpp2686 case ISD::PARITY: in ExpandNode()
DSelectionDAG.cpp3185 case ISD::PARITY: { in computeKnownBits()
DTargetLowering.cpp1785 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::PARITY, dl, VT, in SimplifyDemandedBits()
/freebsd-12-stable/contrib/gcc/
Dsimplify-rtx.c791 case PARITY: in simplify_unary_operation_1()
1039 case PARITY: in simplify_const_unary_operation()
1186 case PARITY: in simplify_const_unary_operation()
Dreload1.c2557 case PARITY: in eliminate_regs_1()
2778 case PARITY: in elimination_effects()
Drtlanal.c3815 case PARITY: in nonzero_bits1()
Dgenattrtab.c961 case PARITY: in check_attr_value()
Drtl.def592 DEF_RTL_EXPR(PARITY, "parity", "e", RTX_UNARY)
Doptabs.c5265 parity_optab = init_optab (PARITY); in init_optabs()
DChangeLog-200333909 (expand_builtin): Expand BUILT_IN_{FFS,CLZ,POPCOUNT,PARITY}*.
33913 * rtl.def (CLZ, CTZ, POPCOUNT, PARITY): New.
33920 * combine.c (combine_simplify_rtx): Handle POPCOUNT and PARITY.
33921 (nonzero_bits): Handle CLZ, CTZ, POPCOUNT and PARITY.
DChangeLog-20051076 ABS, VEC_SELECT, POPCOUNT, PARITY, FFS, FLOAT>,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DTargetLoweringBase.cpp825 setOperationAction(ISD::PARITY, VT, Expand); in initActions()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86ISelLowering.cpp426 setOperationAction(ISD::PARITY, MVT::i8, Custom); in X86TargetLowering()
438 setOperationAction(ISD::PARITY, MVT::i16, Custom); in X86TargetLowering()
439 setOperationAction(ISD::PARITY, MVT::i32, Custom); in X86TargetLowering()
441 setOperationAction(ISD::PARITY, MVT::i64, Custom); in X86TargetLowering()
30448 case ISD::PARITY: return LowerPARITY(Op, Subtarget, DAG); in LowerOperation()
40703 SDValue Result = DAG.getNode(ISD::PARITY, DL, CmpVT, Movmsk); in combinePredicateReduction()