HomeSort by: relevance | last modified time | path
    Searched defs:isUnsigned (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 21 bool IsUnsigned;
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
28 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
31 bool isUnsigned() const { return IsUnsigned; }
41 Value.setIsUnsigned(IsUnsigned);
49 llvm::APSInt Result(Value, Value.isUnsigned());
56 return llvm::APSInt(BitWidth, IsUnsigned);
61 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
AbstractBasicReader.h 166 bool isUnsigned = asImpl().readBool();
168 return llvm::APSInt(std::move(value), isUnsigned);
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 364 bool VariantValue::isUnsigned() const {
369 assert(isUnsigned());
437 if (!isUnsigned())
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPExpressions.cpp 61 bool isUnsigned() const { return Val.isUnsigned(); }
342 Result.Val.setIsUnsigned(Literal.isUnsigned);
348 if (!Literal.isUnsigned && Result.Val.isNegative()) {
469 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
663 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
666 if (ValueLive && Res.isUnsigned()) {
667 if (!LHS.isUnsigned() && LHS.Val.isNegative())
672 if (!RHS.isUnsigned() && RHS.Val.isNegative()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
33 explicit APSInt(APInt I, bool isUnsigned = true)
34 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
76 bool isSigned() const { return !IsUnsigned; }
77 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetBuiltins.h 165 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
166 if (IsUnsigned)
177 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InstrTypes.h 943 bool isUnsigned() const {
944 return isUnsigned(getPredicate());
998 static bool isUnsigned(Predicate predicate);
DebugInfoMetadata.h 418 bool IsUnsigned, ArrayRef<Metadata *> Ops)
421 SubclassData32 = IsUnsigned;
424 bool IsUnsigned, ArrayRef<Metadata *> Ops)
425 : DIEnumerator(C, Storage, APInt(64, Value, !IsUnsigned), IsUnsigned,
430 bool IsUnsigned, StringRef Name,
432 return getImpl(Context, Value, IsUnsigned,
436 bool IsUnsigned, MDString *Name,
440 return getTemporary(getContext(), getValue(), isUnsigned(), getName());
445 (int64_t Value, bool IsUnsigned, StringRef Name)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 166 static bool isUnsigned(Kind Cmp) {
1804 if (!Cmp || Comparison::isUnsigned(Cmp))
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 3879 assert(CmpInst::isUnsigned(pred) && "Call only with unsigned predicates!");
3912 bool CmpInst::isUnsigned(Predicate predicate) {
3934 if (isUnsigned(pred))
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 341 ExtIntType::ExtIntType(bool IsUnsigned, unsigned NumBits)
342 : Type(ExtInt, QualType{}, TypeDependence::None), IsUnsigned(IsUnsigned),
346 bool IsUnsigned, Expr *NumBitsExpr)
349 Context(Context), ExprAndUnsigned(NumBitsExpr, IsUnsigned) {}
351 bool DependentExtIntType::isUnsigned() const {
360 const ASTContext &Context, bool IsUnsigned,
362 ID.AddBoolean(IsUnsigned);
2064 return IT->isUnsigned();
2081 return IT->isUnsigned();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 3252 bool isUnsigned = isFloatDIType(DIGV->getType())
3255 APSInt Value(APInt(/*BitWidth=*/64, DIE->getElement(1)), isUnsigned);

Completed in 30 milliseconds