Searched refs:timebase (Results 1 - 25 of 84) sorted by path

1234

/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);
H A Doutput_surface.h158 void CommitVSyncParameters(base::TimeTicks timebase,
H A Doutput_surface_client.h33 virtual void CommitVSyncParameters(base::TimeTicks timebase,
H A Doutput_surface_unittest.cc42 void CommitVSyncParametersForTesting(base::TimeTicks timebase, argument
44 CommitVSyncParameters(timebase, interval);
/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 Ddelay_based_time_source.h33 // delays. DelayBasedTimeSource uses base::TimeTicks::Now as its timebase.
43 virtual void SetTimebaseAndInterval(base::TimeTicks timebase,
97 // DelayBasedTimeSource uses base::TimeTicks::HighResNow as its 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
H A Dscheduler.h69 void CommitVSyncParameters(base::TimeTicks timebase,
145 void CommitVSyncParameters(base::TimeTicks timebase,
/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,
H A Ddisplay_client.h21 virtual void CommitVSyncParameters(base::TimeTicks timebase,
/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/cc/trees/
H A Dlayer_tree_host_impl.cc2102 void LayerTreeHostImpl::CommitVSyncParameters(base::TimeTicks timebase, argument
2104 client_->CommitVSyncParameters(timebase, interval);
H A Dlayer_tree_host_impl.h70 virtual void CommitVSyncParameters(base::TimeTicks timebase,
250 virtual void CommitVSyncParameters(base::TimeTicks timebase,
H A Dlayer_tree_host_impl_unittest.cc116 virtual void CommitVSyncParameters(base::TimeTicks timebase,
H A Dsingle_thread_proxy.h80 virtual void CommitVSyncParameters(base::TimeTicks timebase,
H A Dthread_proxy.cc327 void ThreadProxy::CommitVSyncParameters(base::TimeTicks timebase, argument
329 impl().scheduler->CommitVSyncParameters(timebase, interval);
H A Dthread_proxy.h181 virtual void CommitVSyncParameters(base::TimeTicks timebase,
/external/chromium_org/content/browser/compositor/
H A Dbrowser_compositor_output_surface.cc80 base::TimeTicks timebase,
84 CommitVSyncParameters(timebase, interval);
88 base::TimeTicks timebase,
92 vsync_manager_->UpdateVSyncParameters(timebase, interval);
79 OnUpdateVSyncParameters( base::TimeTicks timebase, base::TimeDelta interval) argument
87 OnUpdateVSyncParametersFromGpu( base::TimeTicks timebase, base::TimeDelta interval) argument
H A Dbrowser_compositor_output_surface.h35 virtual void OnUpdateVSyncParameters(base::TimeTicks timebase,
H A Dbrowser_compositor_output_surface_proxy.cc52 base::TimeTicks timebase,
56 surface->OnUpdateVSyncParametersFromGpu(timebase, interval);
50 OnUpdateVSyncParametersOnCompositorThread( int surface_id, base::TimeTicks timebase, base::TimeDelta interval) argument
H A Dbrowser_compositor_output_surface_proxy.h40 base::TimeTicks timebase,
H A Ddelegated_frame_host.cc888 base::TimeTicks timebase,
890 vsync_timebase_ = timebase;
894 host->UpdateVSyncParameters(timebase, interval);
887 OnUpdateVSyncParameters( base::TimeTicks timebase, base::TimeDelta interval) argument

Completed in 4656 milliseconds

1234