| /freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| HD | KnownBits.h | 25 APInt One; member 29 KnownBits(APInt Zero, APInt One) in KnownBits() 30 : Zero(std::move(Zero)), One(std::move(One)) {} in KnownBits() 37 KnownBits(unsigned BitWidth) : Zero(BitWidth, 0), One(BitWidth, 0) {} in KnownBits() 41 assert(Zero.getBitWidth() == One.getBitWidth() && in getBitWidth() 47 bool hasConflict() const { return Zero.intersects(One); } in hasConflict() 51 return Zero.popcount() + One.popcount() == getBitWidth(); in isConstant() 58 return One; in getConstant() 62 bool isUnknown() const { return Zero.isZero() && One.isZero(); } in isUnknown() 66 return !Zero.isSignBitSet() && !One.isSignBitSet(); in isSignUnknown() [all …]
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | KnownBits.cpp | 29 APInt CarryKnownOne = PossibleSumOne ^ LHS.One ^ RHS.One; in computeForAddCarry() 32 APInt LHSKnownUnion = LHS.Zero | LHS.One; in computeForAddCarry() 33 APInt RHSKnownUnion = RHS.Zero | RHS.One; in computeForAddCarry() 40 KnownOut.One = std::move(PossibleSumOne) & Known; in computeForAddCarry() 48 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue()); in computeForAddCarry() 69 std::swap(NotRHS.Zero, NotRHS.One); in computeForAddSub() 86 KnownOut.One.setBits(BitWidth - 1 - NumBits, BitWidth - 1); in computeForAddSub() 88 KnownOut.One.setHighBits(MinVal.countl_one()); in computeForAddSub() 120 KnownOut.One.setBits(BitWidth - 1 - NumBits, BitWidth - 1); in computeForAddSub() 127 KnownOut.One.setSignBit(); in computeForAddSub() [all …]
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineSimplifyDemanded.cpp | 220 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) in SimplifyDemandedUseBits() 221 return Constant::getIntegerValue(VTy, Known.One); in SimplifyDemandedUseBits() 225 if (DemandedMask.isSubsetOf(LHSKnown.Zero | RHSKnown.One)) in SimplifyDemandedUseBits() 227 if (DemandedMask.isSubsetOf(RHSKnown.Zero | LHSKnown.One)) in SimplifyDemandedUseBits() 239 SimplifyDemandedBits(I, 0, DemandedMask & ~RHSKnown.One, LHSKnown, in SimplifyDemandedUseBits() 251 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) in SimplifyDemandedUseBits() 252 return Constant::getIntegerValue(VTy, Known.One); in SimplifyDemandedUseBits() 256 if (DemandedMask.isSubsetOf(LHSKnown.One | RHSKnown.Zero)) in SimplifyDemandedUseBits() 258 if (DemandedMask.isSubsetOf(RHSKnown.One | LHSKnown.Zero)) in SimplifyDemandedUseBits() 297 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) in SimplifyDemandedUseBits() [all …]
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | DemandedBits.cpp | 247 AB &= ~Known2.One; in determineLiveOperandBits() 249 AB &= ~(Known.One & ~Known2.One); in determineLiveOperandBits() 507 APInt Bound = (LHS.Zero & RHS.Zero) | (LHS.One & RHS.One); in determineLiveOperandBitsAddCarry() 525 NeededToMaintainCarryOne = LHS.One | ~RHS.One; in determineLiveOperandBitsAddCarry() 528 NeededToMaintainCarryOne = RHS.One | ~LHS.One; in determineLiveOperandBitsAddCarry() 533 APInt PossibleSumOne = LHS.One + RHS.One + CarryOne; in determineLiveOperandBitsAddCarry() 566 NRHS.Zero = RHS.One; in determineLiveOperandBitsSub() 567 NRHS.One = RHS.Zero; in determineLiveOperandBitsSub()
|
| HD | ScalarEvolutionDivision.cpp | 65 *Quotient = D.One; in divide() 226 RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] = One; in visitMulExpr() 247 One = SE.getOne(Denominator->getType()); in SCEVDivision()
|
| /freebsd-14-stable/usr.sbin/bsdconfig/networking/include/ |
| HD | messages.subr | 51 msg_hostname_label_contains_invalid_chars="ERROR! One or more individual labels within the hostname… 52 msg_hostname_label_exceeds_max_length="ERROR! One or more individual labels within the hostname\n(s… 53 msg_hostname_label_is_null="ERROR! One or more individual labels within the hostname\n(separated by… 54 msg_hostname_label_starts_or_ends_with_hyphen="ERROR! One or more individual labels within the host… 57 msg_ipv4_addr_octet_contains_invalid_chars="ERROR! One or more individual octets within the IPv4 ad… 58 msg_ipv4_addr_octet_exceeds_max_value="ERROR! One or more individual octets within the IPv4 address… 59 msg_ipv4_addr_octet_is_null="ERROR! One or more individual octets within the IPv4 address\n(separat… 61 msg_ipv4_mask_field_contains_invalid_chars="ERROR! One or more individual fields within the subnet … 62 msg_ipv4_mask_field_exceeds_max_value="ERROR! One or more individual fields within the subnet mask\… 63 msg_ipv4_mask_field_invalid_value="ERROR! One or more individual fields within the subnet mask\n(se… [all …]
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/timer/ |
| D | andestech,atcpit100-timer.txt | 11 One 32-bit timer 14 One 16-bit PWM 15 One 16-bit timer and one 8-bit PWM
|
| D | arm,twd.txt | 17 - interrupts : One interrupt to each core 42 - interrupts : One interrupt to each core
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| HD | LowerAtomic.cpp | 81 Constant *One = ConstantInt::get(Loaded->getType(), 1); in buildAtomicRMWValue() local 82 Value *Inc = Builder.CreateAdd(Loaded, One); in buildAtomicRMWValue() 89 Constant *One = ConstantInt::get(Loaded->getType(), 1); in buildAtomicRMWValue() local 91 Value *Dec = Builder.CreateSub(Loaded, One); in buildAtomicRMWValue()
|
| HD | IntegerDivision.cpp | 152 ConstantInt *One = ConstantInt::get(DivTy, 1); in generateUnsignedDivisionCode() local 251 Value *SR_1 = Builder.CreateAdd(SR, One); in generateUnsignedDivisionCode() 289 Value *Tmp5 = Builder.CreateShl(R_1, One); in generateUnsignedDivisionCode() 292 Value *Tmp8 = Builder.CreateShl(Q_2, One); in generateUnsignedDivisionCode() 296 Value *Carry = Builder.CreateAnd(Tmp10, One); in generateUnsignedDivisionCode() 312 Value *Tmp13 = Builder.CreateShl(Q_3, One); in generateUnsignedDivisionCode()
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| HD | BitTracker.h | 159 One, // Bit = 1. enumerator 195 BitValue(bool B) : Type(B ? One : Zero) {} in BitValue() 212 : (T == 1 ? Type == One : false); in is() 258 return Type == Zero || Type == One; in num() 262 assert(Type == Zero || Type == One); 263 return Type == One;
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| HD | InductiveRangeCheckElimination.cpp | 351 const SCEV *One = SE.getOne(RHS->getType()); in parseIvAgaisntLimit() local 354 if (SE.willNotOverflow(Instruction::BinaryOps::Add, Signed, RHSS, One)) { in parseIvAgaisntLimit() 356 End = SE.getAddExpr(RHSS, One); in parseIvAgaisntLimit() 595 const SCEV *One = SE.getOne(RTy); in calculateSubRanges() local 600 GreatestSeen = SE.getMinusSCEV(End, One); in calculateSubRanges() 617 Smallest = SE.getAddExpr(End, One); in calculateSubRanges() 618 Greatest = SE.getAddExpr(Start, One); in calculateSubRanges() 756 const SCEV *One = SE.getOne(X->getType()); in computeSafeIterationSpace() local 759 return One; in computeSafeIterationSpace() 764 const SCEV *NegOne = SE.getNegativeSCEV(One); in computeSafeIterationSpace() [all …]
|
| HD | StraightLineStrengthReduce.cpp | 415 APInt One(Idx->getBitWidth(), 1); in allocateCandidatesAndFindBasisForAdd() local 416 Idx = ConstantInt::get(Idx->getContext(), One << Idx->getValue()); in allocateCandidatesAndFindBasisForAdd() 420 ConstantInt *One = ConstantInt::get(cast<IntegerType>(I->getType()), 1); in allocateCandidatesAndFindBasisForAdd() local 421 allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), One, RHS, in allocateCandidatesAndFindBasisForAdd() 515 APInt One(RHS->getBitWidth(), 1); in factorArrayIndex() local 517 ConstantInt::get(RHS->getContext(), One << RHS->getValue()); in factorArrayIndex()
|
| /freebsd-14-stable/contrib/libcbor/doc/source/api/ |
| HD | type_3.rst | 8 Number of allocations (definite) One plus any manipulations with the data 9 Number of allocations (indefinite) One plus logarithmically many
|
| HD | type_0_1.rst | 13 Number of allocations One per lifetime 23 Number of allocations One per lifetime 31 …ics, the following functions can be used for both Type 0 and Type 1 items. One can convert between…
|
| HD | type_2.rst | 22 Number of allocations (definite) One plus any manipulations with the data 23 Number of allocations (indefinite) One plus logarithmically many
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/sound/ |
| HD | sirf-usp.txt | 10 One of the DMA channels will be responsible for transmission (should be 15 - pinctrl-NNN: One property must exist for each entry in pinctrl-names.
|
| /freebsd-14-stable/contrib/llvm-project/clang/lib/AST/Interp/ |
| HD | Floating.h | 176 APFloat One(A.F.getSemantics(), 1); in increment() 178 return R->F.add(One, RM); in increment() 189 APFloat One(A.F.getSemantics(), 1); in decrement() 191 return R->F.subtract(One, RM); in decrement()
|
| HD | IntegralAP.h | 188 IntegralAP<Signed> One(1, A.bitWidth()); in increment() 189 return add(A, One, A.bitWidth() + 1, R); in increment() 193 IntegralAP<Signed> One(1, A.bitWidth()); in decrement() 194 return sub(A, One, A.bitWidth() + 1, R); in decrement()
|
| /freebsd-14-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| HD | BoolAssignmentChecker.cpp | 87 llvm::APSInt One = BVF.getValue(1, RegTy); in checkBind() local 90 std::tie(StIn, StOut) = CM.assumeInclusiveRangeDual(State, *NV, Zero, One); in checkBind()
|
| /freebsd-14-stable/tests/sys/geom/class/uzip/etalon/ |
| HD | etalon.txt | 29 One, two! One, two! And through and through
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/mfd/ |
| HD | atmel-tcb.txt | 24 One interrupt per TC block: 45 One interrupt per TC channel in a TC block:
|
| HD | aspeed-lpc.txt | 40 - compatible: One of: 81 - compatible: One of: 120 - compatible: One of: 143 - compatible: One of:
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| HD | GISelKnownBits.cpp | 98 APInt GISelKnownBits::getKnownOnes(Register R) { return getKnownBits(R).One; } in getKnownOnes() 104 << toString(Known.Zero | Known.One, 16, false) << "\n" in dumpResult() 107 << "[" << Depth << "] One: 0x" << toString(Known.One, 16, false) in dumpResult() 139 Mask.One = APInt::getLowBitsSet( in extractBits() 194 Known.Zero.setAllBits(); Known.One.setAllBits(); in computeKnownBitsImpl() 214 Known.One = APInt::getAllOnes(BitWidth); in computeKnownBitsImpl() 492 Known.One.clearLowBits(LogOfAlign); in computeKnownBitsImpl() 828 Mask = Known.One; in computeNumSignBits()
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/iio/adc/ |
| D | renesas,gyroadc.txt | 35 round-robin fashion. One Fujitsu chip supplies four 46 round-robin fashion. One TI/ADI chip supplies single 55 round-robin fashion. One Maxim chip supplies single
|