Home
last modified time | relevance | path

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

12345

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCheckedArithmetic.h31 checkedOp(T LHS, T RHS, F Op, bool Signed = true) {
32 llvm::APInt ALHS(/*BitSize=*/sizeof(T) * 8, LHS, Signed);
33 llvm::APInt ARHS(/*BitSize=*/sizeof(T) * 8, RHS, Signed);
38 return Signed ? Out.getSExtValue() : Out.getZExtValue();
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp128 unsigned Signed = Size & Operation::SignBit; in extract() local
136 if (Signed) in extract()
141 if (Signed) in extract()
146 if (Signed) in extract()
169 if (Signed) in extract()
243 unsigned Signed = Size & Operation::SignBit; in print() local
253 if (Signed) in print()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.cpp134 auto Signed = !TypeName.startswith("u"); in getValueType() local
137 return Signed ? ValueType::I8 : ValueType::U8; in getValueType()
139 return Signed ? ValueType::I16 : ValueType::U16; in getValueType()
141 return Signed ? ValueType::I32 : ValueType::U32; in getValueType()
166 if (!Signed) in getTypeName()
590 auto Signed = !TypeName.startswith("u"); in getValueType() local
593 return Signed ? "i8" : "u8"; in getValueType()
595 return Signed ? "i16" : "u16"; in getValueType()
597 return Signed ? "i32" : "u32"; in getValueType()
599 return Signed ? "i64" : "u64"; in getValueType()
[all …]
H A DAMDGPUHSAMetadataStreamer.h71 std::string getTypeName(Type *Ty, bool Signed) const;
141 std::string getTypeName(Type *Ty, bool Signed) const;
H A DSIISelLowering.h46 uint64_t Offset, unsigned Align, bool Signed,
88 SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG, bool Signed) const;
109 bool Signed, const ISD::InputArg *Arg = nullptr) const;
152 SDValue Op0, SDValue Op1, bool Signed) const;
H A DAMDGPUISelLowering.h65 SDValue LowerINT_TO_FP32(SDValue Op, SelectionDAG &DAG, bool Signed) const;
66 SDValue LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG, bool Signed) const;
70 SDValue LowerFP64_TO_INT(SDValue Op, SelectionDAG &DAG, bool Signed) const;
/freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp206 Signed = Sign; in makeInteger()
214 Signed = true; in makeImmediate()
755 Signed = true; in applyTypespec()
827 Signed = false; in applyModifier()
834 Signed = true; in applyModifier()
841 Signed = false; in applyModifier()
846 Signed = true; in applyModifier()
869 Signed = true; in applyModifier()
875 Signed = true; in applyModifier()
881 Signed = false; in applyModifier()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp80 bool Signed = false) { in nextLEB() argument
83 Val = Signed ? decodeSLEB128(Bytes.data() + Size, &N, in nextLEB()
95 ArrayRef<uint8_t> Bytes, bool Signed) { in parseLEBImmediate() argument
97 if (!nextLEB(Val, Bytes, Size, Signed)) in parseLEBImmediate()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h305 Attribute::AttrKind getExtAttrForI32Param(bool Signed = true) const {
307 return Signed ? Attribute::SExt : Attribute::ZExt;
316 Attribute::AttrKind getExtAttrForI32Return(bool Signed = true) const {
318 return Signed ? Attribute::SExt : Attribute::ZExt;
H A DIVDescriptors.h94 bool Signed, SmallPtrSetImpl<Instruction *> &CI) in RecurrenceDescriptor() argument
96 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) { in RecurrenceDescriptor()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A Darm_neon.td706 // Signed Saturating Accumulated of Unsigned Value
710 // Unsigned Saturating Accumulated of Signed Value
1133 // Signed/Unsigned Shift Right (Immediate)
1135 // Signed/Unsigned Rounding Shift Right (Immediate)
1231 // Scalar Signed Integer Convert To Floating-point
1324 // Scalar Signed Saturating Absolute Value
1332 // Scalar Signed Saturating Negate
1344 // Signed Saturating Doubling Multiply-Add Long
1352 // Signed Saturating Doubling Multiply Long
1356 // Scalar Signed Saturating Extract Unsigned Narrow
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DJSON.cpp58 case DataType::Signed: in GetAsUnsigned()
70 case DataType::Signed: in GetAsSigned()
82 case DataType::Signed: in GetAsDouble()
95 case DataType::Signed: in Write()
/freebsd-12.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-12.1/contrib/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h337 bool Signed);
341 bool Signed);
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp950 bool Signed) { in cannotBeMinInLoop() argument
952 APInt Min = Signed ? APInt::getSignedMinValue(BitWidth) : in cannotBeMinInLoop()
954 auto Predicate = Signed ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; in cannotBeMinInLoop()
961 bool Signed) { in cannotBeMaxInLoop() argument
963 APInt Max = Signed ? APInt::getSignedMaxValue(BitWidth) : in cannotBeMaxInLoop()
965 auto Predicate = Signed ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; in cannotBeMaxInLoop()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h267 VariantValue(int Signed) : VariantValue(static_cast<unsigned>(Signed)) {} in VariantValue() argument
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp409 bool Signed, APInt &Result);
1765 if (Signed) in evaluateEXTRACTi()
1769 Result = APInt(BW, V, Signed); in evaluateEXTRACTi()
1772 if (Signed) in evaluateEXTRACTi()
2156 Signed = false; in evaluate()
2458 bool Signed = false; in getCmpImm() local
2465 Signed = true; in getCmpImm()
2475 Signed = true; in getCmpImm()
2496 return APInt(32, Val, Signed); in getCmpImm()
2729 bool Signed = false; in evaluateHexExt() local
[all …]
H A DHexagonSplitDouble.cpp799 bool Signed = (Opc == S2_asr_i_p); in splitShift() local
805 : (Signed ? S2_asr_i_r : S2_lsr_i_r); in splitShift()
838 else if (S == 16 && Signed) in splitShift()
872 if (!Signed) in splitShift()
884 else if (S == 16 && Signed) in splitShift()
892 if (Signed) in splitShift()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DJSON.h97 : JSONValue(JSONValue::Kind::Number), m_data_type(DataType::Signed) { in JSONNumber()
126 enum class DataType : uint8_t { Unsigned, Signed, Double } m_data_type; enumerator
/freebsd-12.1/contrib/llvm/lib/Target/NVPTX/
H A DNVPTX.h109 Signed, enumerator
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h79 int64_t Signed() const { return m_value.value.sval; } in Signed() function
/freebsd-12.1/crypto/openssl/doc/man7/
H A Dct.pod21 Signed Certificate Timestamps (SCTs), or to read a list of CT logs. There are
/freebsd-12.1/contrib/wpa/
H A DCONTRIBUTIONS13 inclusion of Signed-off-by tag in the contributions at the end of the
26 Signed-off-by: Your Name <[email protected]>
87 with a Signed-hostap tag in the commit message. This additional item (e)

12345