| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | IntegralAP.h | 36 template <bool Signed> class IntegralAP final { 43 friend IntegralAP<!Signed>; 64 return APInt(BitWidth, Val, Signed); in getValue() 83 if constexpr (Signed) in copy() 102 Val = Signed ? V.getSExtValue() : V.getZExtValue(); in IntegralAP() 110 if constexpr (Signed) 115 if constexpr (Signed) 120 if constexpr (Signed) 127 return truncateCast<Ty, Signed>(getValue()); in Ty() 135 APInt Copy = APInt(NumBits, static_cast<uint64_t>(Value), Signed); [all …]
|
| H A D | Integral.h | 32 template <bool Signed> class IntegralAP; 35 template <unsigned Bits, bool Signed> struct Repr; 66 template <unsigned Bits, bool Signed> class Integral final { 71 using ReprT = typename Repr<Bits, Signed>::Type; 127 return APSInt(APInt(Bits, static_cast<uint64_t>(V), Signed), !Signed); 130 return APSInt(toAPInt(BitWidth), !Signed); 133 if constexpr (Signed) 134 return APInt(Bits, static_cast<uint64_t>(V), Signed) 137 return APInt(Bits, static_cast<uint64_t>(V), Signed) 152 bool isMinusOne() const { return Signed && V == ReprT(-1); } [all …]
|
| H A D | PrimType.h | 30 template <bool Signed> class IntegralAP; 31 template <unsigned Bits, bool Signed> class Integral;
|
| H A D | FixedPoint.h | 77 llvm::APSInt toInt(unsigned BitWidth, bool Signed, bool *Overflow) const { in toInt() argument 78 return V.convertToInt(BitWidth, Signed, Overflow); in toInt()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetLibraryInfo.h | 500 bool Signed = true) { 502 return Signed ? Attribute::SExt : Attribute::ZExt; 510 bool Signed = true) { 516 Signed); 519 Attribute::AttrKind getExtAttrForI32Param(bool Signed = true) const { 521 Impl->ShouldSignExtI32Param, Signed); 530 bool Signed) { in getExtAttrForI32Return() argument 532 return Signed ? Attribute::SExt : Attribute::ZExt; in getExtAttrForI32Return() 540 bool Signed = true) { 546 Signed); [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CheckedArithmetic.h | 29 checkedOp(T LHS, T RHS, F Op, bool Signed = true) { 30 llvm::APInt ALHS(sizeof(T) * 8, LHS, Signed); 31 llvm::APInt ARHS(sizeof(T) * 8, RHS, Signed); 36 return Signed ? Out.getSExtValue() : Out.getZExtValue();
|
| /freebsd/crypto/openssl/test/certs/ |
| H A D | embeddedSCTs3.sct | 1 Signed Certificate Timestamp: 13 Signed Certificate Timestamp: 25 Signed Certificate Timestamp:
|
| H A D | embeddedSCTs1.sct | 1 Signed Certificate Timestamp:
|
| /freebsd/contrib/llvm-project/libc/src/__support/ |
| H A D | big_int.h | 332 template <size_t Bits, bool Signed, typename WordType = uint64_t> 348 LIBC_INLINE_VAR static constexpr bool SIGNED = Signed; 368 const bool should_sign_extend = Signed && other.is_neg(); 528 if constexpr (Signed && (T_SIZE > Bits)) { 603 ful_mul(const BigInt<OtherBits, Signed, WordType> &other) const { 604 BigInt<Bits + OtherBits, Signed, WordType> result; 644 static_assert(!Signed); 956 if constexpr (Signed) { 1086 template <size_t Bits, bool Signed, typename T> 1087 struct cpp::numeric_limits<BigInt<Bits, Signed, T>> { [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | LoadStoreVectorizer.cpp | 1103 static bool checkNoWrapFlags(Instruction *I, bool Signed) { in checkNoWrapFlags() argument 1105 return (Signed && BinOpI->hasNoSignedWrap()) || in checkNoWrapFlags() 1106 (!Signed && BinOpI->hasNoUnsignedWrap()); in checkNoWrapFlags() 1111 unsigned MatchingOpIdxB, bool Signed) { in checkIfSafeAddSequence() argument 1116 << ", Signed=" << Signed << "\n"); in checkIfSafeAddSequence() 1133 checkNoWrapFlags(AddOpA, Signed) && checkNoWrapFlags(AddOpB, Signed)); in checkIfSafeAddSequence() 1142 checkNoWrapFlags(OtherInstrB, Signed) && in checkIfSafeAddSequence() 1152 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence() 1165 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence() 1166 checkNoWrapFlags(OtherInstrB, Signed) && in checkIfSafeAddSequence() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/LowLevel/ |
| H A D | DWARFExpression.cpp | 158 unsigned Signed = Size & Operation::SignBit; in extract() local 172 if (Signed) in extract() 177 if (Signed) in extract() 182 if (Signed) in extract() 198 if (Signed) in extract()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/ |
| H A D | WebAssemblyDisassembler.cpp | 88 bool Signed) { in nextLEB() argument 91 Val = Signed ? decodeSLEB128(Bytes.data() + Size, &N, in nextLEB() 103 ArrayRef<uint8_t> Bytes, bool Signed) { in parseLEBImmediate() argument 105 if (!nextLEB(Val, Bytes, Size, Signed)) in parseLEBImmediate()
|
| /freebsd/sys/contrib/openzfs/.github/ |
| H A D | CONTRIBUTING.md | 33 * [Signed Off By](#signed-off-by) 213 * The last line must be a `Signed-off-by:` tag. See the 214 [Signed Off By](#signed-off-by) section for more information. 226 Signed-off-by: Contributor <contributor@email.com> 237 * The last line must be a `Signed-off-by:` tag. See the 238 [Signed Off By](#signed-off-by) section for more information. 253 Signed-off-by: Contributor <contributor@email.com> 256 #### Signed Off By 257 A line tagged as `Signed-off-by:` must contain the developer's 264 Git can append the `Signed-off-by` line to your commit messages. Simply
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SCT_print.pod | 6 Prints Signed Certificate Timestamps in a human-readable way 19 SCT_print() prints a single Signed Certificate Timestamp (SCT) to a B<BIO> in
|
| /freebsd/crypto/openssl/demos/smime/ |
| H A D | sign.txt | 3 Test OpenSSL Signed Content
|
| /freebsd/crypto/openssl/demos/cms/ |
| H A D | sign.txt | 3 Test OpenSSL CMS Signed Content
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_neon.td | 865 // Signed Saturating Accumulated of Unsigned Value 869 // Unsigned Saturating Accumulated of Signed Value 889 // Signed integer saturating extract and unsigned narrow to high 1340 // Signed/Unsigned Shift Right (Immediate) 1343 // Signed/Unsigned Rounding Shift Right (Immediate) 1347 // Signed/Unsigned Shift Right and Accumulate (Immediate) 1350 // Signed/Unsigned Rounding Shift Right and Accumulate (Immediate) 1357 // Signed/Unsigned Saturating Shift Left (Immediate) 1360 // Signed Saturating Shift Left Unsigned (Immediate) 1372 // Signed/Unsigned Saturating Shift Right Narrow (Immediate) [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | VariantValue.h | 271 VariantValue(int Signed) : VariantValue(static_cast<unsigned>(Signed)) {} in VariantValue() argument
|
| /freebsd/crypto/openssl/test/ct/ |
| H A D | tls1.sct | 1 Signed Certificate Timestamp:
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstPropagation.cpp | 397 unsigned Bits, unsigned Offset, bool Signed, 400 bool Signed, APInt &Result); 1734 unsigned Offset, bool Signed, in evaluateEXTRACTr() argument 1757 evaluateEXTRACTi(A, Bits, Offset, Signed, CA); in evaluateEXTRACTr() 1767 unsigned Offset, bool Signed, APInt &Result) { in evaluateEXTRACTi() argument 1778 if (Signed) in evaluateEXTRACTi() 1782 Result = APInt(BW, V, Signed); in evaluateEXTRACTi() 1785 if (Signed) in evaluateEXTRACTi() 2146 bool Signed = (Opc == Hexagon::S4_extract) || in evaluate() local 2163 Signed = false; in evaluate() [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | der | 141 # PKCS#7 Signed Data (e.g. JAR Signature Block File) 145 >&0 der obj_id9=2a864886f70d010702 DER Encoded PKCS#7 Signed Data
|
| /freebsd/ |
| H A D | CONTRIBUTING.md | 87 * Include one or more `Signed-off-by:` trailers certifying [Developer Certificate of Origin](https:… 126 Please use a name and email address in the `Signed-off-by` trailer and as the 181 ## Signed-off-by 183 Other projects mandate Signed-off-by to create a paper trail for contributions they 192 Signed-off-by line to set the author for the commit.
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | ConstraintElimination.cpp | 273 DenseMap<Value *, unsigned> &getValue2Index(bool Signed) { in getValue2Index() argument 274 return Signed ? SignedCS.getValue2Index() : UnsignedCS.getValue2Index(); in getValue2Index() 276 const DenseMap<Value *, unsigned> &getValue2Index(bool Signed) const { in getValue2Index() 277 return Signed ? SignedCS.getValue2Index() : UnsignedCS.getValue2Index(); in getValue2Index() 280 ConstraintSystem &getCS(bool Signed) { in getCS() argument 281 return Signed ? SignedCS : UnsignedCS; in getCS() 283 const ConstraintSystem &getCS(bool Signed) const { in getCS() 284 return Signed ? SignedCS : UnsignedCS; in getCS() 287 void popLastConstraint(bool Signed) { getCS(Signed).popLastConstraint(); } in popLastConstraint() argument 288 void popLastNVariables(bool Signed, unsigned N) { in popLastNVariables() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURegBankLegalizeHelper.cpp | 236 bool Signed = isSignedBFE(MI); in lowerV_BFE() local 247 unsigned SHROpc = Signed ? AMDGPU::G_ASHR : AMDGPU::G_LSHR; in lowerV_BFE() 268 unsigned BFXOpc = Signed ? AMDGPU::G_SBFX : AMDGPU::G_UBFX; in lowerV_BFE() 274 if (Signed) { in lowerV_BFE() 295 bool Signed = isSignedBFE(MI); in lowerS_BFE() local 309 unsigned Opc32 = Signed ? AMDGPU::S_BFE_I32 : AMDGPU::S_BFE_U32; in lowerS_BFE() 310 unsigned Opc64 = Signed ? AMDGPU::S_BFE_I64 : AMDGPU::S_BFE_U64; in lowerS_BFE()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUBaseInfo.cpp | 2896 int32_t Signed = static_cast<int32_t>(Literal); in getInlineEncodingV216() local 2897 if (Signed >= 0 && Signed <= 64) in getInlineEncodingV216() 2898 return 128 + Signed; in getInlineEncodingV216() 2900 if (Signed >= -16 && Signed <= -1) in getInlineEncodingV216() 2901 return 192 + std::abs(Signed); in getInlineEncodingV216() 2947 int32_t Signed = static_cast<int32_t>(Literal); in getInlineEncodingV2BF16() local 2948 if (Signed >= 0 && Signed <= 64) in getInlineEncodingV2BF16() 2949 return 128 + Signed; in getInlineEncodingV2BF16() 2951 if (Signed >= -16 && Signed <= -1) in getInlineEncodingV2BF16() 2952 return 192 + std::abs(Signed); in getInlineEncodingV2BF16()
|