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

  /external/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 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 30 *this = APSInt(Tmp, /*IsUnsigned=*/false);
36 *this = APSInt(Tmp, /*IsUnsigned=*/true);
40 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
  /external/clang/include/clang/Basic/
TargetBuiltins.h 123 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
124 if (IsUnsigned)
135 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/include/clang/AST/
TemplateBase.h 88 unsigned IsUnsigned : 1;
285 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
289 Integer.IsUnsigned);
  /external/v8/src/
machine-type.h 64 bool IsUnsigned() {
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 138 unsigned getRegEnsuringSimpleIntegerWidening(const Value *, bool IsUnsigned);
583 bool IsUnsigned = CI->isUnsigned();
584 unsigned LeftReg = getRegEnsuringSimpleIntegerWidening(Left, IsUnsigned);
587 unsigned RightReg = getRegEnsuringSimpleIntegerWidening(Right, IsUnsigned);
    [all...]
  /external/v8/src/compiler/mips/
instruction-selector-mips.cc 145 opcode = load_rep.IsUnsigned() ? kMipsLbu : kMipsLb;
148 opcode = load_rep.IsUnsigned() ? kMipsLhu : kMipsLh;
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /external/v8/src/compiler/arm/
instruction-selector-arm.cc 321 opcode = load_rep.IsUnsigned() ? kArmLdrb : kArmLdrsb;
324 opcode = load_rep.IsUnsigned() ? kArmLdrh : kArmLdrsh;
    [all...]
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc 150 opcode = load_rep.IsUnsigned() ? kMips64Lbu : kMips64Lb;
153 opcode = load_rep.IsUnsigned() ? kMips64Lhu : kMips64Lh;
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]

Completed in 324 milliseconds