Home
last modified time | relevance | path

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

123

/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/ada/
H A Dzlib-thin.ads36 type UInt is new Interfaces.C.unsigned; -- 16 bits or more
117 Items : UInt;
118 Size : UInt)
136 dictLength : UInt)
153 dictLength : UInt)
195 len : UInt)
201 len : in UInt)
239 len : UInt)
245 len : UInt)
316 Size : in UInt);
[all …]
H A Dzlib-thin.adb21 function Avail_In (Strm : in Z_Stream) return UInt is
30 function Avail_Out (Strm : in Z_Stream) return UInt is
89 Size : in UInt) is
117 Size : in UInt) is
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/ada/
H A Dzlib-thin.ads36 type UInt is new Interfaces.C.unsigned; -- 16 bits or more
117 Items : UInt;
118 Size : UInt)
136 dictLength : UInt)
153 dictLength : UInt)
195 len : UInt)
201 len : in UInt)
239 len : UInt)
245 len : UInt)
316 Size : in UInt);
[all …]
H A Dzlib-thin.adb21 function Avail_In (Strm : in Z_Stream) return UInt is
30 function Avail_Out (Strm : in Z_Stream) return UInt is
89 Size : in UInt) is
117 Size : in UInt) is
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/ada/
H A Dzlib-thin.ads36 type UInt is new Interfaces.C.unsigned; -- 16 bits or more
117 Items : UInt;
118 Size : UInt)
136 dictLength : UInt)
153 dictLength : UInt)
195 len : UInt)
201 len : in UInt)
239 len : UInt)
245 len : UInt)
316 Size : in UInt);
[all …]
H A Dzlib-thin.adb21 function Avail_In (Strm : in Z_Stream) return UInt is
30 function Avail_Out (Strm : in Z_Stream) return UInt is
89 Size : in UInt) is
117 Size : in UInt) is
/netbsd-src/common/dist/zlib/contrib/ada/
H A Dzlib-thin.ads36 type UInt is new Interfaces.C.unsigned; -- 16 bits or more
117 Items : UInt;
118 Size : UInt)
136 dictLength : UInt)
153 dictLength : UInt)
195 len : UInt)
201 len : in UInt)
239 len : UInt)
245 len : UInt)
316 Size : in UInt);
[all …]
H A Dzlib-thin.adb21 function Avail_In (Strm : in Z_Stream) return UInt is
30 function Avail_Out (Strm : in Z_Stream) return UInt is
89 Size : in UInt) is
117 Size : in UInt) is
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DOpenCLBuiltins.td298 def UInt : Type<"uint", QualType<"Context.UnsignedIntTy">>;
375 def TLAll : TypeList<[Char, UChar, Short, UShort, Int, UInt, Long, ULong, Float, Doub…
378 def TLUnsignedInts : TypeList<[UChar, UShort, UInt, ULong]>;
380 def TLIntLongFloats : TypeList<[Int, UInt, Long, ULong, Float, Double, Half]>;
385 def TLAllUIntsTwice : TypeList<[UChar, UChar, UShort, UShort, UInt, UInt, ULong, ULong]>;
387 def TLAllInts : TypeList<[Char, UChar, Short, UShort, Int, UInt, Long, ULong]>;
416 Int, UInt, Long, ULong,
442 UShort, Int, UInt, Long, ULong] in {
444 UShort, Int, UInt, Long, ULong] in {
466 def : Builtin<"get_work_dim", [UInt], Attr.Const>;
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
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 DMsgPackReader.h51 UInt, enumerator
83 uint64_t UInt; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp51 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()
H A DMsgPackReader.cpp59 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()
H A DMsgPackDocument.cpp158 case Type::UInt: in readFromBlob()
159 Node = getNode(Obj.UInt); in readFromBlob()
274 case Type::UInt: in writeToBlob()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_diag.h164 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg()
172 UIntMax UInt; member
H A Dubsan_diag.cpp209 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()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_diag.h165 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg()
173 UIntMax UInt; member
H A Dubsan_diag.cc202 if (A.UInt <= UINT64_MAX) in RenderText()
203 Buffer->append("%llu", (unsigned long long)A.UInt); in RenderText()
205 RenderHex(Buffer, A.UInt); in RenderText()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_diag.h163 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg()
171 UIntMax UInt; member
H A Dubsan_diag.cc200 if (A.UInt <= UINT64_MAX) in RenderText()
201 Buffer->append("%llu", (unsigned long long)A.UInt); in RenderText()
203 RenderHex(Buffer, A.UInt); in RenderText()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp52 {codeview::SimpleTypeKind::UInt16Short, PDB_BuiltinType::UInt, 2},
54 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4},
56 {codeview::SimpleTypeKind::UInt32Long, PDB_BuiltinType::UInt, 4},
58 {codeview::SimpleTypeKind::UInt64Quad, PDB_BuiltinType::UInt, 8},
64 {codeview::SimpleTypeKind::UnsignedCharacter, PDB_BuiltinType::UInt, 1},
H A DNativeSymbolEnumerator.cpp97 case PDB_BuiltinType::UInt: in getValue()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h2124 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;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DPrettyBuiltinDumper.cpp35 case PDB_BuiltinType::UInt: in getTypeName()
/netbsd-src/external/apache2/llvm/dist/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

123