/third_party/protobuf/js/experimental/runtime/ |
H A D | int64_test.js | 12 const int64 = Int64.fromBits(0, 1); 13 expect(int64.getLowBits()).toEqual(0); 14 expect(int64.getHighBits()).toEqual(1); 18 const int64 = Int64.getZero(); 19 expect(int64.getLowBits()).toEqual(0); 20 expect(int64.getHighBits()).toEqual(0); 24 const int64 = Int64.getMaxValue(); 25 expect(int64).toEqual(Int64.fromBits(0xFFFFFFFF, 0x7FFFFFFF)); 26 expect(int64.asLong()).toEqual(Long.getMaxValue()); 30 const int64 [all...] |
H A D | int64.js | 128 * Returns the int64 value as a JavaScript number. This will lose precision 235 * @param {!Int64} int64 238 const joinUnsignedDecimalString = (int64) => { 239 const lowBits = int64.getLowBitsUnsigned(); 240 const highBits = int64.getHighBitsUnsigned(); 306 * @param {!Int64} int64 309 const joinSignedDecimalString = (int64) => { 312 const negative = (int64.getHighBits() & 0x80000000); 314 int64 = negate(int64 [all...] |
/third_party/protobuf/src/google/protobuf/util/ |
H A D | time_util.cc | 60 T CreateNormalized(int64 seconds, int64 nanos); 63 Timestamp CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized() 83 Duration CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized() 117 std::string FormatTime(int64 seconds, int32 nanos) { in FormatTime() 121 bool ParseTime(const std::string& value, int64* seconds, int32* nanos) { in ParseTime() 125 void CurrentTime(int64* seconds, int32* nanos) { in CurrentTime() 130 int64 RoundTowardZer [all...] |
H A D | time_util.h | 42 int64 tv_sec; /* seconds */ 43 int64 tv_usec; /* and microseconds */ 70 static const int64 kTimestampMinSeconds = -62135596800LL; 72 static const int64 kTimestampMaxSeconds = 253402300799LL; 73 static const int64 kDurationMinSeconds = -315576000000LL; 74 static const int64 kDurationMaxSeconds = 315576000000LL; 113 static Duration NanosecondsToDuration(int64 nanos); 114 static Duration MicrosecondsToDuration(int64 micros); 115 static Duration MillisecondsToDuration(int64 millis); 116 static Duration SecondsToDuration(int64 second [all...] |
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | time.cc | 13 static const int64 kSecondsPerMinute = 60; 14 static const int64 kSecondsPerHour = 3600; 15 static const int64 kSecondsPerDay = kSecondsPerHour * 24; 16 static const int64 kSecondsPer400Years = 19 static const int64 kSecondsFromEraToEpoch = 62135596800LL; 21 static const int64 kMinTime = -62135596800LL; // 0001-01-01T00:00:00 22 static const int64 kMaxTime = 253402300799LL; // 9999-12-31T23:59:59 29 int64 SecondsPer100Years(int year) { in SecondsPer100Years() 39 int64 SecondsPer4Years(int year) { in SecondsPer4Years() 54 int64 SecondsPerYea [all...] |
H A D | time.h | 54 bool PROTOBUF_EXPORT SecondsToDateTime(int64 seconds, DateTime* time); 57 bool PROTOBUF_EXPORT DateTimeToSeconds(const DateTime& time, int64* seconds); 59 void PROTOBUF_EXPORT GetCurrentTime(int64* seconds, int32* nanos); 68 string PROTOBUF_EXPORT FormatTime(int64 seconds, int32 nanos); 71 bool PROTOBUF_EXPORT ParseTime(const string& value, int64* seconds,
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | stream.go | 35 Read(context.Context) ([]byte, int64, error) 38 Write(context.Context, []byte) (int64, error) 57 func (s *plainStream) Read(ctx context.Context) ([]byte, int64, error) { 67 return raw, int64(len(raw)), nil 70 func (s *plainStream) Write(ctx context.Context, data []byte) (int64, error) { 79 return int64(n), err 98 func (s *headerStream) Read(ctx context.Context) ([]byte, int64, error) { 104 var total, length int64 108 total += int64(len(line)) 145 func (s *headerStream) Write(ctx context.Context, data []byte) (int64, erro [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | stream.go | 35 Read(context.Context) ([]byte, int64, error) 38 Write(context.Context, []byte) (int64, error) 57 func (s *plainStream) Read(ctx context.Context) ([]byte, int64, error) { 67 return raw, int64(len(raw)), nil 70 func (s *plainStream) Write(ctx context.Context, data []byte) (int64, error) { 79 return int64(n), err 98 func (s *headerStream) Read(ctx context.Context) ([]byte, int64, error) { 104 var total, length int64 108 total += int64(len(line)) 145 func (s *headerStream) Write(ctx context.Context, data []byte) (int64, erro [all...] |
/third_party/spirv-tools/utils/vscode/src/lsp/jsonrpc2/ |
H A D | stream.go | 35 Read(context.Context) ([]byte, int64, error) 38 Write(context.Context, []byte) (int64, error) 57 func (s *plainStream) Read(ctx context.Context) ([]byte, int64, error) { 67 return raw, int64(len(raw)), nil 70 func (s *plainStream) Write(ctx context.Context, data []byte) (int64, error) { 79 return int64(n), err 98 func (s *headerStream) Read(ctx context.Context) ([]byte, int64, error) { 104 var total, length int64 108 total += int64(len(line)) 145 func (s *headerStream) Write(ctx context.Context, data []byte) (int64, erro [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | wire_format_lite.h | 244 static uint64 ZigZagEncode64(int64 n); 245 static int64 ZigZagDecode64(uint64 n); 356 int64 value, io::CodedOutputStream* output); 364 int64 value, io::CodedOutputStream* output); 372 int64 value, io::CodedOutputStream* output); 393 static void WriteSFixed64Array(const int64* a, int n, 401 static void WriteInt64(int field_number, int64 value, 409 static void WriteSInt64(int field_number, int64 value, 417 static void WriteSFixed64(int field_number, int64 value, 470 PROTOBUF_ALWAYS_INLINE static uint8* WriteInt64NoTagToArray(int64 valu [all...] |
H A D | generated_message_table_driven_lite.h | 73 inline Type* Raw(MessageLite* msg, int64 offset) { in Raw() 78 inline const Type* Raw(const MessageLite* msg, int64 offset) { in Raw() 83 inline ExtensionSet* GetExtensionSet(MessageLite* msg, int64 extension_offset) { in GetExtensionSet() 92 inline Type* AddField(MessageLite* msg, int64 offset) { in AddField() 102 inline std::string* AddField<std::string>(MessageLite* msg, int64 offset) { in AddField() 110 inline void AddField(MessageLite* msg, int64 offset, Type value) { in AddField() 125 uint32 has_bit_index, int64 offset) { in MutableField() 132 int64 offset, Type value) { in SetField() 140 uint32 oneof_case_index, int64 offset, in SetOneofField() 183 int64 offse in ResetOneofField() [all...] |
H A D | duration.pb.h | 185 // int64 seconds = 1; 187 ::PROTOBUF_NAMESPACE_ID::int64 seconds() const; 188 void set_seconds(::PROTOBUF_NAMESPACE_ID::int64 value); 190 ::PROTOBUF_NAMESPACE_ID::int64 _internal_seconds() const; 191 void _internal_set_seconds(::PROTOBUF_NAMESPACE_ID::int64 value); 210 ::PROTOBUF_NAMESPACE_ID::int64 seconds_; 226 // int64 seconds = 1; 230 inline ::PROTOBUF_NAMESPACE_ID::int64 Duration::_internal_seconds() const { in _internal_seconds() 233 inline ::PROTOBUF_NAMESPACE_ID::int64 Duration::seconds() const { in seconds() 237 inline void Duration::_internal_set_seconds(::PROTOBUF_NAMESPACE_ID::int64 valu in seconds() [all...] |
H A D | timestamp.pb.h | 185 // int64 seconds = 1; 187 ::PROTOBUF_NAMESPACE_ID::int64 seconds() const; 188 void set_seconds(::PROTOBUF_NAMESPACE_ID::int64 value); 190 ::PROTOBUF_NAMESPACE_ID::int64 _internal_seconds() const; 191 void _internal_set_seconds(::PROTOBUF_NAMESPACE_ID::int64 value); 210 ::PROTOBUF_NAMESPACE_ID::int64 seconds_; 226 // int64 seconds = 1; 230 inline ::PROTOBUF_NAMESPACE_ID::int64 Timestamp::_internal_seconds() const { in _internal_seconds() 233 inline ::PROTOBUF_NAMESPACE_ID::int64 Timestamp::seconds() const { in seconds() 237 inline void Timestamp::_internal_set_seconds(::PROTOBUF_NAMESPACE_ID::int64 valu in seconds() [all...] |
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/ |
H A D | type_precision.hpp | 62 typedef detail::int64 lowp_int64; 78 typedef detail::int64 lowp_int64_t; 94 typedef detail::int64 lowp_i64; 110 typedef detail::int64 mediump_int64; 126 typedef detail::int64 mediump_int64_t; 142 typedef detail::int64 mediump_i64; 158 typedef detail::int64 highp_int64; 174 typedef detail::int64 highp_int64_t; 190 typedef detail::int64 highp_i64; 207 typedef detail::int64 int6 typedef [all...] |
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | glm.cpp | 18 template struct tvec1<int64, lowp>; 29 template struct tvec1<int64, mediump>; 40 template struct tvec1<int64, highp>; 52 template struct tvec2<int64, lowp>; 63 template struct tvec2<int64, mediump>; 74 template struct tvec2<int64, highp>; 86 template struct tvec3<int64, lowp>; 97 template struct tvec3<int64, mediump>; 108 template struct tvec3<int64, highp>; 120 template struct tvec4<int64, low [all...] |
H A D | type_int.hpp | 22 typedef std::int64_t int64; typedef 55 typedef sint64 int64; 209 typedef detail::int64 int64; typedef 298 GLM_STATIC_ASSERT(sizeof(glm::int64) == 8, "int64 size isn't 8 bytes on this platform");
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_utils.h | 259 inline uint64 Abs_int64 (int64 x) in Abs_int64() 266 inline int64 Min_int64 (int64 x, int64 y) in Min_int64() 273 inline int64 Max_int64 (int64 x, int64 y) in Max_int64() 280 inline int64 Pin_int64 (int64 min, int64 [all...] |
H A D | dng_pixel_buffer.h | 139 const int64 rowOffset = SafeInt64Mult(fRowStep, in InternalPixel() 140 static_cast<int64> (row) - static_cast<int64> (fArea.t)); in InternalPixel() 141 const int64 colOffset = SafeInt64Mult(fColStep, in InternalPixel() 142 static_cast<int64> (col) - static_cast<int64> (fArea.l)); in InternalPixel() 143 const int64 planeOffset = SafeInt64Mult(fPlaneStep, in InternalPixel() 144 static_cast<int64> (plane - fPlane)); in InternalPixel() 145 const int64 offset = SafeInt64Mult(static_cast<int64>(fPixelSiz in InternalPixel() [all...] |
H A D | dng_info.h | 108 int64 offsetDelta); 112 int64 offsetDelta); 120 int64 offsetDelta, 127 int64 offsetDelta, 136 int64 offsetDelta,
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/util/ |
H A D | util.go | 42 return int(Percent64(int64(i), int64(n))) 46 func Percent64(i, n int64) int64 {
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | constants.h | 53 const int64 kTimestampMinSeconds = -62135596800LL; 56 const int64 kTimestampMaxSeconds = 253402300799LL; 59 const int64 kDurationMinSeconds = -315576000000LL; 62 const int64 kDurationMaxSeconds = 315576000000LL;
|
/third_party/libphonenumber/cpp/src/phonenumbers/base/ |
H A D | basictypes.h | 27 typedef int64_t int64; typedef 43 const int64 kint64min = INT64_MIN; 44 const int64 kint64max = INT64_MAX; 60 typedef long int64; 62 typedef long long int64;
|
/third_party/libphonenumber/tools/cpp/src/base/ |
H A D | basictypes.h | 25 typedef int64_t int64; typedef 41 const int64 kint64min = INT64_MIN; 42 const int64 kint64max = INT64_MAX; 58 typedef long int64; typedef 60 typedef long long int64; typedef
|
/third_party/ltp/tools/sparse/sparse-src/validation/optim/ |
H A D | trunc-not0.c | 2 typedef __INT64_TYPE__ int64; typedef 4 static _Bool sfoo(int64 a) { return ((int32) ~a) == (~ (int32)a); } in sfoo() 5 static _Bool sbar(int64 a) { return (~(int32) ~a) == (int32)a; } in sbar()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
H A D | test_calling_conv.cpp | 41 int64 arg2 = 4; in caller_vlvilvfvdviv() 44 int64 arg5 = 11; in caller_vlvilvfvdviv() 78 callee_vlvilvfvdviv(v4f32 arg1, int64 arg2, v4f32 arg3, int arg4, int64 arg5, in callee_vlvilvfvdviv()
|