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

  /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/lib/Support/
APSInt.cpp 21 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
  /external/clang/include/clang/Basic/
TargetBuiltins.h 83 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
84 if (IsUnsigned)
95 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/utils/TableGen/
NeonEmitter.h 113 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
114 if (IsUnsigned)

Completed in 525 milliseconds