HomeSort by relevance Sort by last modified time
    Searched defs:isUnsigned (Results 1 - 9 of 9) 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/
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...]
  /frameworks/compile/slang/
slang_rs_export_var.h 56 inline bool isUnsigned() const { return mIsUnsigned; }
  /external/clang/include/clang/Basic/
TargetBuiltins.h 89 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
90 if (IsUnsigned)
101 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/include/clang/Lex/
LiteralSupport.h 54 bool isUnsigned;
  /external/clang/lib/Lex/
PPExpressions.cpp 42 bool isUnsigned() const { return Val.isUnsigned(); }
235 Result.Val.setIsUnsigned(Literal.isUnsigned);
241 if (!Literal.isUnsigned && Result.Val.isNegative()) {
354 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
530 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
533 if (ValueLive && Res.isUnsigned()) {
534 if (!LHS.isUnsigned() && LHS.Val.isNegative())
539 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/VMCore/
Instructions.cpp     [all...]

Completed in 1949 milliseconds