/third_party/gettext/libtextstyle/gnulib-local/lib/glib/ |
D | gtypes.in.h | 81 #define G_MININT64 ((gint64) G_GINT64_CONSTANT(0x8000000000000000)) 82 #define G_MAXINT64 G_GINT64_CONSTANT(0x7fffffffffffffff) 83 #define G_MAXUINT64 G_GINT64_CONSTANT(0xffffffffffffffffU) 144 (guint64) G_GINT64_CONSTANT (0x00000000000000ffU)) << 56) | \ 146 (guint64) G_GINT64_CONSTANT (0x000000000000ff00U)) << 40) | \ 148 (guint64) G_GINT64_CONSTANT (0x0000000000ff0000U)) << 24) | \ 150 (guint64) G_GINT64_CONSTANT (0x00000000ff000000U)) << 8) | \ 152 (guint64) G_GINT64_CONSTANT (0x000000ff00000000U)) >> 8) | \ 154 (guint64) G_GINT64_CONSTANT (0x0000ff0000000000U)) >> 24) | \ 156 (guint64) G_GINT64_CONSTANT (0x00ff000000000000U)) >> 40) | \ [all …]
|
/third_party/glib/glib/ |
D | gtypes.h | 99 #define G_MININT64 ((gint64) (-G_MAXINT64 - G_GINT64_CONSTANT(1))) 100 #define G_MAXINT64 G_GINT64_CONSTANT(0x7fffffffffffffff) 203 (guint64) G_GINT64_CONSTANT (0x00000000000000ffU)) << 56) | \ 205 (guint64) G_GINT64_CONSTANT (0x000000000000ff00U)) << 40) | \ 207 (guint64) G_GINT64_CONSTANT (0x0000000000ff0000U)) << 24) | \ 209 (guint64) G_GINT64_CONSTANT (0x00000000ff000000U)) << 8) | \ 211 (guint64) G_GINT64_CONSTANT (0x000000ff00000000U)) >> 8) | \ 213 (guint64) G_GINT64_CONSTANT (0x0000ff0000000000U)) >> 24) | \ 215 (guint64) G_GINT64_CONSTANT (0x00ff000000000000U)) >> 40) | \ 217 (guint64) G_GINT64_CONSTANT (0xff00000000000000U)) >> 56)))
|
D | gdatetime.h | 42 #define G_TIME_SPAN_DAY (G_GINT64_CONSTANT (86400000000)) 51 #define G_TIME_SPAN_HOUR (G_GINT64_CONSTANT (3600000000)) 60 #define G_TIME_SPAN_MINUTE (G_GINT64_CONSTANT (60000000)) 69 #define G_TIME_SPAN_SECOND (G_GINT64_CONSTANT (1000000)) 78 #define G_TIME_SPAN_MILLISECOND (G_GINT64_CONSTANT (1000))
|
D | glibconfig.h | 66 #define G_GINT64_CONSTANT(val) (val##L) macro 96 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val) 118 #define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL)) macro 148 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
|
D | gdatetime.c | 158 #define USEC_PER_SECOND (G_GINT64_CONSTANT (1000000)) 159 #define USEC_PER_MINUTE (G_GINT64_CONSTANT (60000000)) 160 #define USEC_PER_HOUR (G_GINT64_CONSTANT (3600000000)) 161 #define USEC_PER_MILLISECOND (G_GINT64_CONSTANT (1000)) 162 #define USEC_PER_DAY (G_GINT64_CONSTANT (86400000000)) 163 #define SEC_PER_DAY (G_GINT64_CONSTANT (86400)) 173 #define DAYS_PER_PERIOD (G_GINT64_CONSTANT (2914695)) 769 if (instant < 0 || instant > G_GINT64_CONSTANT (1000000000000000000)) in g_date_time_from_instant()
|
D | glibconfig.h.in | 64 #define G_GINT64_CONSTANT(val) @gint64_constant@ macro 94 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
|
D | gthread-win32.c | 270 else if G_UNLIKELY (span > G_GINT64_CONSTANT (1000) * (DWORD) INFINITE) in g_cond_wait_until()
|
/third_party/glib/tests/ |
D | type-test.c | 52 guint64 gu64t1 = G_GINT64_CONSTANT(0x1d636b02300a7aa7U), in main() 53 gu64t2 = G_GINT64_CONSTANT(0xa77a0a30026b631dU); in main() 119 gi64t1 = G_GINT64_CONSTANT (-0x3AFAFAFAFAFAFAFA); in main() 120 gu64t1 = G_GINT64_CONSTANT (0xFAFAFAFAFAFAFAFA); in main()
|
/third_party/gstreamer/gstplugins_good/gst/matroska/ |
D | ebml-ids.h | 33 #define GST_EBML_SIZE_UNKNOWN G_GINT64_CONSTANT(0x00ffffffffffffff) 52 #define GST_EBML_DATE_OFFSET G_GINT64_CONSTANT (978307200000000000)
|
D | ebml-write.c | 542 while (size < 8 && num >= (G_GINT64_CONSTANT (1) << (size * 8))) { in gst_ebml_write_get_uint_size() 789 (G_GINT64_CONSTANT (1) << 56) | (pos - startpos - 8 + extra_size)); in gst_ebml_write_master_finish_full()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstclock.h | 103 #define GST_SECOND ((GstClockTimeDiff)(G_USEC_PER_SEC * G_GINT64_CONSTANT (1000))) 109 #define GST_MSECOND ((GstClockTimeDiff)(GST_SECOND / G_GINT64_CONSTANT (1000))) 115 #define GST_USECOND ((GstClockTimeDiff)(GST_SECOND / G_GINT64_CONSTANT (1000000))) 121 #define GST_NSECOND ((GstClockTimeDiff)(GST_SECOND / G_GINT64_CONSTANT (1000000000))) 137 #define GST_TIME_AS_MSECONDS(time) ((time) / G_GINT64_CONSTANT (1000000)) 144 #define GST_TIME_AS_USECONDS(time) ((time) / G_GINT64_CONSTANT (1000))
|
D | gstformat.h | 67 #define GST_FORMAT_PERCENT_MAX G_GINT64_CONSTANT (1000000) 74 #define GST_FORMAT_PERCENT_SCALE G_GINT64_CONSTANT (10000)
|
D | gstquery.c | 241 GST_QUARK (CURRENT), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL); in gst_query_new_position() 320 GST_QUARK (DURATION), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL); in gst_query_new_duration() 485 GST_QUARK (DEST_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL); in gst_query_new_convert() 578 GST_QUARK (START_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1), in gst_query_new_segment() 579 GST_QUARK (STOP_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL); in gst_query_new_segment() 775 GST_QUARK (SEGMENT_START), G_TYPE_INT64, G_GINT64_CONSTANT (-1), in gst_query_new_seeking() 776 GST_QUARK (SEGMENT_END), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL); in gst_query_new_seeking() 1056 GST_QUARK (BUFFERING_LEFT), G_TYPE_INT64, G_GINT64_CONSTANT (0), in gst_query_new_buffering() 1057 GST_QUARK (ESTIMATED_TOTAL), G_TYPE_INT64, G_GINT64_CONSTANT (-1), in gst_query_new_buffering() 1059 GST_QUARK (START_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1), in gst_query_new_buffering() [all …]
|
/third_party/gstreamer/gstreamer/tests/check/libs/ |
D | bytereader.c | 150 GET_CHECK (&reader, d, 64, le, G_GINT64_CONSTANT (0xefcdab9078563412)); in GST_START_TEST() 151 GET_CHECK (&reader, d, 64, le, G_GINT64_CONSTANT (0x2143658709badcfe)); in GST_START_TEST() 165 PEEK_CHECK (&reader, d, 64, le, G_GINT64_CONSTANT (0xefcdab9078563412)); in GST_START_TEST() 193 GET_CHECK (&reader, d, 64, be, G_GINT64_CONSTANT (0x1234567890abcdef)); in GST_START_TEST() 194 GET_CHECK (&reader, d, 64, be, G_GINT64_CONSTANT (0xfedcba0987654321)); in GST_START_TEST() 208 PEEK_CHECK (&reader, d, 64, be, G_GINT64_CONSTANT (0x1234567890abcdef)); in GST_START_TEST() 281 GET_CHECK (&reader, d, 64, le, G_GINT64_CONSTANT (-1)); in GST_START_TEST() 282 GET_CHECK (&reader, d, 64, le, G_GINT64_CONSTANT (-1)); in GST_START_TEST() 296 PEEK_CHECK (&reader, d, 64, le, G_GINT64_CONSTANT (-1)); in GST_START_TEST() 325 GET_CHECK (&reader, d, 64, be, G_GINT64_CONSTANT (-1)); in GST_START_TEST() [all …]
|
D | bitreader.c | 185 GET_CHECK (&reader, d, 64, 64, G_GINT64_CONSTANT (0x1234567890abcdef)); in GST_START_TEST()
|
/third_party/gstreamer/gstreamer/plugins/tracers/ |
D | gstrusage.c | 243 G_GINT64_CONSTANT (1000), ts); in do_stats() 246 G_GINT64_CONSTANT (1000), dts); in do_stats() 251 G_GINT64_CONSTANT (1000), ts); in do_stats() 256 G_GINT64_CONSTANT (1000), dts); in do_stats()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | rtpbasepayload.c | 867 push_buffer (state, "pts", 0 * GST_SECOND, "offset", G_GINT64_CONSTANT (0), in GST_START_TEST() 871 G_GINT64_CONSTANT (21), NULL); in GST_START_TEST() 877 validate_buffer (0, "pts", 0 * GST_SECOND, "offset", G_GINT64_CONSTANT (0), in GST_START_TEST() 882 "pts", GST_CLOCK_TIME_NONE, "offset", G_GINT64_CONSTANT (21), "rtptime", in GST_START_TEST() 1673 push_buffer (state, "pts", 0 * GST_SECOND, "offset", G_GINT64_CONSTANT (0), in GST_START_TEST() 1676 push_buffer (state, "pts", 1 * GST_SECOND, "offset", G_GINT64_CONSTANT (17), in GST_START_TEST() 1683 push_buffer (state, "pts", 2 * GST_SECOND, "offset", G_GINT64_CONSTANT (31), in GST_START_TEST() 1686 push_buffer (state, "pts", 3 * GST_SECOND, "offset", G_GINT64_CONSTANT (67), in GST_START_TEST() 1694 "pts", 0 * GST_SECOND, "offset", G_GINT64_CONSTANT (0), "rtptime", in GST_START_TEST() 1699 "offset", G_GINT64_CONSTANT (17), "rtptime", in GST_START_TEST() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/onvif/ |
D | gstrtponvifparse.c | 122 (timestamp_fraction * G_GINT64_CONSTANT (1000000000)) >> 32; in handle_buffer()
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | rtponvifparse.c | 79 ntptime = gst_util_uint64_scale (t, (G_GINT64_CONSTANT (1) << 32), in convert_to_ntp()
|
D | rtponviftimestamp.c | 244 ntptime = gst_util_uint64_scale (t, (G_GINT64_CONSTANT (1) << 32), in convert_to_ntp() 707 (G_GINT64_CONSTANT (1) << 32), GST_SECOND); in do_ntp_time()
|
/third_party/gstreamer/gstplugins_base/tests/check/pipelines/ |
D | theoraenc.c | 33 #define TIMESTAMP_OFFSET G_GINT64_CONSTANT(3249870963)
|
D | vorbisenc.c | 31 #define TIMESTAMP_OFFSET G_GINT64_CONSTANT(3249870963)
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gstevent.c | 178 GstClockTimeDiff ctd1 = G_GINT64_CONSTANT (10), ctd2; in GST_START_TEST() 199 ctd1 = G_GINT64_CONSTANT (-10); in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_good/gst/level/ |
D | gstlevel.c | 374 normalizer = (gdouble) (G_GINT64_CONSTANT(1) << (RESOLUTION * 2)); \ 715 filter->decay_peak_age[i] = G_GINT64_CONSTANT (0); in gst_level_transform_ip()
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | audioconvert.c | 856 (gdouble) (-(G_GINT64_CONSTANT (32768) << 16)) / 2147483648.0, /* ~ -1.0 */ in GST_START_TEST() 867 { 0, (-(G_GINT64_CONSTANT (1) << 31)), (1L << 30), (-(1L << 30)) }; in GST_START_TEST() 869 (gdouble) (-(G_GINT64_CONSTANT (1) << 31)) / 2147483648.0, /* ~ -1.0 */ in GST_START_TEST()
|