Searched defs:clock (Results 1 - 25 of 121) sorted by relevance

12345

/external/libbrillo/brillo/message_loops/
H A Dmock_message_loop.h30 explicit MockMessageLoop(base::SimpleTestClock* clock) argument
31 : fake_loop_(clock) {
H A Dfake_message_loop.cc12 FakeMessageLoop::FakeMessageLoop(base::SimpleTestClock* clock) argument
13 : test_clock_(clock) {
102 // Advance the clock to the task firing time, if needed.
/external/python/cpython2/Demo/turtle/
H A Dtdemo_tree.py19 from time import clock namespace
55 a=clock()
57 b=clock()
H A Dtdemo_fractalcurves.py15 from time import sleep, clock namespace
91 ta=clock()
112 tb=clock()
122 ta=clock()
130 tb=clock()
H A Dtdemo_wikipedia.py17 from time import clock, sleep namespace
47 at = clock()
49 et = clock()
54 at = clock()
58 et = clock()
H A Dtdemo_bytedesign.py27 from time import clock namespace
154 at = clock()
156 et = clock()
H A Dtdemo_penrose.py20 from time import clock, sleep namespace
140 a = clock()
143 b = clock()
146 c = clock()
157 a = clock()
159 b = clock()
/external/webrtc/webrtc/system_wrappers/source/
H A Dclock_unittest.cc11 #include "webrtc/system_wrappers/include/clock.h"
18 Clock* clock = Clock::GetRealTimeClock(); local
21 clock->CurrentNtp(seconds, fractions);
22 int64_t milliseconds = clock->CurrentNtpInMilliseconds();
/external/libmojo/mojo/message_pump/
H A Dtime_helper.cc20 void SetTickClockForTest(base::TickClock* clock) { argument
21 tick_clock = clock;
/external/tpm2/
H A DClock.c14 // Function clock() does not provide accurate wall clock time on linux, let's
17 // Return current wall clock modulo milliseconds.
18 static UINT64 clock(void) function
33 // Set the current clock time as initial time. This function is called at a power on event to reset the clock
41 // so here the measurement of clock() is in millisecond.
42 s_initClock = clock();
58 unsigned long long currentClock = clock();
76 unsigned long long currentClock = clock();
[all...]
/external/webrtc/webrtc/voice_engine/
H A Dnetwork_predictor.cc16 NetworkPredictor::NetworkPredictor(Clock* clock) argument
17 : clock_(clock),
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.h33 ClockElem clock[kClockCount]; member in union:__tsan::ClockBlock::__anon3514
43 // The clock that lives in sync variables (mutexes, atomics, etc).
80 // The clock that lives in threads.
H A Dtsan_sync.h45 // The clock is placed last, so that it is situated on a different cache line
47 SyncClock clock; member in struct:__tsan::SyncVar
/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Daudio_coding_module.cc17 #include "webrtc/system_wrappers/include/clock.h"
26 config.clock = Clock::GetRealTimeClock();
30 AudioCodingModule* AudioCodingModule::Create(int id, Clock* clock) { argument
33 config.clock = clock;
/external/webrtc/webrtc/modules/audio_coding/include/
H A Daudio_coding_module.h22 #include "webrtc/system_wrappers/include/clock.h"
64 Config() : id(0), neteq_config(), clock(Clock::GetRealTimeClock()) {
72 Clock* clock; member in struct:webrtc::AudioCodingModule::Config
78 // The second method is used for testing where a simulated clock can be
79 // injected into ACM. ACM will take the ownership of the object clock and
83 static AudioCodingModule* Create(int id, Clock* clock);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dtime_util.h25 // returned by the specified clock.
26 inline uint32_t CurrentRtp(const Clock& clock, uint32_t freq) { argument
27 return NtpToRtp(NtpTime(clock), freq);
/external/webrtc/webrtc/test/
H A Dvideo_capturer.cc36 Clock* clock) {
45 FrameGeneratorCapturer::Create(input, width, height, fps, clock);
32 Create(VideoCaptureInput* input, size_t width, size_t height, int fps, Clock* clock) argument
/external/google-breakpad/src/processor/
H A Dlogging.cc57 time_t clock; local
58 time(&clock);
61 localtime_s(&tm_struct, &clock);
63 localtime_r(&clock, &tm_struct);
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dsend_time_history.cc17 SendTimeHistory::SendTimeHistory(Clock* clock, int64_t packet_age_limit) argument
18 : clock_(clock),
/external/webrtc/webrtc/modules/remote_bitrate_estimator/tools/
H A Dbwe_rtp.cc71 webrtc::Clock* clock,
120 new webrtc::RemoteBitrateEstimatorAbsSendTime(observer, clock);
126 new webrtc::RemoteBitrateEstimatorSingleStream(observer, clock);
69 ParseArgsAndSetupEstimator(int argc, char** argv, webrtc::Clock* clock, webrtc::RemoteBitrateObserver* observer, webrtc::test::RtpFileReader** rtp_reader, webrtc::RtpHeaderParser** parser, webrtc::RemoteBitrateEstimator** estimator, std::string* estimator_used) argument
/external/webrtc/webrtc/system_wrappers/include/
H A Dntp_time.h14 #include "webrtc/system_wrappers/include/clock.h"
21 explicit NtpTime(const Clock& clock) { argument
22 clock.CurrentNtp(seconds_, fractions_);
30 void SetCurrent(const Clock& clock) { argument
31 clock.CurrentNtp(seconds_, fractions_);
/external/webrtc/webrtc/video/
H A Dvie_remb.cc30 VieRemb::VieRemb(Clock* clock) argument
31 : clock_(clock),
/external/drm_hwcomposer/
H A Ddrmmode.cpp28 clock_(m->clock),
46 return clock_ == m.clock && h_display_ == m.hdisplay &&
55 m->clock = clock_;
80 uint32_t DrmMode::clock() const { function in class:android::DrmMode
/external/junit/src/main/java/org/junit/rules/
H A DStopwatch.java80 private final Clock clock; field in class:Stopwatch
88 Stopwatch(Clock clock) { argument
89 this.clock = clock;
132 currentEndNanos = clock.nanoTime();
139 startNanos = clock.nanoTime();
144 endNanos = clock.nanoTime();
/external/mdnsresponder/mDNSWindows/
H A DPosixCompat.c124 localtime_r( const time_t * clock, struct tm * result ) argument
126 localtime_s( result, clock );

Completed in 1389 milliseconds

12345