Searched defs:spent (Results 1 - 6 of 6) sorted by relevance

/external/ltrace/
H A Dsummary.c155 summary_account_call(struct library_symbol *libsym, struct timedelta spent) argument
192 if (st->tv.tv_usec + spent.tm.tv_usec > 1000000) {
193 st->tv.tv_usec += spent.tm.tv_usec - 1000000;
196 st->tv.tv_usec += spent.tm.tv_usec;
199 st->tv.tv_sec += spent.tm.tv_sec;
H A Dhandle_event.c471 struct timedelta spent[proc->callstack_depth]; local
476 spent[i] = calc_time_spent(elem->enter_time);
492 summary_account_call(libsym, spent[i]);
526 bool left, struct timedelta *spent)
529 assert(spent == NULL);
537 summary_account_call(&syscall, *spent);
539 output_right(tof, proc, &syscall, spent);
554 struct timedelta *spent)
556 output_syscall(proc, name, LT_TOF_SYSCALLR, false, spent);
628 struct timedelta spent local
525 output_syscall(struct process *proc, const char *name, enum tof tof, bool left, struct timedelta *spent) argument
553 output_syscall_right(struct process *proc, const char *name, struct timedelta *spent) argument
661 struct timedelta spent = calc_time_spent(elem->enter_time); local
[all...]
H A Doutput.c640 struct timedelta *spent)
706 assert(spent != NULL);
708 (unsigned long) spent->tm.tv_sec,
709 (int) spent->tm.tv_usec);
639 output_right(enum tof type, struct process *proc, struct library_symbol *libsym, struct timedelta *spent) argument
/external/fio/
H A Dbackend.c145 unsigned long spent; local
172 spent = mtime_since(&td->lastrate[ddir], now);
173 if (spent < td->o.ratecycle)
185 if (spent)
186 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
207 if (spent)
208 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
1717 uint64_t spent; local
1815 spent = utime_since_genesis();
1817 if (td->o.start_delay > spent)
[all...]
H A Dstat.c1794 unsigned long spent, rate; local
1799 spent = mtime_since(&td->bw_sample_time, t);
1800 if (spent < td->o.bw_avg_time)
1813 if (spent)
1814 rate = delta * 1000 / spent / 1024;
1833 unsigned long spent, iops; local
1838 spent = mtime_since(&td->iops_sample_time, t);
1839 if (spent < td->o.iops_avg_time)
1852 if (spent)
1853 iops = (delta * 1000) / spent;
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dtransform.c3101 long spent, child, total, end; local
3106 spent = total - child;
3107 if (spent <= 0) {
3112 xsltCalibrateAdjust(spent);
3113 spent = 0;
3116 templ->time += spent;

Completed in 1135 milliseconds