HomeSort by relevance Sort by last modified time
    Searched defs:isUnsigned (Results 1 - 11 of 11) 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/lib/ASTMatchers/Dynamic/
VariantValue.cpp 123 bool VariantValue::isUnsigned() const {
128 assert(isUnsigned());
  /external/clang/include/clang/Basic/
TargetBuiltins.h 99 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
100 if (IsUnsigned)
111 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/include/clang/Lex/
LiteralSupport.h 56 bool isUnsigned;
  /external/clang/lib/Lex/
PPExpressions.cpp 43 bool isUnsigned() const { return Val.isUnsigned(); }
253 Result.Val.setIsUnsigned(Literal.isUnsigned);
259 if (!Literal.isUnsigned && Result.Val.isNegative()) {
372 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
548 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
551 if (ValueLive && Res.isUnsigned()) {
552 if (!LHS.isUnsigned() && LHS.Val.isNegative())
557 if (!RHS.isUnsigned() && RHS.Val.isNegative()
    [all...]
  /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(const APInt &I, bool isUnsigned = true)
34 : APInt(I), IsUnsigned(isUnsigned) {}
38 IsUnsigned = RHS.IsUnsigned;
    [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 590 milliseconds