Home
last modified time | relevance | path

Searched refs:Int64 (Results 1 - 25 of 220) sorted by relevance

123456789

/third_party/protobuf/js/experimental/benchmarks/code_size/kernel/
H A Dall_types.js8 const Int64 = goog.require('protobuf.Int64');
36 message.addPackedFixed64Element(1, Int64.fromBits(0, 1));
37 message.addPackedFixed64Iterable(1, [Int64.fromBits(0, 1)]);
38 message.addUnpackedFixed64Element(1, Int64.fromBits(0, 1));
39 message.addUnpackedFixed64Iterable(1, [Int64.fromBits(0, 1)]);
48 message.addPackedInt64Element(1, Int64.fromBits(0, 1));
49 message.addPackedInt64Iterable(1, [Int64.fromBits(0, 1)]);
50 message.addUnpackedInt64Element(1, Int64.fromBits(0, 1));
51 message.addUnpackedInt64Iterable(1, [Int64
[all...]
H A Dpopular_types.js22 const Int64 = goog.require('protobuf.Int64');
43 message.setInt64(1, Int64.fromBits(0, 1));
47 message.setUint64(1, Int64.fromBits(0, 1));
/third_party/protobuf/js/experimental/runtime/
H A Dint64_test.js2 * @fileoverview Tests for Int64.
7 const Int64 = goog.require('protobuf.Int64');
10 describe('Int64', () => {
12 const int64 = Int64.fromBits(0, 1);
18 const int64 = Int64.getZero();
24 const int64 = Int64.getMaxValue();
25 expect(int64).toEqual(Int64.fromBits(0xFFFFFFFF, 0x7FFFFFFF));
30 const int64 = Int64.getMinValue();
31 expect(int64).toEqual(Int64
[all...]
H A Dint64.js2 * @fileoverview Protobufs Int64 representation.
4 goog.module('protobuf.Int64');
10 * A container for protobufs Int64/Uint64 data type.
13 class Int64 {
14 /** @return {!Int64} */
19 /** @return {!Int64} */
24 /** @return {!Int64} */
30 * Constructs a Int64 given two 32 bit numbers
33 * @return {!Int64}
36 return new Int64(lowBit
[all...]
/third_party/protobuf/js/experimental/runtime/kernel/
H A Dsint64_test_pairs.js7 const Int64 = goog.require('protobuf.Int64');
13 * @return {!Array<{name: string, longValue: !Int64, bufferDecoder:
20 longValue: Int64.fromInt(0),
25 longValue: Int64.fromInt(1),
30 longValue: Int64.fromInt(-1),
35 longValue: Int64.fromInt(2),
40 longValue: Int64.fromInt(-2),
45 longValue: Int64.getMinValue(),
52 longValue: Int64
[all...]
H A Dint64_test_pairs.js7 const Int64 = goog.require('protobuf.Int64');
13 * @return {!Array<{name: string, longValue: !Int64, bufferDecoder:
20 longValue: Int64.fromInt(0),
25 longValue: Int64.fromInt(1),
30 longValue: Int64.fromInt(-1),
36 longValue: Int64.fromBits(0xFFFFFFFF, 0x7FFFFFFF),
43 longValue: Int64.fromBits(0xFFFFFFFF, 0xFFFFFFFF),
49 longValue: Int64.fromInt(-1),
H A Dkernel_test.js9 const Int64 = goog.require('protobuf.Int64');
897 expect(accessor.getFixed64WithDefault(1)).toEqual(Int64.fromInt(0));
902 expect(accessor.getFixed64WithDefault(1, Int64.fromInt(2)))
903 .toEqual(Int64.fromInt(2));
909 expect(accessor.getFixed64WithDefault(1)).toEqual(Int64.fromInt(1));
916 expect(accessor.getFixed64WithDefault(1)).toEqual(Int64.fromInt(2));
933 Kernel.createEmpty().getFixed64WithDefault(-1, Int64.fromInt(1)))
936 expect(Kernel.createEmpty().getFixed64WithDefault(-1, Int64.fromInt(1)))
937 .toEqual(Int64
[all...]
H A Dsfixed64_test_pairs.js7 const Int64 = goog.require('protobuf.Int64');
13 * @return {!Array<{name: string, longValue: !Int64, bufferDecoder:
20 longValue: Int64.fromInt(0),
26 longValue: Int64.fromInt(1),
32 longValue: Int64.fromInt(-1),
38 longValue: Int64.getMaxValue(),
44 longValue: Int64.getMinValue(),
H A Dpacked_sint64_test_pairs.js4 const Int64 = goog.require('protobuf.Int64');
23 sint64Values: [Int64.fromInt(-1)],
28 sint64Values: [Int64.fromInt(-1), Int64.fromInt(0)],
H A Dpacked_int64_test_pairs.js4 const Int64 = goog.require('protobuf.Int64');
10 * @return {!Array<{name: string, int64Values: !Array<!Int64>,
23 int64Values: [Int64.fromInt(1)],
28 int64Values: [Int64.fromInt(1), Int64.fromInt(0)],
H A Dpacked_sfixed64_test_pairs.js4 const Int64 = goog.require('protobuf.Int64');
10 * @return {!Array<{name: string, sfixed64Values: !Array<!Int64>,
23 sfixed64Values: [Int64.fromInt(1)],
29 sfixed64Values: [Int64.fromInt(1), Int64.fromInt(0)],
H A Dreader.js8 const Int64 = goog.require('protobuf.Int64');
57 * @return {!Int64}
62 return Int64.fromBits(lowBits, highBits);
91 * @return {!Int64}
97 return Int64.fromBits(lowBits, highBits);
117 * @return {!Int64}
125 return Int64.fromBits(decodedLowerBits, decodedUpperBits);
253 * @return {!Array<!Int64>}
277 * @return {!Array<!Int64>}
[all...]
/third_party/lzma/CPP/Windows/
H A DTimeUtils.cpp23 static const UInt64 kNumSecondsInFileTime = (UInt64)(Int64)-1 / kNumTimeQuantumsInSecond;
157 UInt64 UnixTime64_To_FileTime64(Int64 unixTime) throw() in UnixTime64_To_FileTime64()
159 return (UInt64)((Int64)kUnixTimeOffset + unixTime) * kNumTimeQuantumsInSecond; in UnixTime64_To_FileTime64()
163 bool UnixTime64_To_FileTime64(Int64 unixTime, UInt64 &fileTime) throw() in UnixTime64_To_FileTime64()
165 if (unixTime > (Int64)(kNumSecondsInFileTime - kUnixTimeOffset)) in UnixTime64_To_FileTime64()
167 fileTime = (UInt64)(Int64)-1; in UnixTime64_To_FileTime64()
170 if (unixTime < -(Int64)kUnixTimeOffset) in UnixTime64_To_FileTime64()
180 bool UnixTime64_To_FileTime(Int64 unixTime, FILETIME &ft) throw() in UnixTime64_To_FileTime()
190 Int64 FileTime_To_UnixTime64(const FILETIME &ft) throw() in FileTime_To_UnixTime64()
193 return (Int64)(winTim in FileTime_To_UnixTime64()
[all...]
H A DTimeUtils.h89 // Int64 Unix Time : negative values for dates before 1970
90 UInt64 UnixTime64_To_FileTime64(Int64 unixTime) throw(); // no check
91 bool UnixTime64_To_FileTime64(Int64 unixTime, UInt64 &fileTime) throw();
92 bool UnixTime64_To_FileTime(Int64 unixTime, FILETIME &fileTime) throw();
94 Int64 FileTime64_To_UnixTime64(UInt64 ft64) throw();
96 Int64 FileTime_To_UnixTime64(const FILETIME &ft) throw();
97 Int64 FileTime_To_UnixTime64_and_Quantums(const FILETIME &ft, UInt32 &quantums) throw();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DMDBuilder.cpp112 Type *Int64 = Type::getInt64Ty(Context); in createCallbackEncoding() local
113 Ops.push_back(createConstant(ConstantInt::get(Int64, CalleeArgNo))); in createCallbackEncoding()
116 Ops.push_back(createConstant(ConstantInt::get(Int64, ArgNo, true))); in createCallbackEncoding()
203 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructNode() local
205 Vals[i * 3 + 0] = createConstant(ConstantInt::get(Int64, Fields[i].Offset)); in createTBAAStructNode()
206 Vals[i * 3 + 1] = createConstant(ConstantInt::get(Int64, Fields[i].Size)); in createTBAAStructNode()
217 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructTypeNode() local
221 Ops[i * 2 + 2] = createConstant(ConstantInt::get(Int64, Fields[i].second)); in createTBAAStructTypeNode()
239 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAStructTagNode() local
240 ConstantInt *Off = ConstantInt::get(Int64, Offse in createTBAAStructTagNode()
252 Type *Int64 = Type::getInt64Ty(Context); createTBAATypeNode() local
267 IntegerType *Int64 = Type::getInt64Ty(Context); createTBAAAccessTag() local
[all...]
/third_party/lzma/CS/7zip/
H A DICoder.cs34 void SetProgress(Int64 inSize, Int64 outSize); in SetProgress()
61 Int64 inSize, Int64 outSize, ICodeProgress progress); in Code()
/third_party/protobuf/js/binary/
H A Darith.js40 goog.provide('jspb.arith.Int64');
315 * Int64 is like UInt64, but modifies string conversions to interpret the stored
328 jspb.arith.Int64 = function(lo, hi) {
344 * @param {!jspb.arith.Int64} other
345 * @return {!jspb.arith.Int64}
347 jspb.arith.Int64.prototype.add = function(other) {
352 return new jspb.arith.Int64(lo >>> 0, hi >>> 0);
358 * @param {!jspb.arith.Int64} other
359 * @return {!jspb.arith.Int64}
361 jspb.arith.Int64
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dwire_format.cc465 HANDLE_PACKED_TYPE(INT64, int64, Int64) in ParseAndMergeField()
467 HANDLE_PACKED_TYPE(SINT64, int64, Int64) in ParseAndMergeField()
474 HANDLE_PACKED_TYPE(SFIXED64, int64, Int64) in ParseAndMergeField()
538 HANDLE_TYPE(INT64, int64, Int64) in ParseAndMergeField()
540 HANDLE_TYPE(SINT64, int64, Int64) in ParseAndMergeField()
547 HANDLE_TYPE(SFIXED64, int64, Int64) in ParseAndMergeField()
842 HANDLE_PACKED_TYPE(INT64, int64, Int64) in _InternalParseAndMergeField()
913 HANDLE_TYPE(INT64, uint64, Int64) in _InternalParseAndMergeField()
954 HANDLE_TYPE(SFIXED64, int64, Int64) in _InternalParseAndMergeField()
1082 CASE_TYPE(INT64, Int64, Int6 in SerializeMapKeyWithCachedSizes()
[all...]
/third_party/lzma/CPP/Common/
H A DMyWindows.cpp183 v = (UInt64)((Int64)v - (Int64)TIME_GetBias() * TICKS_PER_SEC); in FileTimeToLocalFileTime()
191 v = (UInt64)((Int64)v + (Int64)TIME_GetBias() * TICKS_PER_SEC); in LocalFileTimeToFileTime()
218 return (DWORD)((UInt64)(Int64)tv.tv_sec * (UInt64)1000 + (UInt64)(Int64)tv.tv_usec / 1000); in GetTickCount()
/third_party/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaBench.cs129 public override Int64 Length { get { return 0; } }
130 public override Int64 Position { get { return 0; } set { } }
148 public Int64 ApprovedStart;
149 public Int64 InSize;
152 public void SetProgress(Int64 inSize, Int64 outSize) in SetProgress()
314 decoder.Code(compressedStream, crcOutStream, 0, (Int64)outSize, null); in LzmaBenchmark()
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson-forwards.h182 typedef __int64 Int64; typedef
185 typedef long long int Int64; typedef
188 typedef Int64 LargestInt;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson-forwards.h182 typedef __int64 Int64; typedef
185 typedef long long int Int64; typedef
188 typedef Int64 LargestInt;
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson-forwards.h182 typedef __int64 Int64; typedef
185 typedef long long int Int64; typedef
188 typedef Int64 LargestInt;
/third_party/lzma/CPP/7zip/Common/
H A DLimitedStreams.cpp59 Z7_COM7F_IMF(CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Seek()
133 Z7_COM7F_IMF(CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Seek()
221 Z7_COM7F_IMF(CExtentsStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Seek()
276 Z7_COM7F_IMF(CTailInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Seek()
343 Z7_COM7F_IMF(CLimitedCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Seek()
372 Z7_COM7F_IMF(CTailOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)) in Seek()
386 return Stream->Seek((Int64)(Offset + _virtPos), STREAM_SEEK_SET, NULL); in Seek()
/third_party/lzma/C/
H A DXzIn.c163 static SRes Xz_ReadBackward(CXzStream *p, ILookInStreamPtr stream, Int64 *startOffset, ISzAllocPtr alloc) in Xz_ReadBackward()
242 *startOffset = (Int64)pos; in Xz_ReadBackward()
307 SRes Xzs_ReadBackward(CXzs *p, ILookInStreamPtr stream, Int64 *startOffset, ICompressProgressPtr progress, ISzAllocPtr alloc) in Xzs_ReadBackward()
309 Int64 endOffset = 0; in Xzs_ReadBackward()
336 if (progress && ICompressProgress_Progress(progress, (UInt64)(endOffset - *startOffset), (UInt64)(Int64)-1) != SZ_OK) in Xzs_ReadBackward()

Completed in 12 milliseconds

123456789