HomeSort by relevance Sort by last modified time
    Searched refs:IsUnsigned (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
26 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) {}
49 bool isSigned() const { return !IsUnsigned; }
50 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 20 if (IsUnsigned && !AllowSignConversions &&
26 if (Value.isSigned() && !IsUnsigned)
37 MinBits = Value.getMinSignedBits() - IsUnsigned;
39 MinBits = Value.getActiveBits() + !IsUnsigned;
  /external/llvm/lib/Support/
APSInt.cpp 21 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
  /external/clang/include/clang/Basic/
TargetBuiltins.h 122 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
123 if (IsUnsigned)
134 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/include/clang/AST/
TemplateBase.h 88 unsigned IsUnsigned : 1;
288 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
292 Integer.IsUnsigned);
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 132 unsigned getRegEnsuringSimpleIntegerWidening(const Value *, bool IsUnsigned);
497 bool IsUnsigned = CI->isUnsigned();
498 unsigned LeftReg = getRegEnsuringSimpleIntegerWidening(Left, IsUnsigned);
501 unsigned RightReg = getRegEnsuringSimpleIntegerWidening(Right, IsUnsigned);
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]

Completed in 211 milliseconds