Home
last modified time | relevance | path

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

12345678910>>...18

/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/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/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/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 …]
Dtimestamp.pb.h187 ::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_;
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 value) { in _internal_set_seconds()
241 inline void Timestamp::set_seconds(::PROTOBUF_NAMESPACE_ID::int64 value) { in set_seconds()
Dduration.pb.h187 ::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_;
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 value) { in _internal_set_seconds()
241 inline void Duration::set_seconds(::PROTOBUF_NAMESPACE_ID::int64 value) { in set_seconds()
/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/protobuf/benchmarks/
Dgoogle_size.proto18 optional int64 field22 = 22;
58 optional int64 field13 = 13;
59 optional int64 field14 = 14;
77 optional int64 field3 = 3;
78 optional int64 field4 = 4;
79 optional int64 field30 = 30;
118 optional int64 field131 = 131;
121 repeated int64 field130 = 130;
137 optional int64 field11 = 11;
/third_party/protobuf/src/google/protobuf/util/internal/
Dconstants.h53 const int64 kTimestampMinSeconds = -62135596800LL;
56 const int64 kTimestampMaxSeconds = 253402300799LL;
59 const int64 kDurationMinSeconds = -315576000000LL;
62 const int64 kDurationMaxSeconds = 315576000000LL;
/third_party/protobuf/benchmarks/datasets/google_message4/
Dbenchmark_message4_1.proto90 optional int64 field3293 = 32;
95 optional int64 field3340 = 15;
96 optional int64 field3341 = 23;
207 optional int64 field8684 = 44;
289 optional int64 field12694 = 3;
331 optional int64 field6696 = 17;
383 optional int64 field3283 = 1;
384 optional int64 field3284 = 2;
385 optional int64 field3285 = 3;
480 optional int64 field7942 = 1;
[all …]
/third_party/protobuf/benchmarks/datasets/google_message3/
Dbenchmark_message3_6.proto60 optional int64 field9054 = 1;
112 optional int64 field9106 = 101;
184 optional int64 field11790 = 9;
186 optional int64 field11792 = 28;
191 optional int64 field11797 = 54;
192 optional int64 field11798 = 55;
210 optional int64 field11816 = 16;
212 optional int64 field11818 = 18;
214 optional int64 field11820 = 20;
216 optional int64 field11822 = 52;
[all …]

12345678910>>...18