Home
last modified time | relevance | path

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

12345678910>>...14

/NextBSD/contrib/llvm/include/llvm/Target/
HDTargetCallingConv.h58 static const uint64_t One = 1ULL; ///< 1 of this type, for shifts member
65 void setZExt() { Flags |= One << ZExtOffs; } in setZExt()
68 void setSExt() { Flags |= One << SExtOffs; } in setSExt()
71 void setInReg() { Flags |= One << InRegOffs; } in setInReg()
74 void setSRet() { Flags |= One << SRetOffs; } in setSRet()
77 void setByVal() { Flags |= One << ByValOffs; } in setByVal()
80 void setInAlloca() { Flags |= One << InAllocaOffs; } in setInAlloca()
83 void setNest() { Flags |= One << NestOffs; } in setNest()
86 void setReturned() { Flags |= One << ReturnedOffs; } in setReturned()
89 void setInConsecutiveRegs() { Flags |= One << InConsecutiveRegsOffs; } in setInConsecutiveRegs()
[all …]
/NextBSD/usr.sbin/bsdconfig/networking/include/
HDmessages.subr52 msg_hostname_label_contains_invalid_chars="ERROR! One or more individual labels within the hostname…
53 msg_hostname_label_exceeds_max_length="ERROR! One or more individual labels within the hostname\n(s…
54 msg_hostname_label_is_null="ERROR! One or more individual labels within the hostname\n(separated by…
55 msg_hostname_label_starts_or_ends_with_hyphen="ERROR! One or more individual labels within the host…
58 msg_ipv4_addr_octet_contains_invalid_chars="ERROR! One or more individual octets within the IPv4 ad…
59 msg_ipv4_addr_octet_exceeds_max_value="ERROR! One or more individual octets within the IPv4 address…
60 msg_ipv4_addr_octet_is_null="ERROR! One or more individual octets within the IPv4 address\n(separat…
62 msg_ipv4_mask_field_contains_invalid_chars="ERROR! One or more individual fields within the subnet …
63 msg_ipv4_mask_field_exceeds_max_value="ERROR! One or more individual fields within the subnet mask\…
64 msg_ipv4_mask_field_invalid_value="ERROR! One or more individual fields within the subnet mask\n(se…
[all …]
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCRegisterInfo.td30 // GPR - One of the 32 32-bit general-purpose registers
35 // GP8 - One of the 32 64-bit general-purpose registers
42 // SPR - One of the 32-bit special-purpose registers
47 // FPR - One of the 32 64-bit floating-point registers
52 // QFPR - One of the 32 256-bit floating-point vector registers (used for QPX)
59 // VF - One of the 32 64-bit floating-point subregisters of the vector
66 // VR - One of the 32 128-bit vector registers
74 // VSRL - One of the 32 128-bit VSX registers that overlap with the scalar
82 // VSRH - One of the 32 128-bit VSX registers that overlap with the vector
91 // CR - One of the 8 4-bit condition registers
[all …]
/NextBSD/contrib/llvm/lib/Target/Hexagon/
HDBitTracker.h112 One, // Bit = 1. enumerator
148 BitValue(bool B) : Type(B ? One : Zero) {} in BitValue()
165 : (T == 1 ? Type == One : false); in is()
211 return Type == Zero || Type == One; in num()
214 assert(Type == Zero || Type == One);
215 return Type == One;
HDHexagonBitTracker.cpp255 return rr0(RegisterCell(W0).fill(0, W0, BT::BitValue::One), Outputs); in evaluate()
611 RC[im(2)] = BT::BitValue::One; in evaluate()
617 RC[BX] = RC[BX].is(0) ? BT::BitValue::One in evaluate()
804 RC.fill(0, W0, (All1 ? BT::BitValue::One : BT::BitValue::Zero)); in evaluate()
821 RC.fill(0, W0, (Has1 ? BT::BitValue::One : BT::BitValue::Zero)); in evaluate()
866 BT::BitValue F = V.is(TV) ? BT::BitValue::One : BT::BitValue::Zero; in evaluate()
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDIntegerDivision.cpp162 ConstantInt *One; in generateUnsignedDivisionCode() local
168 One = Builder.getInt64(1); in generateUnsignedDivisionCode()
174 One = Builder.getInt32(1); in generateUnsignedDivisionCode()
272 Value *SR_1 = Builder.CreateAdd(SR, One); in generateUnsignedDivisionCode()
310 Value *Tmp5 = Builder.CreateShl(R_1, One); in generateUnsignedDivisionCode()
313 Value *Tmp8 = Builder.CreateShl(Q_2, One); in generateUnsignedDivisionCode()
317 Value *Carry = Builder.CreateAnd(Tmp10, One); in generateUnsignedDivisionCode()
333 Value *Tmp13 = Builder.CreateShl(Q_3, One); in generateUnsignedDivisionCode()
/NextBSD/tools/regression/geom_uzip/etalon/
HDetalon.txt30 One, two! One, two! And through and through
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDStraightLineStrengthReduce.cpp401 APInt One(Idx->getBitWidth(), 1); in allocateCandidatesAndFindBasisForAdd() local
402 Idx = ConstantInt::get(Idx->getContext(), One << Idx->getValue()); in allocateCandidatesAndFindBasisForAdd()
406 ConstantInt *One = ConstantInt::get(cast<IntegerType>(I->getType()), 1); in allocateCandidatesAndFindBasisForAdd() local
407 allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), One, RHS, in allocateCandidatesAndFindBasisForAdd()
503 APInt One(RHS->getBitWidth(), 1); in factorArrayIndex() local
505 ConstantInt::get(RHS->getContext(), One << RHS->getValue()); in factorArrayIndex()
HDInductiveRangeCheckElimination.cpp768 ConstantInt *One = ConstantInt::get(IndVarTy, 1); in parseLoopStructure() local
789 RightValue = B.CreateAdd(RightValue, One); in parseLoopStructure()
811 RightValue = B.CreateSub(RightValue, One); in parseLoopStructure()
862 ConstantInt *One = ConstantInt::get(Ty, 1); in calculateSubRanges() local
893 Smallest = SE.getAddExpr(End, SE.getSCEV(One)); in calculateSubRanges()
894 Greatest = SE.getAddExpr(Start, SE.getSCEV(One)); in calculateSubRanges()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDRecordLayoutBuilder.cpp662 Alignment(CharUnits::One()), UnpackedAlignment(CharUnits::One()), in RecordLayoutBuilder()
668 NonVirtualAlignment(CharUnits::One()), in RecordLayoutBuilder()
971 CharUnits BaseAlign = (Packed) ? CharUnits::One() : UnpackedBaseAlign; in EnsureVTablePointerAlignment()
1180 CharUnits BaseAlign = (Packed) ? CharUnits::One() : UnpackedBaseAlign; in LayoutBase()
1213 Alignment = CharUnits::One(); in LayoutBase()
1735 FieldAlign = CharUnits::One(); in LayoutField()
1811 setSize(CharUnits::One()); in FinishLayout()
1814 setSize(CharUnits::One()); in FinishLayout()
1832 Alignment = CharUnits::One(); in FinishLayout()
1860 if (Packed && UnpackedAlignment > CharUnits::One() && in FinishLayout()
[all …]
/NextBSD/cddl/contrib/dtracetoolkit/Docs/
HDoneliners.txt5 DTrace One Liners,
72 DTrace Longer One Liners,
/NextBSD/release/picobsd/tinyware/msh/
HDREADME3 It's quite limited, but also quite small. One of most serious
/NextBSD/usr.bin/indent/
HDREADME64 | The source I have right now has two copyright notices. One is the
65 | original from the UofI. One is from Berkeley.
92 have to revert to an older version. One way or another, I hope to get
/NextBSD/contrib/unbound/dnstap/
HDdnstap.proto47 // One of the following will be filled in.
162 // One of the Type values described above.
165 // One of the SocketFamily values described above.
168 // One of the SocketProtocol values described above.
/NextBSD/crypto/openssl/doc/crypto/
HDERR_load_crypto_strings.pod25 One of these functions should be called before generating
/NextBSD/tools/regression/poll/
HDReadme13 completely for select() in FreeBSD-1. One or both of these states
/NextBSD/usr.bin/fortune/datfiles/
HDmurphy-o17 One's life tends to be like a beaver's,
/NextBSD/sys/mips/conf/
HDPB478 # * One ethernet PHY
/NextBSD/usr.sbin/bsdconfig/share/media/
HDtcpip.subr105 # 63 One or more individual labels within the hostname (separated by
107 # 1 One or more individual labels within the hostname contains one
109 # 2 One or more individual labels within the hostname starts or
112 # 3 One or more individual labels within the hostname are null.
188 # 1 One or more individual octets within the IP address (separated
190 # 2 One or more individual octets within the IP address are null
192 # 3 One or more individual octets within the IP address exceeds the
255 # 1 One or more individual segments within the IP address
263 # 3 One or more individual segments within the IP address
385 # 1 One or more individual fields within the subnet mask (separated
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGExprConstant.cpp59 LLVMStructAlignment(CharUnits::One()) { } in ConstStructBuilder()
83 if (Packed) return CharUnits::One(); in getAlignment()
150 assert(LLVMStructAlignment == CharUnits::One() && in AppendBytes()
251 AppendPadding(CharUnits::One()); in AppendBitField()
309 if (PadSize > CharUnits::One()) in AppendPadding()
314 assert(getAlignment(C) == CharUnits::One() && in AppendPadding()
345 if (NumChars > CharUnits::One()) in ConvertStructToPacked()
361 LLVMStructAlignment = CharUnits::One(); in ConvertStructToPacked()
HDCGRecordLayoutBuilder.cpp130 return NumBytes == CharUnits::One() ? Type : in getByteArrayType()
570 CharUnits Alignment = CharUnits::One(); in determinePacked()
571 CharUnits NVAlignment = CharUnits::One(); in determinePacked()
612 if (Offset != Size.RoundUpToAlignment(Packed ? CharUnits::One() : in insertPadding()
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineMulDivRem.cpp39 Value *A = nullptr, *B = nullptr, *One = nullptr; in simplifyValueKnownNonZero() local
40 if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(One), m_Value(A))), m_Value(B))) && in simplifyValueKnownNonZero()
41 match(One, m_One())) { in simplifyValueKnownNonZero()
43 return IC.Builder->CreateShl(One, A); in simplifyValueKnownNonZero()
877 if (ConstantInt *One = dyn_cast<ConstantInt>(Op0)) { in commonIDivTransforms() local
878 if (One->isOne() && !I.getType()->isIntegerTy(1)) { in commonIDivTransforms()
884 Value *Inc = Builder->CreateAdd(Op1, One); in commonIDivTransforms()
891 return new ZExtInst(Builder->CreateICmpEQ(Op1, One), I.getType()); in commonIDivTransforms()
/NextBSD/contrib/ntp/adjtimed/
HDREADME18 One person already has trashed adjtimed by making it do "the right
/NextBSD/bin/sh/tests/builtins/
HDtrap2.010 # One possible reading of POSIX requires the above to return an
/NextBSD/crypto/openssl/crypto/des/
HDKERBEROS19 One problem I found when I was build on my local sun.

12345678910>>...14