HomeSort by relevance Sort by last modified time
    Searched defs:Now (Results 1 - 25 of 29) sorted by null

1 2

  /external/google-benchmark/src/
cycleclock.h 56 inline BENCHMARK_ALWAYS_INLINE int64_t Now() {
walltime.cc 69 WallTime Now();
131 WallTime WallTimeImp::Now() {
132 WallTime now = 0.0; local
137 ct = cycleclock::Now();
148 now = Slow();
149 } while (cycleclock::Now() - ct > max_interval_cycles_);
150 // We are now sure that "now" and "result" were produced within
153 SetDrift(static_cast<float>(now - result));
155 return now;
192 auto now = Clock::now().time_since_epoch(); local
229 std::time_t now = Clock::to_time_t(Clock::now()); local
    [all...]
  /external/libchrome/base/time/
default_clock.cc 11 Time DefaultClock::Now() {
12 return Time::Now();
time_mac.cc 31 // now - KERN_BOOTTIME to get a time difference that is not impacted by clock
39 base::TimeDelta time_difference = base::Time::Now() -
134 Time Time::Now() {
164 // Just use Now() because Now() returns the system time.
165 return Now();
222 TimeTicks TimeTicks::Now() {
232 ThreadTicks ThreadTicks::Now() {
time_posix.cc 129 // function for TimeTicks::Now() on Mac OS X.
151 Time Time::Now() {
170 // Just use Now() because Now() returns the system time.
171 return Now();
310 TimeTicks TimeTicks::Now() {
320 ThreadTicks ThreadTicks::Now() {
  /external/libweave/third_party/chromium/base/time/
default_clock.cc 11 Time DefaultClock::Now() {
12 return Time::Now();
time_posix.cc 109 // function for TimeTicks::Now() on Mac OS X.
131 Time Time::Now() {
150 // Just use Now() because Now() returns the system time.
151 return Now();
290 TimeTicks TimeTicks::Now() {
300 ThreadTicks ThreadTicks::Now() {
  /external/libchrome/base/test/
simple_test_clock.cc 13 Time SimpleTestClock::Now() {
23 void SimpleTestClock::SetNow(Time now) {
25 now_ = now;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Now.java 19 * A {@link NowOrLater} object that is always ready now.
21 public class Now<C> implements NowOrLater<C> {
25 public Now(C value) {
  /external/libchrome/base/profiler/
tracked_time.cc 54 TrackedTime TrackedTime::Now() {
55 return TrackedTime(base::TimeTicks::Now());
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_time.py 212 def Now():
  /external/v8/src/base/platform/
elapsed-timer.h 25 start_ticks_ = Now();
57 TimeTicks ticks = Now();
69 TimeDelta elapsed = Now() - start_ticks_;
83 static V8_INLINE TimeTicks Now() {
84 TimeTicks now = TimeTicks::HighResolutionNow(); local
85 DCHECK(!now.IsNull());
86 return now;
time.cc 155 Time Now() {
186 return TimeTicks::Now();
206 Time Time::Now() {
207 return clock.Pointer()->Now();
255 Time Time::Now() {
265 return Now();
370 virtual int64_t Now() = 0;
411 int64_t Now() override {
412 LARGE_INTEGER now; variable
413 BOOL result = QueryPerformanceCounter(&now);
454 uint32_t now = static_cast<uint32_t>(timeGetTime()); variable
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
tick_util.h 44 static TickTime Now();
46 // Now in the time domain in ms.
49 // Now in the time domain in us.
158 inline TickTime TickTime::Now() {
  /frameworks/compile/mclinker/include/mcld/MC/
ZOption.h 39 Now,
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_device.cc 260 uint64_t start_in_sec = Now();
287 uint64_t end_in_sec = Now();
347 // so disabling this for now until we get a fix into the upstream driver.
819 uint64_t V4L2Device::Now() {
  /external/libweave/src/privet/
auth_manager.cc 324 const base::Time now = Now(); local
325 TimestampCaveat issued{now};
333 ExpirationCaveat expiration{now + ttl};
335 access_secret_, now,
350 const base::Time now = Now(); local
353 !VerifyMacaroon(access_secret_, macaroon, now, &result, error)) {
366 CHECK_GE(FromJ2000Time(result.expiration_time), now); local
432 const base::Time now = Now() local
471 const base::Time now = Now(); local
511 CHECK_GE(FromJ2000Time(result.expiration_time), now); local
555 const base::Time now = Now(); local
    [all...]
  /external/pdfium/xfa/src/fgas/src/localization/
fx_datetime.cpp 140 void CFX_Unitime::Now() {
  /prebuilts/go/darwin-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 181 func Now() Time {
182 var now Time
183 return now
189 PublicTime: Now(),
  /prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 181 func Now() Time {
182 var now Time
183 return now
189 PublicTime: Now(),
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 504 auto Now = llvm::TimeRecord::getCurrentTime(true);
506 *Bucket += Now;
508 *NewBucket -= Now;
783 // Now it can still be that we have an alias template.
    [all...]
  /external/libchrome/base/
tracked_objects.cc 39 // Control whether an alternate time source (Now() function) is supported by
42 // clock) to be able to provide a thread-specific Now() function. Without this
351 random_number_ ^= (Now() - TrackedTime()).InMilliseconds();
497 // Lock since the map may get relocated now, and other threads sometimes
533 base::AutoLock lock(map_lock_); // Lock as the map may get relocated now.
720 // Perform the "real" TLS initialization now, and leave it intact through
777 TrackedTime ThreadData::Now() {
781 return TrackedTime::Now();
796 // now.
    [all...]
  /external/webrtc/webrtc/p2p/base/
pseudotcp.cc 204 uint32_t PseudoTcp::Now() {
223 uint32_t now = Now(); local
246 m_lastrecv = m_lastsend = m_lasttraffic = now;
287 void PseudoTcp::NotifyClock(uint32_t now) {
292 if (m_rto_base && (rtc::TimeDiff(m_rto_base + m_rx_rto, now) <= 0)) {
301 << ") (now: " << now
305 if (!transmit(m_slist.begin(), now)) {
318 m_rto_base = now;
519 uint32_t now = Now(); local
656 uint32_t now = Now(); local
1034 uint32_t now = Now(); local
    [all...]
  /prebuilts/go/darwin-x86/src/time/
time.go 349 // The week number is now correct under the assumption
506 // u is now integer seconds
510 // u is now integer minutes
517 // u is now integer hours
642 // It is shorthand for time.Now().Sub(t).
644 return Now().Sub(t)
778 func now() (sec int64, nsec int32) func
780 // Now returns the current local time.
781 func Now() Time {
782 sec, nsec := now()
    [all...]
  /prebuilts/go/linux-x86/src/time/
time.go 349 // The week number is now correct under the assumption
506 // u is now integer seconds
510 // u is now integer minutes
517 // u is now integer hours
642 // It is shorthand for time.Now().Sub(t).
644 return Now().Sub(t)
778 func now() (sec int64, nsec int32) func
780 // Now returns the current local time.
781 func Now() Time {
782 sec, nsec := now()
    [all...]

Completed in 754 milliseconds

1 2