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

  /external/clang/test/CodeGen/
pascal-wchar-string.c 38 // CHECK: store volatile i32 1, i32* %isUnsigned
40 volatile int isUnsigned = (wchar_t)-1 > (wchar_t)0;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 92 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned);
93 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned);
101 if (To.isUnsigned() == From.isUnsigned() &&
105 return getValue(From.getSExtValue(), To.getBitWidth(), To.isUnsigned());
111 bool isUnsigned
114 if (isUnsigned == From.isUnsigned() && bitwidth == From.getBitWidth())
117 return getValue(From.getSExtValue(), bitwidth, isUnsigned);
120 const llvm::APSInt& getIntValue(uint64_t X, bool isUnsigned) {
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 54 bool isUnsigned;
  /external/clang/lib/Lex/
PPExpressions.cpp 42 bool isUnsigned() const { return Val.isUnsigned(); }
231 Result.Val.setIsUnsigned(Literal.isUnsigned);
237 if (!Literal.isUnsigned && Result.Val.isNegative()) {
346 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
522 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
525 if (ValueLive && Res.isUnsigned()) {
526 if (!LHS.isUnsigned() && LHS.Val.isNegative())
531 if (!RHS.isUnsigned() && RHS.Val.isNegative()
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
33 explicit APSInt(const APInt &I, bool isUnsigned = true)
34 : APInt(I), IsUnsigned(isUnsigned) {}
38 IsUnsigned = RHS.IsUnsigned;
55 bool isSigned() const { return !IsUnsigned; }
    [all...]
  /external/llvm/include/llvm/
InstrTypes.h     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 614 bool isUnsigned = false;
644 isUnsigned = true; // FALLTHROUGH
654 isUnsigned = true; // FALLTHROUGH
664 isUnsigned = true; // FALLTHROUGH
674 isUnsigned = true; // FALLTHROUGH
684 return DAG.getNode((isUnsigned ? SystemZISD::UCMP : SystemZISD::CMP),
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]

Completed in 844 milliseconds