Home
last modified time | relevance | path

Searched refs:UInt (Results 1 – 25 of 67) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/libcxx/src/include/
H A Dto_chars_floating_point.h532 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 DOpenCLBuiltins.td1140 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 DMsgPackDocument.h56 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 DMsgPackReader.h55 UInt, enumerator
87 uint64_t UInt; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp50 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 DMsgPackReader.cpp60 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 DMsgPackDocument.cpp168 case Type::UInt: in readFromBlob()
169 Node = getNode(Obj.UInt); in readFromBlob()
287 case Type::UInt: in writeToBlob()
H A DAMDGPUMetadataVerifier.cpp50 if (!verifyScalar(Node, msgpack::Type::UInt)) in verifyInteger()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp71 #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 Dubsan_diag.h144 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg()
152 UIntMax UInt; member
H A Dubsan_diag.cpp210 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 DSymbolCache.cpp56 {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 DNativeSymbolEnumerator.cpp97 case PDB_BuiltinType::UInt: in getValue()
H A DNativeTypeEnum.cpp231 return PDB_BuiltinType::UInt; in getBuiltinType()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyBuiltinDumper.cpp35 case PDB_BuiltinType::UInt: in getTypeName()
/freebsd-14.2/contrib/bearssl/T0/
H A DTValue.cs94 internal uint UInt { property
H A DT0Comp.cs924 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 Dsyscall.h77 UInt, enumerator
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.def187 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 DValue.h83 X(unsigned int, UInt) \
/freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp148 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 DFormatString.cpp383 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 DAMDGPUPALMetadata.cpp165 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 DScalar.h163 unsigned int UInt(unsigned int fail_value = 0) const;
/freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2199 using UInt = void;
2207 using UInt = std::uint32_t;
2215 using UInt = std::uint64_t;

123