| /freebsd-14.2/contrib/llvm-project/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> 602 map<int, map<int, UInt>> P_X_LargestValWithX; 611 const UInt val_beyond_X = uint_partition_point(reinterpret_cast<const UInt&>(first), 629 vector<UInt> special; [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | OpenCLBuiltins.td | 1140 foreach TypePair = [[AtomicInt, Int, Int], [AtomicUInt, UInt, UInt], 1148 foreach TypePair = [[AtomicInt, Int, Int], [AtomicUInt, UInt, UInt], 1218 [Int, UInt], [UInt, UInt], 1232 [Int, UInt], [UInt, UInt], 1766 def : Builtin<"sub_group_ballot_find_lsb", [UInt, VectorType<UInt, 4>]>; 1767 def : Builtin<"sub_group_ballot_find_msb", [UInt, VectorType<UInt, 4>]>; 1838 def : Builtin<"dot_4x8packed_uu_uint", [UInt, UInt, UInt], Attr.Const>; 1839 def : Builtin<"dot_4x8packed_ss_int", [Int, UInt, UInt], Attr.Const>; 1840 def : Builtin<"dot_4x8packed_us_int", [Int, UInt, UInt], Attr.Const>; 1841 def : Builtin<"dot_4x8packed_su_int", [Int, UInt, UInt], Attr.Const>; [all …]
|
| /freebsd-14.2/contrib/llvm-project/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() 168 case Type::UInt: 169 return Lhs.UInt < Rhs.UInt; 335 auto N = DocNode(&KindAndDocs[size_t(Type::UInt)]); in getNode() 336 N.UInt = V; in getNode() 342 auto N = DocNode(&KindAndDocs[size_t(Type::UInt)]); in getNode() [all …]
|
| H A D | MsgPackReader.h | 55 UInt, enumerator 87 uint64_t UInt; member
|
| /freebsd-14.2/contrib/llvm-project/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() 157 Obj.Kind = Type::UInt; in read() 158 Obj.UInt = FB; in read() 209 Obj.UInt = static_cast<uint64_t>(endian::read<T, Endianness>(Current)); in readUInt()
|
| H A D | MsgPackDocument.cpp | 168 case Type::UInt: in readFromBlob() 169 Node = getNode(Obj.UInt); in readFromBlob() 287 case Type::UInt: in writeToBlob()
|
| H A D | AMDGPUMetadataVerifier.cpp | 50 if (!verifyScalar(Node, msgpack::Type::UInt)) in verifyInteger()
|
| /freebsd-14.2/contrib/llvm-project/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() 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() 1129 integer t = UInt(Rt); in EmulateCBZ() 1167 integer t = UInt(Rt); in EmulateTBZ() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.h | 144 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg() 152 UIntMax UInt; member
|
| H A D | ubsan_diag.cpp | 210 if (A.UInt <= UINT64_MAX) in RenderText() 211 Buffer->AppendF("%llu", (unsigned long long)A.UInt); in RenderText() 213 RenderHex(Buffer, A.UInt); in RenderText()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| H A D | NativeTypeEnum.cpp | 231 return PDB_BuiltinType::UInt; in getBuiltinType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyBuiltinDumper.cpp | 35 case PDB_BuiltinType::UInt: in getTypeName()
|
| /freebsd-14.2/contrib/bearssl/T0/ |
| H A D | TValue.cs | 94 internal uint UInt { property
|
| H A D | T0Comp.cs | 924 uint bx = cpu.Pop().UInt; in T0Comp() 925 uint ax = cpu.Pop().UInt; in T0Comp() 929 uint bx = cpu.Pop().UInt; in T0Comp() 930 uint ax = cpu.Pop().UInt; in T0Comp() 934 uint bx = cpu.Pop().UInt; in T0Comp() 935 uint ax = cpu.Pop().UInt; in T0Comp()
|
| /freebsd-14.2/usr.bin/truss/ |
| H A D | syscall.h | 77 UInt, enumerator
|
| /freebsd-14.2/contrib/llvm-project/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
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Interpreter/ |
| H A D | Value.h | 83 X(unsigned int, UInt) \
|
| /freebsd-14.2/contrib/llvm-project/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() 739 T.Kind = UInt; in fromTypedefName() 821 Kind = UInt; in applyTypespec() 878 Kind = UInt; in applyModifiers() 930 Kind = UInt; in applyModifiers()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | FormatString.cpp | 383 case BuiltinType::UInt: in matchesType() 441 case BuiltinType::UInt: in matchesType() 472 case BuiltinType::UInt: in matchesType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUPALMetadata.cpp | 165 if (N.getKind() != msgpack::Type::UInt) in getRegister() 180 if (N.getKind() == msgpack::Type::UInt) in setRegister()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Scalar.h | 163 unsigned int UInt(unsigned int fail_value = 0) const;
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-port.h | 2199 using UInt = void; 2207 using UInt = std::uint32_t; 2215 using UInt = std::uint64_t;
|