Searched refs:timebase (Results 26 - 50 of 84) sorted by relevance

1234

/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h179 static mach_timebase_info_data_t timebase; local
180 if (timebase.denom == 0) {
181 // Get the timebase if this is the first time we run.
183 kern_return_t retval = mach_timebase_info(&timebase);
190 // Use timebase to convert absolute time tick units into nanoseconds.
191 result._ticks = mach_absolute_time() * timebase.numer / timebase.denom;
/external/chromium_org/content/browser/compositor/
H A Dsoftware_browser_compositor_output_surface_unittest.cc29 void set_timebase(base::TimeTicks timebase) { timebase_ = timebase; } argument
H A Dbrowser_compositor_output_surface.h35 virtual void OnUpdateVSyncParameters(base::TimeTicks timebase,
H A Donscreen_display_client.h43 virtual void CommitVSyncParameters(base::TimeTicks timebase,
H A Dsurface_display_output_surface.h35 void ReceivedVSyncParameters(base::TimeTicks timebase,
/external/libvpx/libvpx/test/
H A Dvideo_source.h74 // Get the timebase for the stream
75 virtual vpx_rational_t timebase() const = 0;
112 virtual vpx_rational_t timebase() const { function in class:libvpx_test::DummyVideoSource
H A Di420_video_source.h74 virtual vpx_rational_t timebase() const { function in class:libvpx_test::I420VideoSource
H A Dy4m_video_source.h73 virtual vpx_rational_t timebase() const { function in class:libvpx_test::Y4mVideoSource
/external/chromium_org/cc/test/
H A Dfake_layer_tree_host_impl_client.h18 virtual void CommitVSyncParameters(base::TimeTicks timebase,
H A Dfake_output_surface_client.h33 virtual void CommitVSyncParameters(base::TimeTicks timebase,
/external/chromium_org/content/browser/renderer_host/
H A Ddisplay_link_mac.h27 base::TimeTicks* timebase,
H A Ddisplay_link_mac.cc85 base::TimeTicks* timebase, base::TimeDelta* interval) {
92 *timebase = timebase_;
84 GetVSyncParameters( base::TimeTicks* timebase, base::TimeDelta* interval) argument
/external/chromium_org/mojo/services/surfaces/
H A Dsurfaces_impl.h57 virtual void CommitVSyncParameters(base::TimeTicks timebase,
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py388 def TimeEventStr (self, timebase):
389 return '[%s]: %s' % (timebase.ConvertTicksToStr(self.ticks), self.__str__())
955 def DumpEvents (self, output, timebase):
958 output.write('%s\n' % event.TimeEventStr(timebase))
961 midi_file_logger.debug(event.TimeEventStr(timebase))
983 tick_warning_level = stream.timebase.ppqn * LARGE_TICK_WARNING
1057 stream.Warning(' [%s]: %s' % (stream.timebase.ConvertTicksToStr(event.ticks), event.__str__()))
1077 # stream.Warning(' [%s]: %s' % (stream.timebase.ConvertTicksToStr(event.ticks), event.__str__()))
1195 controller_events.DumpEvents(None, self.stream.timebase)
1219 midi_file_logger.debug('Trim: trimming note that extends past end %s' % event.TimeEventStr(self.stream.timebase))
[all...]
/external/chromium_org/cc/surfaces/
H A Ddisplay.cc143 void Display::CommitVSyncParameters(base::TimeTicks timebase, argument
145 client_->CommitVSyncParameters(timebase, interval);
H A Ddisplay.h55 virtual void CommitVSyncParameters(base::TimeTicks timebase,
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvideo_source.h124 // Get the timebase for the stream
125 virtual vpx_rational_t timebase() const = 0;
162 virtual vpx_rational_t timebase() const { function in class:libvpx_test::DummyVideoSource
H A Di420_video_source.h74 virtual vpx_rational_t timebase() const { function in class:libvpx_test::I420VideoSource
H A Dy4m_video_source.h79 virtual vpx_rational_t timebase() const { function in class:libvpx_test::Y4mVideoSource
/external/chromium_org/content/browser/media/capture/
H A Dvideo_capture_oracle.cc400 // Compute the |timebase| upon which to determine the |frame_timestamp_|.
403 // the timebase by a small amount to spread out the entire correction over
410 base::TimeTicks timebase = event_time - sequence_offset_ - advancement; local
412 const base::TimeDelta drift = recorded_frame_timestamp_ - timebase;
417 timebase = recorded_frame_timestamp_ - (drift / correct_over_num_frames);
432 frame_timestamp_ = timebase + sequence_offset_;
/external/chromium_org/cc/scheduler/
H A Ddelay_based_time_source.cc23 // fraction of an interval. This helps account for jitter in the timebase as
39 // the base::TimeTicks::HighResNow as the timebase.
60 // the base::TimeTicks::Now as the timebase.
134 void DelayBasedTimeSource::SetTimebaseAndInterval(base::TimeTicks timebase, argument
138 next_parameters_.tick_target = timebase;
161 // fmod just happens to return something near zero. Assuming the timebase
165 std::abs((timebase - current_parameters_.tick_target).InSecondsF());
226 // Thus, we compute the new_target based on the old timebase:
232 // For the really late delay, we we move to the next logical tick. The timebase
H A Dscheduler.cc31 base::TimeTicks timebase,
33 time_source_->SetTimebaseAndInterval(timebase, interval);
139 void Scheduler::CommitVSyncParameters(base::TimeTicks timebase, argument
146 synthetic_begin_frame_source_->CommitVSyncParameters(timebase, interval);
271 base::TimeTicks timebase = std::max(begin_impl_frame_args_.frame_time, local
273 int64 intervals = 1 + ((now - timebase) / begin_impl_frame_args_.interval);
274 return timebase + (begin_impl_frame_args_.interval * intervals);
30 CommitVSyncParameters( base::TimeTicks timebase, base::TimeDelta interval) argument
/external/chromium_org/ui/gl/
H A Dgl_surface_win.cc76 base::TimeTicks timebase;
78 // QPC value provided by DWM into the low-resolution timebase, which
79 // would be error prone and jittery. As a fallback, we assume the timebase
82 timebase = gfx::FrameTime::FromQPCValue(
93 callback.Run(timebase, interval);
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtimeline_viewport.js268 set gridTimebase(timebase) {
269 if (this.gridTimebase_ == timebase)
271 this.gridTimebase_ = timebase;
/external/chromium_org/cc/output/
H A Doutput_surface.cc74 void OutputSurface::CommitVSyncParameters(base::TimeTicks timebase, argument
78 "timebase",
79 (timebase - base::TimeTicks()).InSecondsF(),
82 client_->CommitVSyncParameters(timebase, interval);

Completed in 468 milliseconds

1234