Home
last modified time | relevance | path

Searched refs:Signed (Results 1 – 25 of 163) sorted by relevance

1234567

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DIntegralAP.h31 template <unsigned Bits, bool Signed> class Integral;
33 template <bool Signed> class IntegralAP final {
35 friend IntegralAP<!Signed>;
60 : V(APInt(BitWidth, static_cast<uint64_t>(Value), Signed)) {} in IntegralAP()
71 if constexpr (Signed)
76 if constexpr (Signed)
81 if constexpr (Signed)
86 if constexpr (Signed)
93 return truncateCast<Ty, Signed>(V); in Ty()
98 APInt Copy = APInt(NumBits, static_cast<uint64_t>(Value), Signed);
[all …]
H A DIntegral.h32 template <bool Signed> class IntegralAP;
35 template <unsigned Bits, bool Signed> struct Repr;
50 template <unsigned Bits, bool Signed> class Integral final {
55 using ReprT = typename Repr<Bits, Signed>::Type;
107 return APSInt(APInt(Bits, static_cast<uint64_t>(V), Signed), !Signed);
110 if constexpr (Signed)
111 return APSInt(toAPSInt().sextOrTrunc(NumBits), !Signed);
113 return APSInt(toAPSInt().zextOrTrunc(NumBits), !Signed);
127 bool isMinusOne() const { return Signed && V == ReprT(-1); }
129 constexpr static bool isSigned() { return Signed; }
[all …]
H A DPrimType.h29 template <bool Signed> class IntegralAP;
30 template <unsigned Bits, bool Signed> class Integral;
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DSveEmitter.cpp70 bool Float, Signed, Immediate, Void, Constant, Pointer, BFloat; member in __anone51b860d0111::SVEType
79 : Float(false), Signed(true), Immediate(false), Void(false), in SVEType()
95 bool isSigned() const { return Signed; } in isSigned()
476 if (Signed) in builtin_str()
478 else if (!Signed) in builtin_str()
480 } else if (!isVoidPointer() && !Signed) { in builtin_str()
515 if (!Signed && !isFloatingPoint()) in str()
557 Signed = false; in applyTypespec()
615 Signed = false; in applyModifier()
625 Signed = false; in applyModifier()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h484 bool Signed = true) {
486 return Signed ? Attribute::SExt : Attribute::ZExt;
494 bool Signed = true) {
500 Signed);
503 Attribute::AttrKind getExtAttrForI32Param(bool Signed = true) const {
505 Impl->ShouldSignExtI32Param, Signed);
514 bool Signed) { in getExtAttrForI32Return() argument
516 return Signed ? Attribute::SExt : Attribute::ZExt; in getExtAttrForI32Return()
524 bool Signed = true) {
530 Signed);
[all …]
H A DIVDescriptors.h41 SMin, ///< Signed integer min implemented in terms of select(cmp()).
42 SMax, ///< Signed integer max implemented in terms of select(cmp()).
77 Type *RT, bool Signed, bool Ordered, in RecurrenceDescriptor() argument
82 IsSigned(Signed), IsOrdered(Ordered), in RecurrenceDescriptor()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCheckedArithmetic.h29 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/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1087 static bool checkNoWrapFlags(Instruction *I, bool Signed) { in checkNoWrapFlags() argument
1089 return (Signed && BinOpI->hasNoSignedWrap()) || in checkNoWrapFlags()
1090 (!Signed && BinOpI->hasNoUnsignedWrap()); in checkNoWrapFlags()
1095 unsigned MatchingOpIdxB, bool Signed) { in checkIfSafeAddSequence() argument
1100 << ", Signed=" << Signed << "\n"); in checkIfSafeAddSequence()
1117 checkNoWrapFlags(AddOpA, Signed) && checkNoWrapFlags(AddOpB, Signed)); in checkIfSafeAddSequence()
1126 checkNoWrapFlags(OtherInstrB, Signed) && in checkIfSafeAddSequence()
1136 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence()
1149 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence()
1150 checkNoWrapFlags(OtherInstrB, Signed) && in checkIfSafeAddSequence()
[all …]
/freebsd/crypto/openssl/test/certs/
H A DembeddedSCTs3.sct1 Signed Certificate Timestamp:
13 Signed Certificate Timestamp:
25 Signed Certificate Timestamp:
H A DembeddedSCTs1.sct1 Signed Certificate Timestamp:
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp87 bool Signed) { in nextLEB() argument
90 Val = Signed ? decodeSLEB128(Bytes.data() + Size, &N, in nextLEB()
102 ArrayRef<uint8_t> Bytes, bool Signed) { in parseLEBImmediate() argument
104 if (!nextLEB(Val, Bytes, Size, Signed)) in parseLEBImmediate()
/freebsd/sys/contrib/openzfs/.github/
H A DCONTRIBUTING.md33 * [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/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp155 unsigned Signed = Size & Operation::SignBit; in extract() local
169 if (Signed) in extract()
174 if (Signed) in extract()
179 if (Signed) in extract()
195 if (Signed) in extract()
321 unsigned Signed = Size & Operation::SignBit; in print() local
352 if (Signed) in print()
/freebsd/crypto/openssl/doc/man3/
H A DSCT_print.pod6 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/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_neon.td808 // Signed Saturating Accumulated of Unsigned Value
812 // Unsigned Saturating Accumulated of Signed Value
832 // Signed integer saturating extract and unsigned narrow to high
1329 // Signed/Unsigned Shift Right (Immediate)
1331 // Signed/Unsigned Rounding Shift Right (Immediate)
1334 // Signed/Unsigned Shift Right and Accumulate (Immediate)
1336 // Signed/Unsigned Rounding Shift Right and Accumulate (Immediate)
1341 // Signed/Unsigned Saturating Shift Left (Immediate)
1343 // Signed Saturating Shift Left Unsigned (Immediate)
1352 // Signed/Unsigned Saturating Shift Right Narrow (Immediate)
[all …]
/freebsd/crypto/openssl/demos/smime/
H A Dsign.txt3 Test OpenSSL Signed Content
/freebsd/crypto/openssl/demos/cms/
H A Dsign.txt3 Test OpenSSL CMS Signed Content
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h271 VariantValue(int Signed) : VariantValue(static_cast<unsigned>(Signed)) {} in VariantValue() argument
/freebsd/crypto/openssl/test/ct/
H A Dtls1.sct1 Signed Certificate Timestamp:
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstraintElimination.cpp288 DenseMap<Value *, unsigned> &getValue2Index(bool Signed) { in getValue2Index() argument
289 return Signed ? SignedCS.getValue2Index() : UnsignedCS.getValue2Index(); in getValue2Index()
291 const DenseMap<Value *, unsigned> &getValue2Index(bool Signed) const { in getValue2Index()
292 return Signed ? SignedCS.getValue2Index() : UnsignedCS.getValue2Index(); in getValue2Index()
295 ConstraintSystem &getCS(bool Signed) { in getCS() argument
296 return Signed ? SignedCS : UnsignedCS; in getCS()
298 const ConstraintSystem &getCS(bool Signed) const { in getCS()
299 return Signed ? SignedCS : UnsignedCS; in getCS()
302 void popLastConstraint(bool Signed) { getCS(Signed).popLastConstraint(); } in popLastConstraint() argument
303 void popLastNVariables(bool Signed, unsigned N) { in popLastNVariables() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp2643 int32_t Signed = static_cast<int32_t>(Literal); in getInlineEncodingV216() local
2644 if (Signed >= 0 && Signed <= 64) in getInlineEncodingV216()
2645 return 128 + Signed; in getInlineEncodingV216()
2647 if (Signed >= -16 && Signed <= -1) in getInlineEncodingV216()
2648 return 192 + std::abs(Signed); in getInlineEncodingV216()
2694 int32_t Signed = static_cast<int32_t>(Literal); in getInlineEncodingV2BF16() local
2695 if (Signed >= 0 && Signed <= 64) in getInlineEncodingV2BF16()
2696 return 128 + Signed; in getInlineEncodingV2BF16()
2698 if (Signed >= -16 && Signed <= -1) in getInlineEncodingV2BF16()
2699 return 192 + std::abs(Signed); in getInlineEncodingV2BF16()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp416 unsigned Offset, bool Signed, const CellMap &Inputs,
419 bool Signed, APInt &Result);
1228 // Signed comparison. in evaluateCMPii()
1274 // Signed comparisons are different. in evaluateCMPpi()
1339 // Signed comparison. The comparison is not NE. in evaluateCMPpp()
1732 unsigned Width, unsigned Bits, unsigned Offset, bool Signed, in evaluateEXTRACTr() argument
1754 evaluateEXTRACTi(A, Bits, Offset, Signed, CA); in evaluateEXTRACTr()
1764 unsigned Offset, bool Signed, APInt &Result) { in evaluateEXTRACTi() argument
1775 if (Signed) in evaluateEXTRACTi()
1779 Result = APInt(BW, V, Signed); in evaluateEXTRACTi()
2149 bool Signed = (Opc == Hexagon::S4_extract) || evaluate() local
2468 bool Signed = false; getCmpImm() local
2741 bool Signed = false; evaluateHexExt() local
[all...]
/freebsd/contrib/file/magic/Magdir/
H A Dder141 # PKCS#7 Signed Data (e.g. JAR Signature Block File)
145 >&0 der obj_id9=2a864886f70d010702 DER Encoded PKCS#7 Signed Data
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h73 int64_t Signed() const { return m_value.value.sval; }
66 int64_t Signed() const { return m_value.value.sval; } Signed() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h462 bool Signed);
466 bool Signed);

1234567