/third_party/boost/tools/build/src/engine/ |
D | timestamp.h | 23 typedef struct timestamp struct 27 } timestamp; typedef 29 void timestamp_clear( timestamp * const ); 30 int timestamp_cmp( timestamp const * const lhs, timestamp const * const rhs ); 31 void timestamp_copy( timestamp * const target, timestamp const * const source ); 32 void timestamp_current( timestamp * const ); 33 int timestamp_empty( timestamp const * const ); 34 void timestamp_from_path( timestamp * const, OBJECT * const path ); 35 void timestamp_init( timestamp * const, time_t const secs, int const nsecs ); 36 void timestamp_max( timestamp * const max, timestamp const * const lhs, [all …]
|
D | timestamp.cpp | 57 timestamp time; 70 void timestamp_from_filetime( timestamp * const t, FILETIME const * const ft ) in timestamp_from_filetime() 92 void timestamp_clear( timestamp * const time ) in timestamp_clear() 98 int timestamp_cmp( timestamp const * const lhs, timestamp const * const rhs ) in timestamp_cmp() 107 void timestamp_copy( timestamp * const target, timestamp const * const source ) in timestamp_copy() 114 void timestamp_current( timestamp * const t ) in timestamp_current() 139 int timestamp_empty( timestamp const * const time ) in timestamp_empty() 149 void timestamp_from_path( timestamp * const time, OBJECT * const path ) in timestamp_from_path() 151 PROFILE_ENTER( timestamp ); in timestamp_from_path() 156 PROFILE_EXIT( timestamp ); in timestamp_from_path() [all …]
|
/third_party/gstreamer/gstreamer/tests/check/libs/ |
D | adapter.c | 366 GstClockTime timestamp; in GST_START_TEST() local 383 timestamp = gst_adapter_prev_pts (adapter, &dist); in GST_START_TEST() 384 fail_unless (timestamp == GST_CLOCK_TIME_NONE); in GST_START_TEST() 387 timestamp = gst_adapter_pts_at_discont (adapter); in GST_START_TEST() 388 fail_unless (timestamp == GST_CLOCK_TIME_NONE); in GST_START_TEST() 407 timestamp = gst_adapter_prev_pts (adapter, &dist); in GST_START_TEST() 408 fail_unless (timestamp == GST_CLOCK_TIME_NONE); in GST_START_TEST() 411 timestamp = gst_adapter_pts_at_discont (adapter); in GST_START_TEST() 412 fail_unless (timestamp == GST_CLOCK_TIME_NONE); in GST_START_TEST() 435 timestamp = gst_adapter_prev_pts (adapter, &dist); in GST_START_TEST() [all …]
|
/third_party/node/src/tracing/ |
D | trace_event_common.h | 263 timestamp) \ argument 265 TRACE_EVENT_PHASE_INSTANT, category_group, name, timestamp, \ 269 timestamp, arg_name, arg_val) \ argument 271 TRACE_EVENT_PHASE_INSTANT, category_group, name, timestamp, \ 312 thread_id, timestamp) \ argument 315 timestamp, TRACE_EVENT_FLAG_NONE) 317 category_group, name, id, thread_id, timestamp) \ argument 320 timestamp, TRACE_EVENT_FLAG_COPY) 322 category_group, name, id, thread_id, timestamp, arg1_name, arg1_val) \ argument 325 timestamp, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val) [all …]
|
/third_party/gstreamer/gstreamer/libs/gst/controller/ |
D | gstlfocontrolsource.c | 70 _calculate_pos (GstClockTime timestamp, GstClockTime timeshift, in _calculate_pos() argument 73 while (timestamp < timeshift) in _calculate_pos() 74 timestamp += period; in _calculate_pos() 76 timestamp -= timeshift; in _calculate_pos() 78 return timestamp % period; in _calculate_pos() 84 GstClockTime timestamp) in _sine_get() argument 87 gst_guint64_to_gdouble (_calculate_pos (timestamp, timeshift, period)); in _sine_get() 98 waveform_sine_get (GstLFOControlSource * self, GstClockTime timestamp, in waveform_sine_get() argument 103 gst_object_sync_values (GST_OBJECT (self), timestamp); in waveform_sine_get() 106 priv->period, priv->frequency, timestamp); in waveform_sine_get() [all …]
|
D | gstinterpolationcontrolsource.c | 102 *next_ts = (*cp2)->timestamp; in _get_nearest_control_points2() 118 interpolate_none_get (GstTimedValueControlSource * self, GstClockTime timestamp, in interpolate_none_get() argument 128 gst_timed_value_control_source_find_control_point_iter (self, timestamp); in interpolate_none_get() 140 GstClockTime timestamp, GstClockTime interval, guint n_values, in interpolate_none_get_value_array() argument 145 GstClockTime ts = timestamp; in interpolate_none_get_value_array() 178 GstClockTime timestamp2, gdouble value2, GstClockTime timestamp) in _interpolate_linear() 185 return value1 + (gst_guint64_to_gdouble (timestamp - timestamp1) * slope); in _interpolate_linear() 193 GstClockTime timestamp, gdouble * value) in interpolate_linear_get() argument 200 if (_get_nearest_control_points (self, timestamp, &cp1, &cp2)) { in interpolate_linear_get() 201 *value = _interpolate_linear (cp1->timestamp, cp1->value, in interpolate_linear_get() [all …]
|
D | gstargbcontrolbinding.c | 56 GstObject * object, GstClockTime timestamp, GstClockTime last_sync); 58 GstClockTime timestamp); 60 _self, GstClockTime timestamp, GstClockTime interval, guint n_values, 63 _self, GstClockTime timestamp, GstClockTime interval, guint n_values, 242 GstObject * object, GstClockTime timestamp, GstClockTime last_sync) in gst_argb_control_binding_sync_values() argument 252 _self->name, GST_TIME_ARGS (timestamp)); in gst_argb_control_binding_sync_values() 255 ret &= gst_control_source_get_value (self->cs_a, timestamp, &src_val_a); in gst_argb_control_binding_sync_values() 257 ret &= gst_control_source_get_value (self->cs_r, timestamp, &src_val_r); in gst_argb_control_binding_sync_values() 259 ret &= gst_control_source_get_value (self->cs_g, timestamp, &src_val_g); in gst_argb_control_binding_sync_values() 261 ret &= gst_control_source_get_value (self->cs_b, timestamp, &src_val_b); in gst_argb_control_binding_sync_values() [all …]
|
D | gsttimedvaluecontrolsource.c | 143 GstClockTime ct1 = ((GstControlPoint *) p1)->timestamp; in gst_control_point_compare() 144 GstClockTime ct2 = ((GstControlPoint *) p2)->timestamp; in gst_control_point_compare() 161 GstClockTime ct1 = ((GstControlPoint *) p1)->timestamp; in gst_control_point_find() 168 _make_new_cp (GstTimedValueControlSource * self, GstClockTime timestamp, in _make_new_cp() argument 175 cp->timestamp = timestamp; in _make_new_cp() 183 self, GstClockTime timestamp, const gdouble value) in gst_timed_value_control_source_set_internal() argument 191 GSequenceIter *iter = g_sequence_lookup (self->values, ×tamp, in gst_timed_value_control_source_set_internal() 211 cp = _make_new_cp (self, timestamp, value); in gst_timed_value_control_source_set_internal() 238 (GstTimedValueControlSource * self, GstClockTime timestamp) in gst_timed_value_control_source_find_control_point_iter() argument 246 g_sequence_search (self->values, ×tamp, in gst_timed_value_control_source_find_control_point_iter() [all …]
|
D | gsttriggercontrolsource.c | 65 GstClockTime timestamp) in _interpolate_trigger() argument 72 if (GST_CLOCK_DIFF (cp->timestamp, timestamp) <= tolerance) { in _interpolate_trigger() 77 if (GST_CLOCK_DIFF (timestamp, cp->timestamp) <= tolerance) { in _interpolate_trigger() 90 GstClockTime timestamp, gdouble * value) in interpolate_trigger_get() argument 98 gst_timed_value_control_source_find_control_point_iter (self, timestamp); in interpolate_trigger_get() 100 *value = _interpolate_trigger (self, iter, timestamp); in interpolate_trigger_get() 110 GstClockTime timestamp, GstClockTime interval, guint n_values, in interpolate_trigger_get_value_array() argument 115 GstClockTime ts = timestamp; in interpolate_trigger_get_value_array() 139 next_ts = cp->timestamp; in interpolate_trigger_get_value_array()
|
/third_party/flutter/skia/third_party/externals/sdl/include/ |
D | SDL_events.h | 168 Uint32 timestamp; member 177 Uint32 timestamp; member 193 Uint32 timestamp; member 209 Uint32 timestamp; member 224 Uint32 timestamp; member 235 Uint32 timestamp; member 251 Uint32 timestamp; member 268 Uint32 timestamp; member 282 Uint32 timestamp; member 298 Uint32 timestamp; member [all …]
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | Timestamps.java | 142 public static boolean isValid(Timestamp timestamp) { in isValid() argument 143 return isValid(timestamp.getSeconds(), timestamp.getNanos()); in isValid() 168 public static Timestamp checkValid(Timestamp timestamp) { in checkValid() argument 169 long seconds = timestamp.getSeconds(); in checkValid() 170 int nanos = timestamp.getNanos(); in checkValid() 179 return timestamp; in checkValid() 203 public static String toString(Timestamp timestamp) { in toString() argument 204 checkValid(timestamp); in toString() 206 long seconds = timestamp.getSeconds(); in toString() 207 int nanos = timestamp.getNanos(); in toString() [all …]
|
/third_party/libcoap/tests/ |
D | test_sendqueue.c | 23 static coap_tick_t timestamp[] = { variable 48 CU_ASSERT(node[1]->t == timestamp[1]); in t_sendqueue1() 61 CU_ASSERT(ctx->sendqueue->t == timestamp[1]); in t_sendqueue2() 62 CU_ASSERT(node[2]->t == timestamp[2] - timestamp[1]); in t_sendqueue2() 74 CU_ASSERT(node[3]->t == timestamp[3]); in t_sendqueue3() 79 CU_ASSERT(ctx->sendqueue->next->t == timestamp[1] - timestamp[3]); in t_sendqueue3() 80 CU_ASSERT(ctx->sendqueue->next->next->t == timestamp[2] - timestamp[1]); in t_sendqueue3() 103 CU_ASSERT(ctx->sendqueue->next->t == timestamp[1] - timestamp[3]); in t_sendqueue4() 104 CU_ASSERT(add_timestamps(ctx->sendqueue, 1) == timestamp[3]); in t_sendqueue4() 105 CU_ASSERT(add_timestamps(ctx->sendqueue, 2) == timestamp[1]); in t_sendqueue4() [all …]
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | videoframe-audiolevel.c | 72 GstClockTime timestamp; in output_achain() local 76 timestamp = GST_BUFFER_TIMESTAMP (buffer); in output_achain() 78 fail_unless_equals_int64 (timestamp, in output_achain() 80 timestamp = in output_achain() 82 timestamp); in output_achain() 84 fail_unless_equals_int64 (timestamp, in output_achain() 87 timestamp = GST_BUFFER_TIMESTAMP (buffer); in output_achain() 88 timestamp = in output_achain() 90 timestamp); in output_achain() 92 fail_unless_equals_int64 (timestamp, audio_buffer_count * 1 * GST_SECOND); in output_achain() [all …]
|
D | avwait.c | 86 GstClockTime timestamp, duration; in output_achain() local 88 timestamp = GST_BUFFER_TIMESTAMP (buffer); in output_achain() 95 first_audio_timestamp = timestamp; in output_achain() 97 last_audio_timestamp = timestamp + duration; in output_achain() 107 GstClockTime timestamp; in output_vchain() local 109 timestamp = GST_BUFFER_TIMESTAMP (buffer); in output_vchain() 112 first_video_timestamp = timestamp; in output_vchain() 114 last_video_timestamp = timestamp + GST_BUFFER_DURATION (buffer); in output_vchain() 132 GstClockTime timestamp; in push_abuffers() local 135 timestamp = 50 * GST_MSECOND; in push_abuffers() [all …]
|
/third_party/libdrm/freedreno/kgsl/ |
D | kgsl_pipe.c | 60 static int kgsl_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp, in kgsl_pipe_wait() argument 65 .timestamp = timestamp, in kgsl_pipe_wait() 76 kgsl_pipe_process_pending(kgsl_pipe, timestamp); in kgsl_pipe_wait() 81 uint32_t *timestamp) in kgsl_pipe_timestamp() argument 92 *timestamp = req.timestamp; in kgsl_pipe_timestamp() 149 uint32_t timestamp = kgsl_bo_get_timestamp(kgsl_bo); in kgsl_pipe_pre_submit() local 150 if (timestamp) in kgsl_pipe_pre_submit() 151 fd_pipe_wait(kgsl_pipe->p3d, timestamp); in kgsl_pipe_pre_submit() 157 uint32_t timestamp) in kgsl_pipe_post_submit() argument 165 kgsl_bo->timestamp[pipe->id] = timestamp; in kgsl_pipe_post_submit() [all …]
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_sensor.js | 23 timestamp: '[PC preview] unknown timestamp' property 29 timestamp: '[PC preview] unknown timestamp' property 38 timestamp: '[PC preview] unknown timestamp' property 44 timestamp: '[PC preview] unknown timestamp' property 50 timestamp: '[PC preview] unknown timestamp' property 57 timestamp: '[PC preview] unknown timestamp' property 63 timestamp: '[PC preview] unknown timestamp' property 72 timestamp: '[PC preview] unknown timestamp' property 76 timestamp: '[PC preview] unknown timestamp' property 80 timestamp: '[PC preview] unknown timestamp' property [all …]
|
/third_party/boost/boost/asio/detail/impl/ |
D | handler_tracking.ipp | 127 handler_tracking_timestamp timestamp; 142 timestamp.seconds, timestamp.microseconds, 157 timestamp.seconds, timestamp.microseconds, 174 handler_tracking_timestamp timestamp; 182 timestamp.seconds, timestamp.microseconds, 191 handler_tracking_timestamp timestamp; 199 timestamp.seconds, timestamp.microseconds, id_); 207 handler_tracking_timestamp timestamp; 215 timestamp.seconds, timestamp.microseconds, 224 handler_tracking_timestamp timestamp; [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/impl/ |
D | handler_tracking.ipp | 127 handler_tracking_timestamp timestamp; 142 timestamp.seconds, timestamp.microseconds, 157 timestamp.seconds, timestamp.microseconds, 174 handler_tracking_timestamp timestamp; 182 timestamp.seconds, timestamp.microseconds, 191 handler_tracking_timestamp timestamp; 199 timestamp.seconds, timestamp.microseconds, id_); 207 handler_tracking_timestamp timestamp; 215 timestamp.seconds, timestamp.microseconds, 224 handler_tracking_timestamp timestamp; [all …]
|
/third_party/gstreamer/gstreamer/tests/check/elements/ |
D | clocksync.c | 69 GstClockTime timestamp = 123456789; in GST_START_TEST() local 77 GST_BUFFER_PTS (buf) = timestamp; in GST_START_TEST() 92 fail_unless_equals_int64 (timestamp, GST_BUFFER_PTS (buf)); in GST_START_TEST() 94 fail_unless_equals_int64 (timestamp, gst_clock_get_time (clock)); in GST_START_TEST() 108 GstClockTime timestamp = 123456789; in GST_START_TEST() local 116 GST_BUFFER_PTS (buf) = timestamp; in GST_START_TEST() 124 fail_unless_equals_int64 (timestamp, GST_BUFFER_PTS (buf)); in GST_START_TEST() 140 GstClockTime timestamp = 123456789; in GST_START_TEST() local 148 GST_BUFFER_PTS (buf) = timestamp; in GST_START_TEST() 194 GstClockTime timestamp = 123456789; in GST_START_TEST() local [all …]
|
/third_party/weston/tests/ |
D | input-timestamps-helper.c | 77 struct timespec *timestamp = data; in input_timestamp() local 79 timespec_from_proto(timestamp, tv_sec_hi, tv_sec_lo, in input_timestamp() 83 timestamp->tv_sec, timestamp->tv_nsec); in input_timestamp() 88 .timestamp = input_timestamp, 96 struct timespec *timestamp= &client->input->keyboard->input_timestamp; in input_timestamps_create_for_keyboard() local 109 timestamp); in input_timestamps_create_for_keyboard() 123 struct timespec *timestamp= &client->input->pointer->input_timestamp; in input_timestamps_create_for_pointer() local 136 timestamp); in input_timestamps_create_for_pointer() 150 struct timespec *timestamp= &client->input->touch->input_timestamp; in input_timestamps_create_for_touch() local 163 timestamp); in input_timestamps_create_for_touch()
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpreddec.c | 60 guint32 timestamp; member 64 #define RTP_HIST_ITEM_TIMESTAMP(p) ((RTPHistItem *)p)->timestamp 111 gconstpointer timestamp) in gst_rtp_red_history_find_less_or_equal() argument 113 guint32 t = GPOINTER_TO_UINT (timestamp); in gst_rtp_red_history_find_less_or_equal() 119 gst_rtp_red_history_find_less (gconstpointer item, gconstpointer timestamp) in gst_rtp_red_history_find_less() argument 121 guint32 t = GPOINTER_TO_UINT (timestamp); in gst_rtp_red_history_find_less() 146 item->timestamp = gst_rtp_buffer_get_timestamp (rtp); in gst_rtp_red_history_update() 153 GUINT_TO_POINTER (item->timestamp), in gst_rtp_red_history_update() 224 GQueue * rtp_history, guint32 timestamp, guint16 * dst_seq_num) in gst_red_history_lost_seq_num_for_timestamp() argument 227 GUINT_TO_POINTER (timestamp), in gst_red_history_lost_seq_num_for_timestamp() [all …]
|
/third_party/curl/lib/ |
D | mk-ca-bundle.pl | 457 my @timestamp; 464 push @timestamp, chr(oct); 468 if($timestamp[12] ne "Z") { 474 timegm($timestamp[10] . $timestamp[11], # second 475 $timestamp[8] . $timestamp[9], # minute 476 $timestamp[6] . $timestamp[7], # hour 477 $timestamp[4] . $timestamp[5], # day 478 ($timestamp[2] . $timestamp[3]) - 1, # month 479 "20" . $timestamp[0] . $timestamp[1]); # year
|
/third_party/boost/boost/log/detail/ |
D | timestamp.hpp | 56 class timestamp class 61 explicit timestamp(uint64_t ticks = 0) BOOST_NOEXCEPT : m_ticks(ticks) {} in timestamp() function in boost::aux::timestamp 63 duration operator- (timestamp that) const in operator -() 82 inline timestamp get_timestamp() in get_timestamp() 84 return timestamp(get_tick_count()); in get_timestamp() 89 typedef timestamp (*get_timestamp_t)();
|
/third_party/gstreamer/gstreamer/scripts/ |
D | gst-plot-timeline.py | 45 def __init__(self, timestamp, log): argument 46 self.timestamp = timestamp 63 def __init__(self, timestamp, log): argument 64 BaseMark.__init__(self, timestamp, 91 … timestamp = float (timestr[2]) + (float (timestr[1]) * 60.0) + (float (timestr[0]) * 3600.0) 95 self.syscalls.append (LastMark (timestamp, text)) 97 self.syscalls.append (FirstMark (timestamp, text)) 99 s = AccessMark (timestamp, text) 140 first_timestamp = syscalls[0].timestamp 143 syscall.timestamp -= first_timestamp [all …]
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstcontrolbinding.h | 116 …gboolean (* sync_values) (GstControlBinding *binding, GstObject *object, GstClockTime timestamp, G… 128 GValue * (* get_value) (GstControlBinding *binding, GstClockTime timestamp); 142 …gboolean (* get_value_array) (GstControlBinding *binding, GstClockTime timestamp,GstClockTime inte… 156 …gboolean (* get_g_value_array) (GstControlBinding *binding, GstClockTime timestamp,GstClockTime in… 171 … GstClockTime timestamp, GstClockTime last_sync); 174 GstClockTime timestamp); 176 … gst_control_binding_get_value_array (GstControlBinding *binding, GstClockTime timestamp, 179 … gst_control_binding_get_g_value_array (GstControlBinding *binding, GstClockTime timestamp,
|