HomeSort by: relevance | last modified time | path
    Searched defs:UInt (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPackReader.h 45 /// being divided into a signed Int and unsigned UInt variant in order to map
51 UInt,
82 /// Value for \c Type::Uint.
83 uint64_t UInt;
MsgPackDocument.h 56 uint64_t UInt;
88 assert(getKind() == Type::UInt);
89 return UInt;
108 assert(getKind() == Type::UInt);
109 return UInt;
163 case Type::UInt:
164 return Lhs.UInt < Rhs.UInt;
285 // Whether YAML output uses hex for UInt.
327 /// Create a UInt node associated with this Document
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
MsgPackDocumentYAML.cpp 51 case msgpack::Type::UInt:
53 OS << format("%#llx", (unsigned long long)UInt);
55 OS << UInt;
122 if (N.getKind() == msgpack::Type::UInt && getKind() == msgpack::Type::Int)
124 if (N.getKind() == msgpack::Type::Int && getKind() == msgpack::Type::UInt)
132 case msgpack::Type::UInt:
190 case Type::UInt:
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFYAML.cpp 1199 unsigned long long UInt;
1200 if (getAsUnsignedInteger(Scalar, /*Radix=*/0, UInt) || (UInt > MaxVal))
1202 Val = UInt;
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.h 165 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {}
173 UIntMax UInt;
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag.h 164 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {}
172 UIntMax UInt;
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag.h 164 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {}
172 UIntMax UInt;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
NeonEmitter.cpp 149 UInt,
192 bool isInteger() const { return Kind == SInt || Kind == UInt; }
215 Kind = UInt;
224 Kind = Sign ? SInt : UInt;
731 T.Kind = UInt;
813 Kind = UInt;
870 Kind = UInt;
922 Kind = UInt;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 341 UInt = 7,
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 2105 // TypeWithSize<4>::UInt
2116 // For now it only handles UInt (unsigned int) as that's all Google Test
2124 typedef void UInt;
2136 typedef unsigned int UInt;
2145 typedef unsigned __int64 UInt;
2148 typedef unsigned long long UInt; // NOLINT
2154 typedef TypeWithSize<4>::UInt UInt32;
2156 typedef TypeWithSize<8>::UInt UInt64;

Completed in 32 milliseconds