Home
last modified time | relevance | path

Searched refs:UInt64 (Results 1 – 23 of 23) sorted by relevance

/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_ppmd_private.h38 typedef unsigned long UInt64; typedef
44 typedef unsigned __int64 UInt64; typedef
48 typedef unsigned long long int UInt64; typedef
H A Darchive_ppmd7_private.h87 UInt64 Low;
90 UInt64 CacheSize;
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h345 UInt64, enumerator
379 explicit Variant(uint64_t V) : Type(PDB_VariantType::UInt64) { in Variant()
380 Value.UInt64 = V; in Variant()
404 uint64_t UInt64; member
426 VARIANT_EQUAL_CASE(UInt64)
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DFormatEntity.cpp114 ENTRY("load", AddressLoad, UInt64), ENTRY("file", AddressFile, UInt64),
115 ENTRY("load", AddressLoadOrFile, UInt64),
125 ENTRY("pc", FrameRegisterPC, UInt64),
126 ENTRY("fp", FrameRegisterFP, UInt64),
127 ENTRY("sp", FrameRegisterSP, UInt64),
128 ENTRY("flags", FrameRegisterFlags, UInt64),
140 UInt64),
142 ENTRY("pc-offset", FunctionPCOffset, UInt64),
152 ENTRY("end-addr", LineEntryEndAddress, UInt64),
160 ENTRY("id", ProcessID, UInt64),
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndex.h53 UInt64 = 0x0077, // 64 bit unsigned int enumerator
180 static TypeIndex UInt64() { return TypeIndex(SimpleTypeKind::UInt64); } in UInt64() function
/freebsd-12.1/contrib/bzip2/
H A Dbzip2.c234 UInt64; typedef
238 void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 ) in uInt64_from_UInt32s()
252 double uInt64_to_double ( UInt64* n ) in uInt64_to_double()
266 Bool uInt64_isZero ( UInt64* n ) in uInt64_isZero()
277 Int32 uInt64_qrm10 ( UInt64* n ) in uInt64_qrm10()
295 void uInt64_toAscii ( char* outbuf, UInt64* n ) in uInt64_toAscii()
300 UInt64 n_copy = *n; in uInt64_toAscii()
386 UInt64 nbytes_in, nbytes_out; in compressStream()
/freebsd-12.1/contrib/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc189 EXPECT_EQ(kInteger, GMOCK_KIND_OF_(UInt64)); // NOLINT in TEST()
238 (LosslessArithmeticConvertible<unsigned short, UInt64>::value)); // NOLINT in TEST()
241 EXPECT_FALSE((LosslessArithmeticConvertible<short, UInt64>::value)); // NOLINT in TEST()
257 EXPECT_FALSE((LosslessArithmeticConvertible<UInt64, Int64>::value)); in TEST()
H A Dgmock-actions_test.cc81 using testing::internal::UInt64;
130 EXPECT_EQ(0U, BuiltInDefaultValue<UInt64>::Get()); in TEST()
158 EXPECT_TRUE(BuiltInDefaultValue<UInt64>::Exists()); in TEST()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp38 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt64, OS) in operator <<()
340 case PDB_VariantType::UInt64: in operator <<()
341 OS << Value.Value.UInt64; in operator <<()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp50 {"unsigned __int64*", SimpleTypeKind::UInt64},
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DMsgPack.def60 HANDLE_MP_FIRST_BYTE(0xcf, UInt64)
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DFormatEntity.h114 enum FormatType { None, UInt32, UInt64, CString }; enumerator
/freebsd-12.1/contrib/llvm/lib/BinaryFormat/
H A DMsgPackWriter.cpp85 EW.write(FirstByte::UInt64); in write()
H A DMsgPackReader.cpp68 case FirstByte::UInt64: in read()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp607 case SimpleTypeKind::UInt64: in GetCompilerTypeForSimpleKind()
641 case SimpleTypeKind::UInt64: in GetTypeSizeForSimpleKind()
H A DSymbolFileNativePDB.cpp211 case SimpleTypeKind::UInt64: in GetSimpleTypeName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp93 case PDB_VariantType::UInt64: in TranslateEnumEncoding()
1141 case PDB_VariantType::UInt64: in AddEnumValue()
1142 raw_value = v.Value.UInt64; in AddEnumValue()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp225 case SimpleTypeKind::UInt64: in getBuiltinType()
/freebsd-12.1/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h172 GMOCK_DECLARE_KIND_(UInt64, kInteger);
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp63 Result.Value.UInt64 = V.ullVal; in VariantFromVARIANT()
64 Result.Type = PDB_VariantType::UInt64; in VariantFromVARIANT()
/freebsd-12.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h179 GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(UInt64, 0);
/freebsd-12.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2644 typedef TypeWithSize<8>::UInt UInt64;
/freebsd-12.1/contrib/googletest/googletest/test/
H A Dgoogletest-printers-test.cc362 Print(static_cast<testing::internal::UInt64>(-1))); // uint64 in TEST()