| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| HD | MsgPackDocument.h | 56 uint64_t UInt; member 84 assert(getKind() == Type::UInt); in getUInt() 85 return UInt; in getUInt() 104 assert(getKind() == Type::UInt); in getUInt() 105 return UInt; in getUInt() 159 case Type::UInt: 160 return Lhs.UInt < Rhs.UInt; 290 auto N = DocNode(&KindAndDocs[size_t(Type::UInt)]); in getNode() 291 N.UInt = V; in getNode() 297 auto N = DocNode(&KindAndDocs[size_t(Type::UInt)]); in getNode() [all …]
|
| HD | MsgPackReader.h | 50 UInt, enumerator 81 uint64_t UInt; member
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/ |
| HD | MsgPackDocumentYAML.cpp | 51 case msgpack::Type::UInt: in toString() 53 OS << format("%#llx", (unsigned long long)UInt); in toString() 55 OS << UInt; in toString() 122 if (N.getKind() == msgpack::Type::UInt && getKind() == msgpack::Type::Int) in getYAMLTag() 124 if (N.getKind() == msgpack::Type::Int && getKind() == msgpack::Type::UInt) in getYAMLTag() 132 case msgpack::Type::UInt: in getYAMLTag() 190 case Type::UInt: in mustQuote()
|
| HD | MsgPackReader.cpp | 59 Obj.Kind = Type::UInt; in read() 62 Obj.Kind = Type::UInt; in read() 65 Obj.Kind = Type::UInt; in read() 68 Obj.Kind = Type::UInt; in read() 154 Obj.Kind = Type::UInt; in read() 155 Obj.UInt = FB; in read() 206 Obj.UInt = static_cast<uint64_t>(endian::read<T, Endianness>(Current)); in readUInt()
|
| HD | MsgPackDocument.cpp | 104 case Type::UInt: in readFromBlob() 105 Node = getNode(Obj.UInt); in readFromBlob() 206 case Type::UInt: in writeToBlob()
|
| HD | AMDGPUMetadataVerifier.cpp | 45 if (!verifyScalar(Node, msgpack::Type::UInt)) in verifyInteger()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/ |
| HD | OpenCLBuiltins.td | 253 def UInt : Type<"uint", QualType<"UnsignedIntTy">>; 308 def TLAll : TypeList<"TLAll", [Char, UChar, Short, UShort, Int, UInt, Long, ULong, Floa… 309 …d : TypeList<"TLAllUnsigned", [UChar, UChar, UShort, UShort, UInt, UInt, ULong, ULong, UInt, ULon… 312 def TLUnsignedInts : TypeList<"TLUnsignedInts", [UChar, UShort, UInt, ULong]>; 314 def TLIntLongFloats : TypeList<"TLIntLongFloats", [Int, UInt, Long, ULong, Float, Double, Half]>; 319 def TLAllUIntsTwice : TypeList<"TLAllUIntsTwice", [UChar, UChar, UShort, UShort, UInt, UInt, ULong,… 321 def TLAllInts : TypeList<"TLAllInts", [Char, UChar, Short, UShort, Int, UInt, Long, ULong]>; 346 Int, UInt, Long, ULong, 374 UShort, Int, UInt, Long, ULong] in { 376 UShort, Int, UInt, Long, ULong] in { [all …]
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
| HD | EmulateInstructionARM64.cpp | 67 #define UInt(x) ((uint64_t)x) macro 91 uint64_t unsigned_sum = UInt(x) + UInt(y) + UInt(carry_in); in AddWithCarry() 92 int64_t signed_sum = SInt(x) + SInt(y) + UInt(carry_in); in AddWithCarry() 98 proc_state.C = UInt(result) == unsigned_sum; in AddWithCarry() 637 const uint32_t d = UInt(Rd); in EmulateADDSUBImm() 638 const uint32_t n = UInt(Rn); in EmulateADDSUBImm() 715 integer n = UInt(Rn); in EmulateLDPSTP() 716 integer t = UInt(Rt); in EmulateLDPSTP() 717 integer t2 = UInt(Rt2); in EmulateLDPSTP() 734 scale = 2 + UInt(opc); in EmulateLDPSTP() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| HD | ubsan_diag.h | 164 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg() 172 UIntMax UInt; member
|
| HD | ubsan_diag.cpp | 209 if (A.UInt <= UINT64_MAX) in RenderText() 210 Buffer->append("%llu", (unsigned long long)A.UInt); in RenderText() 212 RenderHex(Buffer, A.UInt); in RenderText()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| HD | SymbolCache.cpp | 43 {codeview::SimpleTypeKind::UInt16Short, PDB_BuiltinType::UInt, 2}, 45 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4}, 47 {codeview::SimpleTypeKind::UInt32Long, PDB_BuiltinType::UInt, 4}, 49 {codeview::SimpleTypeKind::UInt64Quad, PDB_BuiltinType::UInt, 8}, 55 {codeview::SimpleTypeKind::UnsignedCharacter, PDB_BuiltinType::UInt, 1},
|
| HD | NativeSymbolEnumerator.cpp | 95 case PDB_BuiltinType::UInt: in getValue()
|
| HD | NativeTypeEnum.cpp | 226 return PDB_BuiltinType::UInt; in getBuiltinType()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| HD | PrettyBuiltinDumper.cpp | 35 case PDB_BuiltinType::UInt: in getTypeName()
|
| /freebsd-11-stable/usr.bin/truss/ |
| HD | syscall.h | 71 enum Argtype { None = 1, Hex, Octal, Int, UInt, LongHex, Name, Ptr, Stat, Ioctl, enumerator
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | Instruction.def | 187 HANDLE_CAST_INST(41, FPToUI , FPToUIInst ) // floating point -> UInt 189 HANDLE_CAST_INST(43, UIToFP , UIToFPInst ) // UInt -> floating point
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| HD | AMDGPUPALMetadata.cpp | 166 if (N.getKind() != msgpack::Type::UInt) in getRegister() 181 if (N.getKind() == msgpack::Type::UInt) in setRegister()
|
| /freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ |
| HD | NeonEmitter.cpp | 147 UInt, enumerator 189 bool isInteger() const { return Kind == SInt || Kind == UInt; } in isInteger() 211 Kind = UInt; in makeUnsigned() 220 Kind = Sign ? SInt : UInt; in makeInteger() 712 T.Kind = UInt; in fromTypedefName() 791 Kind = UInt; in applyTypespec() 844 Kind = UInt; in applyModifiers() 892 Kind = UInt; in applyModifiers()
|
| HD | MveEmitter.cpp | 773 enum class BoundsType { ExplicitRange, UInt }; enumerator 883 case ImmediateArg::BoundsType::UInt: in genSema() 1334 IA.boundsType = ImmediateArg::BoundsType::UInt; in ACLEIntrinsic()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| HD | PDBTypes.h | 339 UInt = 7, enumerator
|
| /freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ |
| HD | Scalar.h | 213 unsigned int UInt(unsigned int fail_value = 0) const;
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ |
| HD | ASTCommon.cpp | 44 case BuiltinType::UInt: in TypeIdxFromBuiltin()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | CodeGenTBAA.cpp | 135 case BuiltinType::UInt: in getTypeInfoHelper()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | ScanfFormatString.cpp | 459 case BuiltinType::UInt: in fixType()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
| HD | PDBExtras.cpp | 52 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_BuiltinType, UInt, OS) in operator <<()
|