Home
last modified time | relevance | path

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

123456

/freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/
H A DSveEmitter.cpp395 if (Signed) in builtin_str()
552 Signed = true; in applyModifier()
580 Signed = true; in applyModifier()
601 Signed = true; in applyModifier()
620 Signed = true; in applyModifier()
630 Signed = true; in applyModifier()
636 Signed = true; in applyModifier()
644 Signed = true; in applyModifier()
685 Signed = true; in applyModifier()
723 Signed = true; in applyModifier()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/
H A DIntegral.h41 template <unsigned Bits, bool Signed> struct Repr;
56 template <unsigned Bits, bool Signed> class Integral {
61 using T = typename Repr<Bits, Signed>::Type;
107 return APSInt(APInt(Bits, static_cast<uint64_t>(V), Signed), !Signed);
110 if (Signed)
111 return APSInt(toAPSInt().sextOrTrunc(NumBits), !Signed);
113 return APSInt(toAPSInt().zextOrTrunc(NumBits), !Signed);
127 bool isMinusOne() const { return Signed && V == T(-1); }
129 constexpr static bool isSigned() { return Signed; }
146 return Integral((V & BitMask) | (Signed && (V & SignBit) ? ExtMask : 0));
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DCheckedArithmetic.h30 checkedOp(T LHS, T RHS, F Op, bool Signed = true) {
31 llvm::APInt ALHS(sizeof(T) * 8, LHS, Signed);
32 llvm::APInt ARHS(sizeof(T) * 8, RHS, Signed);
37 return Signed ? Out.getSExtValue() : Out.getZExtValue();
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp389 return (Signed && BinOpI->hasNoSignedWrap()) || in checkNoWrapFlags()
390 (!Signed && BinOpI->hasNoUnsignedWrap()); in checkNoWrapFlags()
414 checkNoWrapFlags(AddOpA, Signed) && checkNoWrapFlags(AddOpB, Signed)); in checkIfSafeAddSequence()
423 checkNoWrapFlags(OtherInstrB, Signed) && in checkIfSafeAddSequence()
433 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence()
446 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence()
447 checkNoWrapFlags(OtherInstrB, Signed) && in checkIfSafeAddSequence()
506 bool Signed = isa<SExtInst>(OpA); in lookThroughComplexAddresses() local
522 checkNoWrapFlags(OpB, Signed)) in lookThroughComplexAddresses()
530 checkNoWrapFlags(OpB, Signed)) { in lookThroughComplexAddresses()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp85 bool Signed) { in nextLEB() argument
88 Val = Signed ? decodeSLEB128(Bytes.data() + Size, &N, in nextLEB()
100 ArrayRef<uint8_t> Bytes, bool Signed) { in parseLEBImmediate() argument
102 if (!nextLEB(Val, Bytes, Size, Signed)) in parseLEBImmediate()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp132 unsigned Signed = Size & Operation::SignBit; in extract() local
140 if (Signed) in extract()
145 if (Signed) in extract()
150 if (Signed) in extract()
166 if (Signed) in extract()
284 unsigned Signed = Size & Operation::SignBit; in print() local
314 if (Signed) in print()
/freebsd-13.1/sys/contrib/openzfs/.github/
H A DCONTRIBUTING.md33 * [Signed Off By](#signed-off-by)
217 * The last line must be a `Signed-off-by:` tag. See the
218 [Signed Off By](#signed-off-by) section for more information.
230 Signed-off-by: Contributor <[email protected]>
241 * The last line must be a `Signed-off-by:` tag. See the
242 [Signed Off By](#signed-off-by) section for more information.
257 Signed-off-by: Contributor <[email protected]>
260 #### Signed Off By
261 A line tagged as `Signed-off-by:` must contain the developer's
268 Git can append the `Signed-off-by` line to your commit messages. Simply
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h382 Attribute::AttrKind getExtAttrForI32Param(bool Signed = true) const {
384 return Signed ? Attribute::SExt : Attribute::ZExt;
393 Attribute::AttrKind getExtAttrForI32Return(bool Signed = true) const {
395 return Signed ? Attribute::SExt : Attribute::ZExt;
H A DIVDescriptors.h73 bool Signed, bool Ordered, in RecurrenceDescriptor() argument
76 ExactFPMathInst(ExactFP), RecurrenceType(RT), IsSigned(Signed), in RecurrenceDescriptor()
/freebsd-13.1/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 L<bio> in
H A DCTLOG_STORE_get0_log_by_id.pod18 A Signed Certificate Timestamp (SCT) identifies the Certificate Transparency
H A Do2i_SCT_LIST.pod6 decode and encode Signed Certificate Timestamp lists in TLS wire format
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_neon.td810 // Signed Saturating Accumulated of Unsigned Value
814 // Unsigned Saturating Accumulated of Signed Value
1325 // Signed/Unsigned Shift Right (Immediate)
1327 // Signed/Unsigned Rounding Shift Right (Immediate)
1423 // Scalar Signed Integer Convert To Floating-point
1516 // Scalar Signed Saturating Absolute Value
1524 // Scalar Signed Saturating Negate
1536 // Signed Saturating Doubling Multiply-Add Long
1544 // Signed Saturating Doubling Multiply Long
1548 // Scalar Signed Saturating Extract Unsigned Narrow
[all …]
H A DSpecifiers.h38 enum class TypeSpecifierSign { Unspecified, Signed, Unsigned }; enumerator
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h271 VariantValue(int Signed) : VariantValue(static_cast<unsigned>(Signed)) {} in VariantValue() argument
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.h70 std::string getTypeName(Type *Ty, bool Signed) const;
153 std::string getTypeName(Type *Ty, bool Signed) const;
H A DAMDGPULegalizerInfo.h56 MachineIRBuilder &B, bool Signed) const;
58 MachineIRBuilder &B, bool Signed) const;
H A DAMDGPUHSAMetadataStreamer.cpp142 std::string MetadataStreamerV2::getTypeName(Type *Ty, bool Signed) const { in getTypeName()
145 if (!Signed) in getTypeName()
172 return (Twine(getTypeName(ElTy, Signed)) + Twine(NumElements)).str(); in getTypeName()
561 std::string MetadataStreamerV3::getTypeName(Type *Ty, bool Signed) const { in getTypeName()
564 if (!Signed) in getTypeName()
591 return (Twine(getTypeName(ElTy, Signed)) + Twine(NumElements)).str(); in getTypeName()
H A DAMDGPUISelLowering.h62 SDValue LowerINT_TO_FP32(SDValue Op, SelectionDAG &DAG, bool Signed) const;
63 SDValue LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG, bool Signed) const;
67 SDValue LowerFP_TO_INT64(SDValue Op, SelectionDAG &DAG, bool Signed) const;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp420 bool Signed, APInt &Result);
1782 if (Signed) in evaluateEXTRACTi()
1786 Result = APInt(BW, V, Signed); in evaluateEXTRACTi()
1789 if (Signed) in evaluateEXTRACTi()
2173 Signed = false; in evaluate()
2475 bool Signed = false; in getCmpImm() local
2482 Signed = true; in getCmpImm()
2492 Signed = true; in getCmpImm()
2513 return APInt(32, Val, Signed); in getCmpImm()
2748 bool Signed = false; in evaluateHexExt() local
[all …]
H A DHexagonSplitDouble.cpp795 bool Signed = (Opc == S2_asr_i_p); in splitShift() local
801 : (Signed ? S2_asr_i_r : S2_lsr_i_r); in splitShift()
834 else if (S == 16 && Signed) in splitShift()
868 if (!Signed) in splitShift()
880 else if (S == 16 && Signed) in splitShift()
888 if (Signed) in splitShift()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h399 bool Signed);
403 bool Signed);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTX.h117 Signed, enumerator
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h66 int64_t Signed() const { return m_value.value.sval; } in Signed() function
/freebsd-13.1/crypto/openssl/doc/man7/
H A Dct.pod21 Signed Certificate Timestamps (SCTs), or to read a list of CT logs. There are

123456