Searched refs:Unsigned (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h24 APSIntType(uint32_t Width, bool Unsigned) argument
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
97 /// Unsigned integers are considered to be better conversion types than
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp209 ? unit.FindRnglistFromIndex(value.Unsigned())
210 : unit.FindRnglistFromOffset(value.Unsigned());
217 die.GetOffset(), value.Unsigned(),
276 hi_pc = form_value.Unsigned();
310 decl_file = form_value.Unsigned();
315 decl_line = form_value.Unsigned();
320 decl_column = form_value.Unsigned();
325 call_file = form_value.Unsigned();
330 call_line = form_value.Unsigned();
335 call_column = form_value.Unsigned();
[all...]
H A DDWARFFormValue.h63 uint64_t Unsigned() const { return m_value.value.uval; } function in class:DWARFFormValue
H A DDWARFASTParserClang.cpp270 accessibility = DW_ACCESS_to_AccessType(form_value.Unsigned());
278 bit_stride = form_value.Unsigned();
282 byte_size = form_value.Unsigned();
286 byte_stride = form_value.Unsigned();
290 calling_convention = form_value.Unsigned();
298 decl.SetFile(die.GetCU()->GetFile(form_value.Unsigned()));
301 decl.SetLine(form_value.Unsigned());
304 decl.SetColumn(form_value.Unsigned());
312 encoding = form_value.Unsigned();
324 if (form_value.Unsigned())
[all...]
H A DDWARFUnit.cpp297 addr_base = form_value.Unsigned();
310 SetLoclistsBase(form_value.Unsigned());
313 ranges_base = form_value.Unsigned();
317 SetStrOffsetsBase(form_value.Unsigned());
328 m_line_table_offset = form_value.Unsigned();
331 gnu_addr_base = form_value.Unsigned();
334 gnu_ranges_base = form_value.Unsigned();
H A DHashedNameToDIE.cpp273 ? form_value.Unsigned()
278 hash_data.tag = (dw_tag_t)form_value.Unsigned();
282 hash_data.type_flags = (uint32_t)form_value.Unsigned();
286 hash_data.qualified_name_hash = form_value.Unsigned();
H A DDWARFFormValue.cpp333 uint64_t uvalue = Unsigned();
499 return Unsigned();
H A DSymbolFileDWARF.cpp3256 form_value.Unsigned()));
3259 decl.SetLine(form_value.Unsigned());
3262 decl.SetColumn(form_value.Unsigned());
3289 uint32_t block_length = form_value.Unsigned();
3305 form_value.Unsigned();
3344 uint32_t block_length = form_value.Unsigned();
3350 dw_offset_t offset = form_value.Unsigned();
3374 // DW_ACCESS_to_AccessType(form_value.Unsigned()); break;
3572 location.UpdateValue(const_value.Unsigned(),
3785 uint32_t block_length = form_value.Unsigned();
[all...]
H A DManualDWARFIndex.cpp165 is_declaration = form_value.Unsigned() != 0;
171 // is_artificial = form_value.Unsigned() != 0;
212 // uint32_t block_length = form_value.Unsigned();
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPSInt.h287 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { argument
288 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
289 : APInt::getSignedMaxValue(numBits), Unsigned);
294 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { argument
295 return APSInt(Unsigned ? APInt::getMinValue(numBits)
296 : APInt::getSignedMinValue(numBits), Unsigned);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTX.h98 Unsigned = 0, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::FromType
H A DNVPTXISelDAGToDAG.cpp907 fromType = NVPTX::PTXLdStInstCode::Unsigned;
1045 FromType = NVPTX::PTXLdStInstCode::Unsigned;
1764 toType = NVPTX::PTXLdStInstCode::Unsigned;
1909 ToType = NVPTX::PTXLdStInstCode::Unsigned;
H A DNVPTXISelLowering.cpp4573 Unsigned, enumerator in enum:OperandSignedness
4595 S = Unsigned;
4625 if (LHSSign == Unsigned) {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h261 VariantValue(unsigned Unsigned);
282 /// Unsigned value functions.
285 void setUnsigned(unsigned Unsigned);
333 unsigned Unsigned; member in union:clang::ast_matchers::dynamic::VariantValue::AllValues
/freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp261 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { argument
262 setUnsigned(Unsigned);
355 return Value.Unsigned;
361 Value.Unsigned = NewValue;
449 case VT_Unsigned: return "Unsigned";
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DScaledNumber.h435 uint64_t Unsigned = N == INT64_MIN ? UINT64_C(1) << 63 : uint64_t(-N);
436 return std::make_pair(Unsigned, true);
660 std::pair<uint64_t, bool> Unsigned = splitSigned(N); local
661 return joinSigned(scale(Unsigned.first), Unsigned.second);
664 std::pair<uint64_t, bool> Unsigned = splitSigned(N); local
665 return joinSigned(scaleByInverse(Unsigned.first), Unsigned.second);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h202 void addConstantValue(DIE &Die, const APInt &Val, bool Unsigned);
204 void addConstantValue(DIE &Die, bool Unsigned, uint64_t Val);
H A DDwarfUnit.cpp553 void DwarfUnit::addConstantValue(DIE &Die, bool Unsigned, uint64_t Val) { argument
557 Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata, Val);
564 void DwarfUnit::addConstantValue(DIE &Die, const APInt &Val, bool Unsigned) { argument
567 addConstantValue(Die, Unsigned,
568 Unsigned ? Val.getZExtValue() : Val.getSExtValue());
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h272 enum PreferredRangeType { Smallest, Unsigned, Signed }; enumerator in enum:llvm::ConstantRange::PreferredRangeType
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXInstPrinter.cpp254 else if (Imm == NVPTX::PTXLdStInstCode::Unsigned)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp236 bool Unsigned = NoWrapKind == OBO::NoUnsignedWrap; local
244 if (Unsigned)
256 if (Unsigned)
267 if (Unsigned)
287 if (Unsigned)
430 if (Type == ConstantRange::Unsigned) {
949 // Unsigned range first.
/freebsd-12-stable/contrib/googletest/googletest/test/
H A Dgoogletest-output-test_.cc852 INSTANTIATE_TYPED_TEST_CASE_P(Unsigned, TypedTestP, UnsignedTypes);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9550 bool Signed = false, Unsigned = false; local
9565 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
9571 assert(!Unsigned && "Can't use 'U' modifier multiple times!");
9572 Unsigned = true;
9648 assert(HowLong == 0 && !Signed && !Unsigned &&
9653 assert(HowLong == 0 && !Signed && !Unsigned &&
9658 assert(HowLong == 0 && !Signed && !Unsigned &&
9663 assert(HowLong < 3 && !Signed && !Unsigned &&
9674 if (Unsigned)
9681 Type = Unsigned
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp897 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType(); local
899 APSInt Min = APSInt::getMinValue(Width, Unsigned);
901 if (MinSrc.convertFromAPInt(Min, !Unsigned, APFloat::rmTowardZero) &
911 APSInt Max = APSInt::getMaxValue(Width, Unsigned);
913 if (MaxSrc.convertFromAPInt(Max, !Unsigned, APFloat::rmTowardZero) &
3914 // Unsigned integers and pointers.
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp9297 // Unsigned types cannot be negative. Suggest removing the absolute value
10642 PromotedRange(IntRange R, unsigned BitWidth, bool Unsigned) { argument
10644 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned);
10645 else if (R.Width >= BitWidth && !Unsigned) {
10649 PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
10650 PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned);
10654 PromotedMin.setIsUnsigned(Unsigned);
10658 PromotedMax.setIsUnsigned(Unsigned);

Completed in 296 milliseconds

12