Home
last modified time | relevance | path

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

1234

/third_party/protobuf/js/binary/
Darith.js53 jspb.arith.UInt64 = function(lo, hi) { class in jspb.arith
73 jspb.arith.UInt64.prototype.cmp = function(other) {
88 jspb.arith.UInt64.prototype.rightShift = function() {
91 return new jspb.arith.UInt64(lo >>> 0, hi >>> 0);
99 jspb.arith.UInt64.prototype.leftShift = function() {
102 return new jspb.arith.UInt64(lo >>> 0, hi >>> 0);
110 jspb.arith.UInt64.prototype.msb = function() {
119 jspb.arith.UInt64.prototype.lsb = function() {
128 jspb.arith.UInt64.prototype.zero = function() {
138 jspb.arith.UInt64.prototype.add = function(other) {
[all …]
Darith_test.js48 var a = new jspb.arith.UInt64(1234, 5678);
49 var b = new jspb.arith.UInt64(1234, 5678);
81 var a = new jspb.arith.UInt64(1, 0);
118 var a = new jspb.arith.UInt64(/* lo = */ 0x89abcdef,
120 var b = new jspb.arith.UInt64(/* lo = */ 0xff52ab91,
169 var a = new jspb.arith.UInt64(loValues[i], hiValues[j]);
170 var b = new jspb.arith.UInt64(loValues[j], hiValues[i]);
202 var c = jspb.arith.UInt64.mul32x32(a, b);
231 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
272 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
[all …]
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Darith_test.js49 var a = new jspb.arith.UInt64(1234, 5678);
50 var b = new jspb.arith.UInt64(1234, 5678);
82 var a = new jspb.arith.UInt64(1, 0);
119 var a = new jspb.arith.UInt64(/* lo = */ 0x89abcdef,
121 var b = new jspb.arith.UInt64(/* lo = */ 0xff52ab91,
170 var a = new jspb.arith.UInt64(loValues[i], hiValues[j]);
171 var b = new jspb.arith.UInt64(loValues[j], hiValues[i]);
203 var c = jspb.arith.UInt64.mul32x32(a, b);
232 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
273 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
[all …]
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Darith_test.js49 var a = new jspb.arith.UInt64(1234, 5678);
50 var b = new jspb.arith.UInt64(1234, 5678);
82 var a = new jspb.arith.UInt64(1, 0);
119 var a = new jspb.arith.UInt64(/* lo = */ 0x89abcdef,
121 var b = new jspb.arith.UInt64(/* lo = */ 0xff52ab91,
170 var a = new jspb.arith.UInt64(loValues[i], hiValues[j]);
171 var b = new jspb.arith.UInt64(loValues[j], hiValues[i]);
203 var c = jspb.arith.UInt64.mul32x32(a, b);
232 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
273 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DSampleMessages.cs75 SingleUint64 = UInt64.MaxValue, in CreateFullTestAllTypes()
80 RepeatedFixed64 = { UInt64.MaxValue, 1234567890123 }, in CreateFullTestAllTypes()
97 RepeatedUint64 = { UInt64.MaxValue, UInt32.MinValue }, in CreateFullTestAllTypes()
127 OptionalUint64 = UInt64.MaxValue, in CreateFullTestAllTypesProto2()
133 RepeatedFixed64 = { UInt64.MaxValue, 1234567890123 }, in CreateFullTestAllTypesProto2()
149 RepeatedUint64 = { UInt64.MaxValue, UInt32.MinValue }, in CreateFullTestAllTypesProto2()
179 message.SetExtension(OptionalUint64Extension, UInt64.MaxValue); in CreateFullTestAllExtensions()
185 …message.GetOrInitializeExtension(RepeatedFixed64Extension).AddRange(new[] { UInt64.MaxValue, 12345… in CreateFullTestAllExtensions()
201 …message.GetOrInitializeExtension(RepeatedUint64Extension).AddRange(new[] { UInt64.MaxValue, UInt32… in CreateFullTestAllExtensions()
/third_party/jsoncpp/include/json/
Dvalue.h203 using UInt64 = Json::UInt64; variable
239 static constexpr Int64 minInt64 = Int64(~(UInt64(-1) / 2));
241 static constexpr Int64 maxInt64 = Int64(UInt64(-1) / 2);
243 static constexpr UInt64 maxUInt64 = UInt64(-1);
320 Value(UInt64 value);
390 UInt64 asUInt64() const;
670 template <> inline UInt64 Value::as<UInt64>() const { return asUInt64(); }
671 template <> inline bool Value::is<UInt64>() const { return isUInt64(); }
Dconfig.h118 using UInt64 = unsigned __int64; variable
121 using UInt64 = uint64_t; variable
124 using LargestUInt = UInt64;
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
Djson-forwards.h183 typedef unsigned __int64 UInt64; typedef
186 typedef unsigned long long int UInt64; typedef
189 typedef UInt64 LargestUInt;
Djson.h210 typedef unsigned __int64 UInt64; typedef
213 typedef unsigned long long int UInt64; typedef
216 typedef UInt64 LargestUInt;
513 typedef Json::UInt64 UInt64; typedef
542 static const UInt64 maxUInt64;
611 Value(UInt64 value);
674 UInt64 asUInt64() const;
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
Djson-forwards.h183 typedef unsigned __int64 UInt64; typedef
186 typedef unsigned long long int UInt64; typedef
189 typedef UInt64 LargestUInt;
Djson.h210 typedef unsigned __int64 UInt64; typedef
213 typedef unsigned long long int UInt64; typedef
216 typedef UInt64 LargestUInt;
513 typedef Json::UInt64 UInt64; typedef
542 static const UInt64 maxUInt64;
611 Value(UInt64 value);
674 UInt64 asUInt64() const;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
Djson-forwards.h183 typedef unsigned __int64 UInt64; typedef
186 typedef unsigned long long int UInt64; typedef
189 typedef UInt64 LargestUInt;
Djson.h210 typedef unsigned __int64 UInt64; typedef
213 typedef unsigned long long int UInt64; typedef
216 typedef UInt64 LargestUInt;
513 typedef Json::UInt64 UInt64; typedef
542 static const UInt64 maxUInt64;
611 Value(UInt64 value);
674 UInt64 asUInt64() const;
/third_party/protobuf/src/google/protobuf/
Dwire_format.cc469 HANDLE_PACKED_TYPE(UINT64, uint64, UInt64) in ParseAndMergeField()
472 HANDLE_PACKED_TYPE(FIXED64, uint64, UInt64) in ParseAndMergeField()
542 HANDLE_TYPE(UINT64, uint64, UInt64) in ParseAndMergeField()
545 HANDLE_TYPE(FIXED64, uint64, UInt64) in ParseAndMergeField()
846 HANDLE_PACKED_TYPE(UINT64, uint64, UInt64) in _InternalParseAndMergeField()
915 HANDLE_TYPE(UINT64, uint64, UInt64) in _InternalParseAndMergeField()
952 HANDLE_TYPE(FIXED64, uint64, UInt64) in _InternalParseAndMergeField()
1083 CASE_TYPE(UINT64, UInt64, UInt64) in SerializeMapKeyWithCachedSizes()
1085 CASE_TYPE(FIXED64, Fixed64, UInt64) in SerializeMapKeyWithCachedSizes()
1112 CASE_TYPE(UINT64, UInt64, UInt64) in SerializeMapValueRefWithCachedSizes()
[all …]
Dextension_set_inl.h57 HANDLE_TYPE(UINT64, UInt64); in ParseFieldWithExtensionInfo()
101 HANDLE_VARINT_TYPE(UINT64, UInt64); in ParseFieldWithExtensionInfo()
136 HANDLE_FIXED_TYPE(FIXED64, UInt64, uint64); in ParseFieldWithExtensionInfo()
Dextension_set.cc359 PRIMITIVE_ACCESSORS(UINT64, uint64, UInt64) in PRIMITIVE_ACCESSORS()
1002 HANDLE_TYPE(UINT64, uint64, UInt64); in InternalExtensionMergeFrom()
1252 HANDLE_TYPE(UINT64, UInt64, uint64); in ParseFieldWithExtensionInfo()
1256 HANDLE_TYPE(FIXED64, UInt64, uint64); in ParseFieldWithExtensionInfo()
1311 HANDLE_TYPE(UINT64, UInt64, uint64); in ParseFieldWithExtensionInfo()
1315 HANDLE_TYPE(FIXED64, UInt64, uint64); in ParseFieldWithExtensionInfo()
1582 HANDLE_TYPE(UINT64, UInt64, uint64); in ByteSize()
1633 HANDLE_TYPE(UINT64, UInt64, uint64); in ByteSize()
1670 HANDLE_TYPE(UINT64, UInt64, uint64_value); in ByteSize()
1953 HANDLE_TYPE(UINT64, UInt64, uint64); in InternalSerializeFieldWithCachedSizesToArray()
[all …]
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DSampleMessages.cs72 SingleUint64 = UInt64.MaxValue, in CreateFullTestAllTypes()
77 RepeatedFixed64 = { UInt64.MaxValue, 1234567890123 }, in CreateFullTestAllTypes()
94 RepeatedUint64 = { UInt64.MaxValue, UInt32.MinValue }, in CreateFullTestAllTypes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/
DPDBTypes.h403 UInt64, enumerator
437 explicit Variant(uint64_t V) : Type(PDB_VariantType::UInt64) { in Variant()
438 Value.UInt64 = V; in Variant()
462 uint64_t UInt64; member
484 VARIANT_EQUAL_CASE(UInt64)
/third_party/protobuf/conformance/third_party/jsoncpp/
Djson.h238 typedef unsigned __int64 UInt64; typedef
241 typedef unsigned long long int UInt64; typedef
244 typedef UInt64 LargestUInt;
556 typedef Json::UInt64 UInt64; typedef
585 static const UInt64 maxUInt64;
657 Value(UInt64 value);
724 UInt64 asUInt64() const;
/third_party/protobuf/objectivec/
DGPBDictionary.h240 #pragma mark - UInt32 -> UInt64
1161 #pragma mark - Int32 -> UInt64
1892 #pragma mark - UInt64 -> UInt32
1987 #pragma mark - UInt64 -> Int32
2082 #pragma mark - UInt64 -> UInt64
2177 #pragma mark - UInt64 -> Int64
2272 #pragma mark - UInt64 -> Bool
2367 #pragma mark - UInt64 -> Float
2462 #pragma mark - UInt64 -> Double
2557 #pragma mark - UInt64 -> Enum
[all …]
DGPBExtensionInternals.m87 FIELD_CASE(UInt64, unsignedLongLongValue)
120 FIELD_CASE(UInt64, unsignedLongLongValue)
186 FIELD_CASE(UInt64, unsignedLongLongValue)
227 FIELD_CASE(UInt64, unsignedLongLongValue)
DGPBArray_PackagePrivate.h83 #pragma mark - UInt64
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h52 UInt64 = 0x0077, // 64 bit unsigned int enumerator
179 static TypeIndex UInt64() { return TypeIndex(SimpleTypeKind::UInt64); } in UInt64() function
/third_party/vk-gl-cts/external/jsoncpp/
Dconfig.h.cts119 using UInt64 = unsigned __int64;
122 using UInt64 = uint64_t;
125 using LargestUInt = UInt64;
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DFieldType.cs55 UInt64, enumerator

1234