/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gstsegment.c | 54 guint64 cstart, cstop; in GST_START_TEST() local 73 res = gst_segment_clip (&segment, GST_FORMAT_BYTES, 0, 50, &cstart, &cstop); in GST_START_TEST() 77 res = gst_segment_clip (&segment, GST_FORMAT_BYTES, 50, 100, &cstart, &cstop); in GST_START_TEST() 81 res = gst_segment_clip (&segment, GST_FORMAT_BYTES, 50, 150, &cstart, &cstop); in GST_START_TEST() 83 fail_unless_equals_uint64 (cstart, 100); in GST_START_TEST() 88 100, 150, &cstart, &cstop); in GST_START_TEST() 90 fail_unless_equals_uint64 (cstart, 100); in GST_START_TEST() 94 res = gst_segment_clip (&segment, GST_FORMAT_BYTES, 90, 90, &cstart, &cstop); in GST_START_TEST() 99 100, 100, &cstart, &cstop); in GST_START_TEST() 101 fail_unless_equals_uint64 (cstart, 100); in GST_START_TEST() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | audio.c | 138 guint64 start, stop, cstart, cstop, diff; in gst_audio_buffer_clip() local 144 start, stop, &cstart, &cstop)) { in gst_audio_buffer_clip() 146 diff = cstart - start; in gst_audio_buffer_clip() 148 timestamp = cstart; in gst_audio_buffer_clip() 176 guint64 start, stop, cstart, cstop, diff; in gst_audio_buffer_clip() local 184 start, stop, &cstart, &cstop)) { in gst_audio_buffer_clip() 186 diff = cstart - start; in gst_audio_buffer_clip() 188 offset = cstart; in gst_audio_buffer_clip() 190 timestamp = gst_util_uint64_scale (cstart, GST_SECOND, rate); in gst_audio_buffer_clip()
|
/third_party/gstreamer/gstplugins_bad/gst/segmentclip/ |
D | gstvideosegmentclip.c | 99 guint64 cstart, cstop; in gst_video_segment_clip_clip_buffer() local 133 timestamp + duration, &cstart, &cstop); in gst_video_segment_clip_clip_buffer() 135 if (timestamp != cstart || timestamp + duration != cstop) { in gst_video_segment_clip_clip_buffer() 138 GST_BUFFER_TIMESTAMP (*outbuf) = cstart; in gst_video_segment_clip_clip_buffer() 139 GST_BUFFER_DURATION (*outbuf) = cstop - cstart; in gst_video_segment_clip_clip_buffer()
|
/third_party/mesa3d/src/getopt/ |
D | getopt_long.c | 125 int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos; in permute_args() local 137 cstart = panonopt_end+i; in permute_args() 138 pos = cstart; in permute_args() 146 ((char **) nargv)[pos] = nargv[cstart]; in permute_args() 148 ((char **)nargv)[cstart] = swap; in permute_args()
|
/third_party/libsnd/tests/ |
D | cue_test.c | 102 int cstart = info->cue_points[i].chunk_start; in print_cues() local 108 if (cstart != 0 || bstart != 0) in print_cues() 110 i, t, indx, pos, offset, cstart, bstart, name); in print_cues()
|
/third_party/mesa3d/src/freedreno/rnn/ |
D | util.h | 94 int cstart; member 100 #define LOC_FORMAT(loc, str) "%s:%d.%d-%d.%d: " str, (loc).file, (loc).lstart, (loc).cstart, (loc).…
|
/third_party/gstreamer/gstplugins_good/ext/dv/ |
D | gstdvdec.c | 426 guint64 cstart = GST_CLOCK_TIME_NONE, cstop = GST_CLOCK_TIME_NONE; in gst_dvdec_chain() local 444 &cstart, &cstop)))) in gst_dvdec_chain() 530 if (GST_CLOCK_TIME_IS_VALID (cstart)) { in gst_dvdec_chain() 531 GST_BUFFER_TIMESTAMP (outbuf) = cstart; in gst_dvdec_chain() 533 GST_BUFFER_DURATION (outbuf) = cstop - cstart; in gst_dvdec_chain()
|
/third_party/gstreamer/gstplugins_base/gst/encoding/ |
D | gstsmartencoder.c | 388 guint64 cstart, cstop; in gst_smart_encoder_push_pending_gop() local 403 self->gop_stop, &cstart, &cstop)) { in gst_smart_encoder_push_pending_gop() 417 if ((cstart != self->gop_start) in gst_smart_encoder_push_pending_gop() 422 GST_TIME_FORMAT " - %" GST_SEGMENT_FORMAT, GST_TIME_ARGS (cstart), in gst_smart_encoder_push_pending_gop() 454 " to %" GST_TIME_FORMAT, GST_TIME_ARGS (cstart), GST_TIME_ARGS (cstop)); in gst_smart_encoder_push_pending_gop()
|
/third_party/gstreamer/gstplugins_bad/gst/dvbsuboverlay/ |
D | gstdvbsuboverlay.c | 1008 guint64 cstart, cstop; in gst_dvbsub_overlay_chain_video() local 1035 start, stop, &cstart, &cstop); in gst_dvbsub_overlay_chain_video() 1043 GST_BUFFER_TIMESTAMP (buffer) = cstart; in gst_dvbsub_overlay_chain_video() 1045 GST_BUFFER_DURATION (buffer) = cstop - cstart; in gst_dvbsub_overlay_chain_video() 1049 cstart); in gst_dvbsub_overlay_chain_video()
|
/third_party/gstreamer/gstplugins_good/gst/imagefreeze/ |
D | gstimagefreeze.c | 894 guint64 cstart, cstop; in gst_image_freeze_src_loop() local 1087 timestamp_end, &cstart, &cstop); in gst_image_freeze_src_loop() 1090 self->segment.position = cstart; in gst_image_freeze_src_loop() 1106 GST_BUFFER_PTS (buffer) = cstart; in gst_image_freeze_src_loop() 1107 GST_BUFFER_DURATION (buffer) = cstop - cstart; in gst_image_freeze_src_loop()
|
/third_party/gstreamer/gstreamer/libs/gst/base/ |
D | gstbasesink.c | 2017 GstStepInfo * current, guint64 * cstart, guint64 * cstop, guint64 * rstart, in handle_stepping() argument 2041 if (segment->start == *cstart) in handle_stepping() 2070 *cstart = in handle_stepping() 2082 GST_TIME_ARGS (*cstart), GST_TIME_ARGS (*rstart)); in handle_stepping() 2126 guint64 cstart, cstop; /* clipped raw timestamps */ in gst_base_sink_get_sync_times() local 2225 start, stop, &cstart, &cstop))) { in gst_base_sink_get_sync_times() 2230 cstart = segment->stop; in gst_base_sink_get_sync_times() 2233 cstart = segment->start; in gst_base_sink_get_sync_times() 2241 if (G_UNLIKELY (start != cstart || stop != cstop)) { in gst_base_sink_get_sync_times() 2243 ", stop: %" GST_TIME_FORMAT, GST_TIME_ARGS (cstart), in gst_base_sink_get_sync_times() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | gstvideoencoder.c | 1538 guint64 start, stop, cstart, cstop; in gst_video_encoder_chain() local 1568 GST_FORMAT_TIME, start, stop, &cstart, &cstop)) { in gst_video_encoder_chain() 1575 duration = cstop - cstart; in gst_video_encoder_chain() 1581 if (cstart < priv->min_pts) { in gst_video_encoder_chain() 1582 priv->time_adjustment = priv->min_pts - cstart; in gst_video_encoder_chain() 1587 cstart += priv->time_adjustment; in gst_video_encoder_chain() 1592 frame = gst_video_encoder_new_frame (encoder, buf, cstart, in gst_video_encoder_chain() 1604 cstart); in gst_video_encoder_chain()
|
D | gstvideodecoder.c | 3711 guint64 cstart, cstop; in gst_video_decoder_clip_and_push_buf() local 3744 if (gst_segment_clip (segment, GST_FORMAT_TIME, start, stop, &cstart, &cstop)) { in gst_video_decoder_clip_and_push_buf() 3745 GST_BUFFER_PTS (buf) = cstart; in gst_video_decoder_clip_and_push_buf() 3748 GST_BUFFER_DURATION (buf) = cstop - cstart; in gst_video_decoder_clip_and_push_buf() 3754 GST_TIME_ARGS (cstart), in gst_video_decoder_clip_and_push_buf() 3796 && GST_CLOCK_TIME_IS_VALID (cstart)) { in gst_video_decoder_clip_and_push_buf() 3798 gst_segment_to_running_time (segment, GST_FORMAT_TIME, cstart); in gst_video_decoder_clip_and_push_buf() 3805 gst_video_decoder_post_qos_drop (decoder, cstart); in gst_video_decoder_clip_and_push_buf()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/math/ |
D | BigDecimal.java | 2496 int cstart = 0; in longValueExact() local 2509 cstart = 0; in longValueExact() 2511 cstart = lodigit + 1; in longValueExact() 2512 if ((!(allzero(mant, cstart)))) in longValueExact()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/math/ |
D | BigDecimal.java | 2437 int cstart = 0; in longValueExact() local 2450 cstart = 0; in longValueExact() 2452 cstart = lodigit + 1; in longValueExact() 2453 if ((!(allzero(mant, cstart)))) in longValueExact()
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/ |
D | gstdeinterlace.c | 469 guint64 cstart, cstop; in gst_deinterlace_clip_buffer() local 487 start, stop, &cstart, &cstop))) in gst_deinterlace_clip_buffer() 490 GST_BUFFER_TIMESTAMP (buffer) = cstart; in gst_deinterlace_clip_buffer() 492 GST_BUFFER_DURATION (buffer) = cstop - cstart; in gst_deinterlace_clip_buffer()
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | qtdemux.c | 5476 guint64 start, stop, cstart, cstop, diff; in gst_qtdemux_clip_buffer() local 5520 GST_FORMAT_TIME, start, stop, &cstart, &cstop))) in gst_qtdemux_clip_buffer() 5524 diff = cstart - start; in gst_qtdemux_clip_buffer() 5536 G_GUINT64_FORMAT " bytes", GST_TIME_ARGS (cstart), diff); in gst_qtdemux_clip_buffer()
|