| /openbsd-src/gnu/llvm/libcxx/src/include/ |
| H A D | to_chars_floating_point.h | 532 template <typename UInt, typename Pred> 533 [[nodiscard]] UInt uint_partition_point(UInt first, const UInt last, Pred pred) { 537 static_assert(is_unsigned_v<UInt>); 540 for (UInt n = last - first; n > 0;) { 541 const UInt n2 = n / 2; 542 const UInt mid = first + n2; 578 template <typename UInt> 579 void print_table(const vector<UInt>& v, const char* const name) { 580 constexpr const char* UIntName = _IsSame<UInt, uint32_t>::value ? "uint32_t" : "uint64_t"; 585 if constexpr (_IsSame<UInt, uint32_t>::value) { [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | OpenCLBuiltins.td | 349 def UInt : Type<"uint", QualType<"Context.UnsignedIntTy">>; 444 def TLAll : TypeList<[Char, UChar, Short, UShort, Int, UInt, Long, ULong, Float, Doub… 447 def TLUnsignedInts : TypeList<[UChar, UShort, UInt, ULong]>; 449 def TLIntLongFloats : TypeList<[Int, UInt, Long, ULong, Float, Double, Half]>; 454 def TLAllUIntsTwice : TypeList<[UChar, UChar, UShort, UShort, UInt, UInt, ULong, ULong]>; 456 def TLAllInts : TypeList<[Char, UChar, Short, UShort, Int, UInt, Long, ULong]>; 485 Int, UInt, Long, ULong, 511 UShort, Int, UInt, Long, ULong] in { 513 UShort, Int, UInt, Long, ULong] in { 535 def : Builtin<"get_work_dim", [UInt], Attr.Const>; [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/ |
| H A D | MsgPackDocument.h | 56 uint64_t UInt; member 88 assert(getKind() == Type::UInt); in getUInt() 89 return UInt; in getUInt() 108 assert(getKind() == Type::UInt); in getUInt() 109 return UInt; in getUInt() 163 case Type::UInt: 164 return Lhs.UInt < Rhs.UInt; 329 auto N = DocNode(&KindAndDocs[size_t(Type::UInt)]); in getNode() 330 N.UInt = V; in getNode() 336 auto N = DocNode(&KindAndDocs[size_t(Type::UInt)]); in getNode() [all …]
|
| H A D | MsgPackReader.h | 50 UInt, enumerator 82 uint64_t UInt; member
|
| /openbsd-src/gnu/llvm/llvm/lib/BinaryFormat/ |
| H A D | MsgPackDocumentYAML.cpp | 50 case msgpack::Type::UInt: in toString() 52 OS << format("%#llx", (unsigned long long)UInt); in toString() 54 OS << UInt; in toString() 121 if (N.getKind() == msgpack::Type::UInt && getKind() == msgpack::Type::Int) in getYAMLTag() 123 if (N.getKind() == msgpack::Type::Int && getKind() == msgpack::Type::UInt) in getYAMLTag() 131 case msgpack::Type::UInt: in getYAMLTag() 189 case Type::UInt: in mustQuote()
|
| H A D | MsgPackReader.cpp | 60 Obj.Kind = Type::UInt; in read() 63 Obj.Kind = Type::UInt; in read() 66 Obj.Kind = Type::UInt; in read() 69 Obj.Kind = Type::UInt; in read() 155 Obj.Kind = Type::UInt; in read() 156 Obj.UInt = FB; in read() 207 Obj.UInt = static_cast<uint64_t>(endian::read<T, Endianness>(Current)); in readUInt()
|
| H A D | MsgPackDocument.cpp | 158 case Type::UInt: in readFromBlob() 159 Node = getNode(Obj.UInt); in readFromBlob() 274 case Type::UInt: in writeToBlob()
|
| H A D | AMDGPUMetadataVerifier.cpp | 51 if (!verifyScalar(Node, msgpack::Type::UInt)) in verifyInteger()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/abi/ |
| H A D | bitfield2.h | 3 typedef unsigned int UInt; typedef 8 UInt bitU : 1; // unsigned
|
| H A D | bitfield1.h | 3 typedef unsigned int UInt; typedef 8 UInt bitU : 1; // unsigned
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/abi/ |
| H A D | bitfield2.C | 9 typedef unsigned int UInt; typedef 14 UInt bitU : 1; // unsigned
|
| H A D | bitfield1.C | 9 typedef unsigned int UInt; typedef 14 UInt bitU : 1; // unsigned
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/ARM64/ |
| H A D | EmulateInstructionARM64.cpp | 71 #define UInt(x) ((uint64_t)x) macro 563 uint64_t unsigned_sum = UInt(x) + UInt(y) + UInt(carry_in); in AddWithCarry() 573 proc_state.C = UInt(result) != unsigned_sum; in AddWithCarry() 624 const uint32_t d = UInt(Rd); in EmulateADDSUBImm() 625 const uint32_t n = UInt(Rn); in EmulateADDSUBImm() 703 integer n = UInt(Rn); in EmulateLDPSTP() 704 integer t = UInt(Rt); in EmulateLDPSTP() 705 integer t2 = UInt(Rt2); in EmulateLDPSTP() 722 scale = 2 + UInt(opc); in EmulateLDPSTP() 1118 integer t = UInt(Rt); in EmulateCBZ() [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.h | 164 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg() 172 UIntMax UInt; member
|
| H A D | ubsan_diag.cpp | 207 if (A.UInt <= UINT64_MAX) in RenderText() 208 Buffer->append("%llu", (unsigned long long)A.UInt); in RenderText() 210 RenderHex(Buffer, A.UInt); in RenderText()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | SymbolCache.cpp | 56 {codeview::SimpleTypeKind::UInt16Short, PDB_BuiltinType::UInt, 2}, 58 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4}, 60 {codeview::SimpleTypeKind::UInt32Long, PDB_BuiltinType::UInt, 4}, 62 {codeview::SimpleTypeKind::UInt64Quad, PDB_BuiltinType::UInt, 8}, 69 {codeview::SimpleTypeKind::UnsignedCharacter, PDB_BuiltinType::UInt, 1},
|
| H A D | NativeSymbolEnumerator.cpp | 97 case PDB_BuiltinType::UInt: in getValue()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyBuiltinDumper.cpp | 35 case PDB_BuiltinType::UInt: in getTypeName()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Instruction.def | 187 HANDLE_CAST_INST(41, FPToUI , FPToUIInst ) // floating point -> UInt 189 HANDLE_CAST_INST(43, UIToFP , UIToFPInst ) // UInt -> floating point
|
| /openbsd-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 148 UInt, enumerator 191 bool isInteger() const { return Kind == SInt || Kind == UInt; } in isInteger() 214 Kind = UInt; in makeUnsigned() 223 Kind = Sign ? SInt : UInt; in makeInteger() 735 T.Kind = UInt; in fromTypedefName() 817 Kind = UInt; in applyTypespec() 874 Kind = UInt; in applyModifiers() 926 Kind = UInt; in applyModifiers()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOS.cpp | 304 argument_values.GetValueAtIndex(0)->GetScalar().UInt(-1); in NotifyBreakpointHit() 309 argument_values.GetValueAtIndex(1)->GetScalar().UInt(-1); in NotifyBreakpointHit()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUPALMetadata.cpp | 167 if (N.getKind() != msgpack::Type::UInt) in getRegister() 182 if (N.getKind() == msgpack::Type::UInt) in setRegister()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | FormatString.cpp | 378 case BuiltinType::UInt: in matchesType() 432 case BuiltinType::UInt: in matchesType() 459 case BuiltinType::UInt: in matchesType()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | Scalar.h | 163 unsigned int UInt(unsigned int fail_value = 0) const;
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTCommon.cpp | 44 case BuiltinType::UInt: in TypeIdxFromBuiltin()
|