Home
last modified time | relevance | path

Searched refs:int64 (Results 1 – 25 of 646) sorted by relevance

12345678910>>...26

/third_party/openssl/test/recipes/04-test_params_conversion_data/
Dnative_types.txt3 int64=0
10 int64=6
17 int64=-6
25 int64=0
32 int64=6
40 int64=2147483647
48 int64=2147483648
54 type=int64
56 int64=6
61 type=int64
[all …]
/third_party/protobuf/js/experimental/runtime/
Dint64_test.js12 const int64 = Int64.fromBits(0, 1); constant
13 expect(int64.getLowBits()).toEqual(0);
14 expect(int64.getHighBits()).toEqual(1);
18 const int64 = Int64.getZero(); constant
19 expect(int64.getLowBits()).toEqual(0);
20 expect(int64.getHighBits()).toEqual(0);
24 const int64 = Int64.getMaxValue(); constant
25 expect(int64).toEqual(Int64.fromBits(0xFFFFFFFF, 0x7FFFFFFF));
26 expect(int64.asLong()).toEqual(Long.getMaxValue());
30 const int64 = Int64.getMinValue(); constant
[all …]
Dint64.js238 const joinUnsignedDecimalString = (int64) => { argument
239 const lowBits = int64.getLowBitsUnsigned();
240 const highBits = int64.getHighBitsUnsigned();
309 const joinSignedDecimalString = (int64) => { argument
312 const negative = (int64.getHighBits() & 0x80000000);
314 int64 = negate(int64.getLowBits(), int64.getHighBits());
317 const result = joinUnsignedDecimalString(int64);
/third_party/protobuf/src/google/protobuf/util/
Dtime_util.cc60 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 RoundTowardZero(int64 value, int64 divider) { in RoundTowardZero()
131 int64 result = value / divider; in RoundTowardZero()
132 int64 remainder = value % divider; in RoundTowardZero()
149 const int64 TimeUtil::kTimestampMinSeconds;
[all …]
Dtime_util.h42 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 seconds);
[all …]
/third_party/cef/libcef/browser/
Dstream_impl.h23 int Seek(int64 offset, int whence) override;
24 int64 Tell() override;
44 int Seek(int64 offset, int whence) override;
45 int64 Tell() override;
61 CefBytesReader(void* data, int64 datasize, bool copy);
65 int Seek(int64 offset, int whence) override;
66 int64 Tell() override;
70 void SetData(void* data, int64 datasize, bool copy);
77 int64 datasize_;
79 int64 offset_;
[all …]
Dstream_impl.cc85 int CefFileReader::Seek(int64 offset, int whence) { in Seek()
94 int64 CefFileReader::Tell() { in Tell()
124 int CefFileWriter::Seek(int64 offset, int whence) { in Seek()
129 int64 CefFileWriter::Tell() { in Tell()
141 CefBytesReader::CefBytesReader(void* data, int64 datasize, bool copy) in CefBytesReader()
159 int CefBytesReader::Seek(int64 offset, int whence) { in Seek()
170 int64 offset_abs = std::abs(offset); in Seek()
188 int64 CefBytesReader::Tell() { in Tell()
198 void CefBytesReader::SetData(void* data, int64 datasize, bool copy) { in SetData()
235 if (offset_ + static_cast<int64>(size * n) >= datasize_ && in Write()
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
Dwrapper_benchmark_messages.proto129 int64 int64_field_2 = 2;
131 int64 int64_field_3 = 3;
132 int64 int64_field_4 = 4;
156 int64 int64_field_19 = 19;
157 int64 int64_field_115 = 115;
159 int64 int64_field_117 = 117;
170 int64 int64_field_26 = 26;
182 int64 int64_field_32 = 32;
187 int64 int64_field_82 = 82;
189 int64 int64_field_85 = 85;
[all …]
/third_party/protobuf/src/google/protobuf/stubs/
Dtime.cc13 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 SecondsPerYear(int year) { in SecondsPerYear()
[all …]
Dtime.h54 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/protobuf/java/core/src/test/proto/com/google/protobuf/
Dproto3_message.proto41 int64 serialized_size = 3;
54 int64 field_int64_3 = 3;
71 repeated int64 field_int64_list_20 = 20 [packed = false];
88 repeated int64 field_int64_list_packed_37 = 37 [packed = true];
103 int64 field_int64_55 = 55;
131 map<bool, int64> field_map_bool_int64_9 = 9;
148 map<fixed32, int64> field_map_fixed32_int64_26 = 26;
165 map<fixed64, int64> field_map_fixed64_int64_43 = 43;
182 map<int32, int64> field_map_int32_int64_60 = 60;
191 map<int64, bool> field_map_int64_bool_69 = 69;
[all …]
Dproto3_message_lite.proto47 int64 field_int64_3 = 3;
64 repeated int64 field_int64_list_20 = 20 [packed = false];
81 repeated int64 field_int64_list_packed_37 = 37 [packed = true];
96 int64 field_int64_55 = 55;
124 map<bool, int64> field_map_bool_int64_9 = 9;
141 map<fixed32, int64> field_map_fixed32_int64_26 = 26;
158 map<fixed64, int64> field_map_fixed64_int64_43 = 43;
175 map<int32, int64> field_map_int32_int64_60 = 60;
184 map<int64, bool> field_map_int64_bool_69 = 69;
185 map<int64, bytes> field_map_int64_bytes_70 = 70;
[all …]
Dproto2_message.proto43 optional int64 serialized_size = 3;
57 optional int64 field_int64_3 = 3;
74 repeated int64 field_int64_list_20 = 20 [packed = false];
91 repeated int64 field_int64_list_packed_37 = 37 [packed = true];
112 int64 field_int64_55 = 55;
137 required int64 field_required_int64_73 = 73;
166 optional int64 field_int64_3 = 3;
184 repeated int64 field_int64_list_20 = 20 [packed = false];
202 repeated int64 field_int64_list_packed_37 = 37 [packed = true];
234 map<bool, int64> field_map_bool_int64_9 = 9;
[all …]
Dproto2_message_lite.proto50 optional int64 field_int64_3 = 3;
67 repeated int64 field_int64_list_20 = 20 [packed = false];
84 repeated int64 field_int64_list_packed_37 = 37 [packed = true];
105 int64 field_int64_55 = 55;
130 required int64 field_required_int64_73 = 73;
159 optional int64 field_int64_3 = 3;
177 repeated int64 field_int64_list_20 = 20 [packed = false];
195 repeated int64 field_int64_list_packed_37 = 37 [packed = true];
227 map<bool, int64> field_map_bool_int64_9 = 9;
244 map<fixed32, int64> field_map_fixed32_int64_26 = 26;
[all …]
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/compute/mul_extended/
Dsigned_64bit.amber77 %int64 = OpTypeInt 64 1
78 %v2int64 = OpTypeVector %int64 2
85 %_ptr_Uniform_int64 = OpTypePointer Uniform %int64
91 %ResType = OpTypeStruct %int64 %int64
110 %30 = OpLoad %int64 %29
113 %34 = OpLoad %int64 %33
119 %45 = OpCompositeExtract %int64 %44 0
121 %46 = OpCompositeExtract %int64 %44 1
134 BUFFER input DATA_TYPE vec2<int64> DATA
237 BUFFER output DATA_TYPE vec2<int64> SIZE 100 FILL 0.0
[all …]
/third_party/skia/platform_tools/android/apps/skottie/
Dskottie_metric.proto21 optional int64 skottie_animator_max = 3;
22 optional int64 skottie_animator_min = 4;
26 optional int64 dequeue_buffer_max = 7;
27 optional int64 dequeue_buffer_min = 8;
40 optional int64 ui_thread_cpu_time = 12; // CPU time spent on UI thread in nanoseconds
41 optional int64 rt_thread_cpu_time = 13; // CPU time spent on RenderThread in nanoseconds
42 optional int64 hwui_tasks_cpu_time = 14; // CPU time spent on hwuiTask0/1 threads in nanoseconds
43 optional int64 skottie_animator_cpu_time = 15; // CPU time spent on SkottieAnimator in ns
45 optional int64 total_cpu_time = 16; // Total CPU time in nanoseconds. Equals
48 optional int64 total_gpu_time = 17; // GPU time spent to render all content in nanoseconds.
[all …]
/third_party/cef/tests/shared/browser/
Dmain_message_loop_external_pump_linux.cc65 void OnScheduleMessagePumpWork(int64 delay_ms) override;
79 void SetTimer(int64 delay_ms) override;
227 int64 delay_ms) { in OnScheduleMessagePumpWork()
231 if (HANDLE_EINTR(write(wakeup_pipe_write_, &delay_ms, sizeof(int64))) != in OnScheduleMessagePumpWork()
232 sizeof(int64)) { in OnScheduleMessagePumpWork()
251 int64 delay_ms[2]; in HandleCheck()
253 HANDLE_EINTR(read(wakeup_pipe_read_, delay_ms, sizeof(int64) * 2)); in HandleCheck()
254 if (num_bytes < sizeof(int64)) { in HandleCheck()
257 if (num_bytes == sizeof(int64)) in HandleCheck()
259 if (num_bytes == sizeof(int64) * 2) in HandleCheck()
[all …]
/third_party/cef/include/
Dcef_stream.h61 virtual int Seek(int64 offset, int whence) = 0;
67 virtual int64 Tell() = 0;
120 virtual int Seek(int64 offset, int whence) = 0;
126 virtual int64 Tell() = 0;
162 virtual int Seek(int64 offset, int whence) = 0;
168 virtual int64 Tell() = 0;
216 virtual int Seek(int64 offset, int whence) = 0;
222 virtual int64 Tell() = 0;
/third_party/glslang/Test/
Dspv.int64.frag53 i64v = i64vec2(bv); // bool -> int64
56 i64v = iv; // int -> int64
57 iv = ivec2(i64v); // int64 -> int
62 fv = vec2(i64v); // int64 -> float
63 dv = i64v; // int64 -> double
68 i64v = i64vec2(fv); // float -> int64
69 i64v = i64vec2(dv); // double -> int64
74 bv = bvec2(i64v); // int64 -> bool
77 u64v = i64v; // int64 -> uint64
78 i64v = i64vec2(u64v); // uint64 -> int64
[all …]
/third_party/cef/include/capi/
Dcef_stream_capi.h72 int64 offset,
78 int64(CEF_CALLBACK* tell)(struct _cef_read_handler_t* self);
116 int64 offset,
122 int64(CEF_CALLBACK* tell)(struct _cef_stream_reader_t* self);
178 int64 offset,
184 int64(CEF_CALLBACK* tell)(struct _cef_write_handler_t* self);
222 int64 offset,
228 int64(CEF_CALLBACK* tell)(struct _cef_stream_writer_t* self);
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_utils.h259 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 x, int64 max) in Pin_int64()
546 inline int64 Round_int64 (real64 x) in Round_int64()
549 return (int64) (x >= 0.0 ? x + 0.5 : x - 0.5); in Round_int64()
555 const int64 kFixed64_One = (((int64) 1) << 32);
556 const int64 kFixed64_Half = (((int64) 1) << 31);
560 inline int64 Real64ToFixed64 (real64 x) in Real64ToFixed64()
569 inline real64 Fixed64ToReal64 (int64 x) in Fixed64ToReal64()
[all …]
/third_party/protobuf/src/google/protobuf/
Dwire_format_lite.h244 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 value,
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
Dtype_precision.hpp62 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 int64; typedef
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dglm.cpp18 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, lowp>;
[all …]
/third_party/cef/tests/cefclient/browser/
Dbytes_write_handler.h20 int Seek(int64 offset, int whence) override;
21 int64 Tell() override;
26 int64 GetDataSize() { return offset_; } in GetDataSize()
33 int64 datasize_;
34 int64 offset_;

12345678910>>...26