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

  /external/chromium/base/
time_mac.cc 49 Time Time::Now() {
50 CFAbsoluteTime now = local
52 return Time(static_cast<int64>(now * kMicrosecondsPerSecond) +
58 // Just use Now() because Now() returns the system time.
59 return Now();
104 TimeTicks TimeTicks::Now() {
136 return Now();
time_posix.cc 20 // function for TimeTicks::Now() on Mac OS X.
44 Time Time::Now() {
59 // Just use Now() because Now() returns the system time.
60 return Now();
153 TimeTicks TimeTicks::Now() {
175 return Now();
time_win.cc 86 initial_ticks = TimeTicks::Now();
102 Time Time::Now() {
117 TimeTicks ticks = TimeTicks::Now();
239 // We use timeGetTime() to implement TimeTicks::Now(). This can be problematic
242 // rollover ourselves, which works if TimeTicks::Now() is called at least every
254 TimeDelta Now() {
258 DWORD now = tick_function(); local
259 if (now < last_seen_)
261 last_seen_ = now;
262 return TimeDelta::FromMilliseconds(now) + rollover_
328 int64 now = UnreliableNow(); local
354 LARGE_INTEGER now; local
    [all...]
  /external/qemu/
trace.c 111 uint64 Now() {
307 // Record the start time in the header now.
441 start_time = Now();
527 end_time = Now();
783 /* or in co-processor related ones. For now, only return 1 cycle */
    [all...]

Completed in 2328 milliseconds