Home
last modified time | relevance | path

Searched refs:One (Results 1 – 25 of 1290) sorted by relevance

12345678910>>...52

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DKnownBits.h25 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()
52 return Zero.countPopulation() + One.countPopulation() == getBitWidth(); in isConstant()
59 return One; in getConstant()
63 bool isUnknown() const { return Zero.isNullValue() && One.isNullValue(); } in isUnknown()
68 One.clearAllBits(); in resetAll()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DKnownBits.cpp32 APInt CarryKnownOne = PossibleSumOne ^ LHS.One ^ RHS.One; in computeForAddCarry()
35 APInt LHSKnownUnion = LHS.Zero | LHS.One; in computeForAddCarry()
36 APInt RHSKnownUnion = RHS.Zero | RHS.One; in computeForAddCarry()
46 KnownOut.One = std::move(PossibleSumOne) & Known; in computeForAddCarry()
54 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue()); in computeForAddCarry()
66 std::swap(RHS.Zero, RHS.One); in computeForAddSub()
98 Result.One = One << ExtBits; in sextInReg()
100 Result.One.ashrInPlace(ExtBits); in sextInReg()
114 return KnownBits(Zero, One | MaskedVal); in makeGE()
137 auto Flip = [](const KnownBits &Val) { return KnownBits(Val.One, Val.Zero); }; in umin()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/contrib/
H A Dparanoia.cc957 FLOAT One; member
1031 One = long(1); in main()
1055 TstCond (Failure, (One - One == Zero), "1-1 != 0"); in main()
1056 TstCond (Failure, (One > Zero), "1 <= 0"); in main()
1057 TstCond (Failure, (One + One == Two), "1+1 != 2"); in main()
1069 TstCond (Failure, (Three == Two + One), "3 != 2+1"); in main()
1070 TstCond (Failure, (Four == Three + One), "4 != 3+1"); in main()
1072 TstCond (Failure, (Four - Three - One == Zero), "4-3-1 != 0"); in main()
1074 TstCond (Failure, (MinusOne == (Zero - One)), "-1 != 0-1"); in main()
1075 TstCond (Failure, (MinusOne + One == Zero), "-1+1 != 0"); in main()
[all …]
/netbsd-src/external/gpl3/gcc/dist/contrib/
H A Dparanoia.cc957 FLOAT One; member
1031 One = long(1); in main()
1055 TstCond (Failure, (One - One == Zero), "1-1 != 0"); in main()
1056 TstCond (Failure, (One > Zero), "1 <= 0"); in main()
1057 TstCond (Failure, (One + One == Two), "1+1 != 2"); in main()
1069 TstCond (Failure, (Three == Two + One), "3 != 2+1"); in main()
1070 TstCond (Failure, (Four == Three + One), "4 != 3+1"); in main()
1072 TstCond (Failure, (Four - Three - One == Zero), "4-3-1 != 0"); in main()
1074 TstCond (Failure, (MinusOne == (Zero - One)), "-1 != 0-1"); in main()
1075 TstCond (Failure, (MinusOne + One == Zero), "-1+1 != 0"); in main()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp174 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) in SimplifyDemandedUseBits()
175 return Constant::getIntegerValue(VTy, Known.One); in SimplifyDemandedUseBits()
179 if (DemandedMask.isSubsetOf(LHSKnown.Zero | RHSKnown.One)) in SimplifyDemandedUseBits()
181 if (DemandedMask.isSubsetOf(RHSKnown.Zero | LHSKnown.One)) in SimplifyDemandedUseBits()
193 SimplifyDemandedBits(I, 0, DemandedMask & ~RHSKnown.One, LHSKnown, in SimplifyDemandedUseBits()
203 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) in SimplifyDemandedUseBits()
204 return Constant::getIntegerValue(VTy, Known.One); in SimplifyDemandedUseBits()
208 if (DemandedMask.isSubsetOf(LHSKnown.One | RHSKnown.Zero)) in SimplifyDemandedUseBits()
210 if (DemandedMask.isSubsetOf(RHSKnown.One | LHSKnown.Zero)) in SimplifyDemandedUseBits()
241 if (DemandedMask.isSubsetOf(Known.Zero | Known.One)) in SimplifyDemandedUseBits()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDemandedBits.cpp279 AB &= ~Known2.One; in determineLiveOperandBits()
281 AB &= ~(Known.One & ~Known2.One); in determineLiveOperandBits()
510 APInt Bound = (LHS.Zero & RHS.Zero) | (LHS.One & RHS.One); in determineLiveOperandBitsAddCarry()
528 NeededToMaintainCarryOne = LHS.One | ~RHS.One; in determineLiveOperandBitsAddCarry()
531 NeededToMaintainCarryOne = RHS.One | ~LHS.One; in determineLiveOperandBitsAddCarry()
536 APInt PossibleSumOne = LHS.One + RHS.One + CarryOne; in determineLiveOperandBitsAddCarry()
569 NRHS.Zero = RHS.One; in determineLiveOperandBitsSub()
570 NRHS.One = RHS.Zero; in determineLiveOperandBitsSub()
H A DValueTracking.cpp459 Known.One.setAllBits(); in computeKnownBitsFromRangeMetadata()
473 Known.One &= UnsignedMax & Mask; in computeKnownBitsFromRangeMetadata()
711 Known.One |= RHSKnown.One; in computeKnownBitsFromAssume()
723 Known.Zero |= RHSKnown.Zero & MaskKnown.One; in computeKnownBitsFromAssume()
724 Known.One |= RHSKnown.One & MaskKnown.One; in computeKnownBitsFromAssume()
736 Known.Zero |= RHSKnown.One & MaskKnown.One; in computeKnownBitsFromAssume()
737 Known.One |= RHSKnown.Zero & MaskKnown.One; in computeKnownBitsFromAssume()
750 Known.One |= RHSKnown.One & BKnown.Zero; in computeKnownBitsFromAssume()
762 Known.Zero |= RHSKnown.One & BKnown.Zero; in computeKnownBitsFromAssume()
763 Known.One |= RHSKnown.Zero & BKnown.Zero; in computeKnownBitsFromAssume()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dmime_garb1.in1 From: Some One <user@example.com>
2 To: Some One <user@example.com>
23 =46rom: Some One <user@example.com>
H A Dmime_garb2.in1 From: Some One <user@example.com>
2 To: Some One <user@example.com>
23 From: Some One <user@example.com>
H A Dmime_garb3.in1 From: Some One <user@example.com>
2 To: Some One <user@example.com>
25 =46rom: Some One <user@example.com>
H A Dmime_garb4.in1 From: Some One <user@example.com>
2 To: Some One <user@example.com>
15 =46rom: Some One <user@example.com>
H A Dmime_garb2.ref1 MAIN 0 |From: Some One <user@example.com>
2 MAIN 32 |To: Some One <user@example.com>
32 BODY N 72 |From: Some One <user@example.com>
H A Dmime_garb1.ref1 MAIN 0 |From: Some One <user@example.com>
2 MAIN 32 |To: Some One <user@example.com>
33 BODY N 74 |=46rom: Some One <user@example.com>
H A Dmime_garb3.ref1 MAIN 0 |From: Some One <user@example.com>
2 MAIN 32 |To: Some One <user@example.com>
38 BODY N 74 |=46rom: Some One <user@example.com>
H A Dmime_garb4.ref1 MAIN 0 |From: Some One <user@example.com>
2 MAIN 32 |To: Some One <user@example.com>
22 NEST 36 |=46rom: Some One <user@example.com>
/netbsd-src/external/bsd/openldap/dist/tests/data/
H A Dsql-write.out134 dn: cn=Some One,dc=example,dc=com
137 cn: Some One
138 sn: One
251 dn: cn=Some One,dc=example,dc=com
254 cn: Some One
255 sn: One
355 dn: cn=Some One,dc=example,dc=com
358 cn: Some One
359 sn: One
445 dn: cn=Some One,dc=example,dc=com
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp64 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1); in createAdd1() local
72 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB); in createAdd1()
94 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1); in CreateFibFunction() local
111 ReturnInst::Create(Context, One, RetBB); in CreateFibFunction()
114 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); in CreateFibFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Fibonacci/
H A Dfibonacci.cpp63 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1); in CreateFibFunction() local
80 ReturnInst::Create(Context, One, RetBB); in CreateFibFunction()
83 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); in CreateFibFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCRegisterInfo.td32 // GPR - One of the 32 32-bit general-purpose registers
37 // GP8 - One of the 32 64-bit general-purpose registers
44 // SPE - One of the 32 64-bit general-purpose registers (SPE)
51 // SPR - One of the 32-bit special-purpose registers
56 // FPR - One of the 32 64-bit floating-point registers
61 // VF - One of the 32 64-bit floating-point subregisters of the vector
68 // VR - One of the 32 128-bit vector registers
76 // VSRL - One of the 32 128-bit VSX registers that overlap with the scalar
84 // VSXReg - One of the VSX registers in the range vs32-vs63 with numbering
90 // CR - One of the 8 4-bit condition registers
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dformat_tv.in12 # One digit in. Must not produce spurious digits or trailing nulls.
47 # One digit in. Must not produce trailing nulls.
H A Dformat_tv.ref21 >> # One digit in. Must not produce spurious digits or trailing nulls.
82 >> # One digit in. Must not produce trailing nulls.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DBitTracker.h159 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;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DIntegerDivision.cpp161 ConstantInt *One; in generateUnsignedDivisionCode() local
167 One = Builder.getInt64(1); in generateUnsignedDivisionCode()
173 One = Builder.getInt32(1); in generateUnsignedDivisionCode()
271 Value *SR_1 = Builder.CreateAdd(SR, One); in generateUnsignedDivisionCode()
309 Value *Tmp5 = Builder.CreateShl(R_1, One); in generateUnsignedDivisionCode()
312 Value *Tmp8 = Builder.CreateShl(Q_2, One); in generateUnsignedDivisionCode()
316 Value *Carry = Builder.CreateAnd(Tmp10, One); in generateUnsignedDivisionCode()
332 Value *Tmp13 = Builder.CreateShl(Q_3, One); in generateUnsignedDivisionCode()
/netbsd-src/usr.bin/make/unit-tests/
H A Dvarmod-match.mk36 .if ${One Two Three Four five six seven so s:L:Ms??*} != "six seven"
85 .if ${One Two Three Four five six seven:L:M[A-Z]*} != "One Two Three Four"
90 .if ${One Two Three Four five six seven:L:M[^A-Z]*} != "five six seven"
175 .if ${One Two Three Four five six seven:L:M[^s]*[ex]} != "One Three five"
/netbsd-src/external/bsd/openldap/dist/tests/scripts/
H A Dsql-test900-write123 dn: cn=Some One,${BASEDN}
127 cn: Some One
128 sn: One
177 dn: cn=Some One,${BASEDN}
221 dn: cn=Some One,${BASEDN}

12345678910>>...52