Searched defs:time (Results 1 - 4 of 4) sorted by relevance

/art/runtime/base/
H A Dtiming_logger.cc92 // Convert delta time to microseconds so that we don't overflow our counters.
174 uint64_t time = timings_[i].GetTime() - timings_[open_idx].GetTime(); local
175 ret.data_[open_idx].exclusive_time += time;
177 ret.data_[open_idx].total_time += time;
180 // If there is a parent node, subtract from the exclusive time.
183 // total time value later.
184 ret.data_[open_stack.back()].exclusive_time -= time;
208 os << name_ << " [Exclusive time] [Total time]\n";
H A Dtiming_logger.h84 Timing(uint64_t time, const char* name) : time_(time), name_(name) { argument
123 // Each begin split has a total time and exclusive time. Exclusive time is total time - total
124 // time of children nodes.
175 // Return the time points of when each start / end timings start and finish.
185 // Do we want to print the exactly recorded split (true) or round down to the time unit being
/art/runtime/
H A Dtrace.cc54 // u8 start date/time in usec
61 // u4 time delta since start, in usec
66 // u4 time delta since start, in usec
71 // u4 time delta since start, in usec
72 // u4 wall time since start, in usec (when clock == "dual" only)
156 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
190 // Compute an average time taken to measure clocks.
507 // Compute elapsed time.
529 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
629 // First event, record the base time i
630 uint64_t time = thread->GetCpuMicroTime(); local
[all...]
/art/runtime/hprof/
H A Dhprof.cc32 #include <sys/time.h>
34 #include <time.h>
35 #include <time.h>
176 // U4 TIME: number of microseconds since the time stamp in the header
189 int StartNewRecord(FILE* fp, uint8_t tag, uint32_t time) { argument
197 time_ = time;
651 // The current time, in milliseconds since 0:00 GMT, 1/1/70.
660 // U4: high word of the 64-bit time.
664 // U4: low word of the 64-bit time.
666 fwrite(buf, 1, sizeof(uint32_t), header_fp_); // xxx fix the time
[all...]

Completed in 283 milliseconds