HomeSort by: relevance | last modified time | path
    Searched refs:elapsed (Results 1 - 25 of 135) sorted by relevancy

1 2 3 4 5 6

  /src/external/cddl/dtracetoolkit/dist/Bin/
shortlived.d 71 /* record elapsed time for the fork syscall */
72 this->elapsed = vtimestamp - self->fork;
73 procs += this->elapsed;
92 /* record elapsed time for process execution */
93 this->elapsed = vtimestamp - self->start;
94 procs += this->elapsed;
96 /* sum elapsed by process name and ppid */
97 @Times_exec[execname] = sum(this->elapsed/1000000);
98 @Times_ppid[ppid] = sum(this->elapsed/1000000);
sh_flowtime.d 84 this->elapsed = (timestamp - self->last) / 1000;
86 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
94 this->elapsed = (timestamp - self->last) / 1000;
97 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
104 this->elapsed = (timestamp - self->last) / 1000;
106 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
113 this->elapsed = (timestamp - self->last) / 1000;
115 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
sh_wasted.d 3 * sh_wasted.d - measure Bourne shell elapsed times for "wasted" commands.
17 * TIME Total elapsed time for calls (us)
61 this->elapsed = timestamp - self->command;
69 @types_cmd[basename(copyinstr(arg0)), this->path] = sum(this->elapsed);
77 sum(this->elapsed);
89 this->elapsed = (timestamp - self->start) / 1000;
90 printf("Script duration: %d us\n", this->elapsed);
93 printf("\nExternal command elapsed times,\n");
98 printf("\nWasted command elapsed times,\n");
sh_calldist.d 3 * sh_calldist.d - measure Bourne shell elapsed times for types of operation.
13 * This script prints distribution plots of elapsed time for shell
83 this->elapsed = timestamp - self->builtin;
87 quantize(this->elapsed / 1000);
89 self->exclude[self->depth] += this->elapsed;
100 this->elapsed = timestamp - self->command;
104 quantize(this->elapsed / 1000);
106 self->exclude[self->depth] += this->elapsed;
111 printf("Elapsed times (us),\n\n");
114 printf("Exclusive function elapsed times (us),\n\n")
    [all...]
iofile.d 68 this->elapsed = timestamp - self->start;
69 @files[pid, execname, args[2]->fi_pathname] = sum(this->elapsed);
sh_calltime.d 3 * sh_calltime.d - measure Bourne shell elapsed times for types of operation.
17 * TOTAL Total elapsed time for calls (us)
82 this->elapsed = timestamp - self->builtin;
89 @types[this->file, "builtin", this->name] = sum(this->elapsed);
90 @types["-", "total", "-"] = sum(this->elapsed);
92 self->exclude[self->depth] += this->elapsed;
103 this->elapsed = timestamp - self->command;
110 @types[this->file, "cmd", this->name] = sum(this->elapsed);
111 @types["-", "total", "-"] = sum(this->elapsed);
113 self->exclude[self->depth] += this->elapsed;
    [all...]
wpm.d 90 this->elapsed = (timestamp - last) / 1000000;
91 @dist = quantize(this->elapsed);
92 @avg = avg(this->elapsed);
93 @min = min(this->elapsed);
94 @max = max(this->elapsed);
nfswizard.d 62 this->elapsed = timestamp - start[args[0]->b_addr];
63 @maxtime = max(this->elapsed);
64 @avgtime = avg(this->elapsed);
65 @qnztime = quantize(this->elapsed / 1000);
dnlcsnoop.d 17 * TIME Elapsed time for lookup, us
79 /* calculate elapsed time */
80 this->elapsed = (timestamp - self->start) / 1000;
84 pid, execname, this->elapsed, arg1 == 0 ? "N" : "Y",
  /src/external/cddl/dtracetoolkit/dist/Proc/
shortlived.d 71 /* record elapsed time for the fork syscall */
72 this->elapsed = vtimestamp - self->fork;
73 procs += this->elapsed;
92 /* record elapsed time for process execution */
93 this->elapsed = vtimestamp - self->start;
94 procs += this->elapsed;
96 /* sum elapsed by process name and ppid */
97 @Times_exec[execname] = sum(this->elapsed/1000000);
98 @Times_ppid[ppid] = sum(this->elapsed/1000000);
  /src/sys/arch/evbppc/stand/wii/
timer.c 46 int64_t elapsed; local
51 elapsed = val - oval;
53 elapsed = (UINT32_MAX - oval) + val + 1;
55 ticks -= elapsed;
  /src/external/cddl/dtracetoolkit/dist/Shell/
sh_flowtime.d 84 this->elapsed = (timestamp - self->last) / 1000;
86 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
94 this->elapsed = (timestamp - self->last) / 1000;
97 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
104 this->elapsed = (timestamp - self->last) / 1000;
106 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
113 this->elapsed = (timestamp - self->last) / 1000;
115 basename(copyinstr(arg0)), this->elapsed, self->depth * 2, "",
sh_wasted.d 3 * sh_wasted.d - measure Bourne shell elapsed times for "wasted" commands.
17 * TIME Total elapsed time for calls (us)
61 this->elapsed = timestamp - self->command;
69 @types_cmd[basename(copyinstr(arg0)), this->path] = sum(this->elapsed);
77 sum(this->elapsed);
89 this->elapsed = (timestamp - self->start) / 1000;
90 printf("Script duration: %d us\n", this->elapsed);
93 printf("\nExternal command elapsed times,\n");
98 printf("\nWasted command elapsed times,\n");
sh_calldist.d 3 * sh_calldist.d - measure Bourne shell elapsed times for types of operation.
13 * This script prints distribution plots of elapsed time for shell
83 this->elapsed = timestamp - self->builtin;
87 quantize(this->elapsed / 1000);
89 self->exclude[self->depth] += this->elapsed;
100 this->elapsed = timestamp - self->command;
104 quantize(this->elapsed / 1000);
106 self->exclude[self->depth] += this->elapsed;
111 printf("Elapsed times (us),\n\n");
114 printf("Exclusive function elapsed times (us),\n\n")
    [all...]
sh_calltime.d 3 * sh_calltime.d - measure Bourne shell elapsed times for types of operation.
17 * TOTAL Total elapsed time for calls (us)
82 this->elapsed = timestamp - self->builtin;
89 @types[this->file, "builtin", this->name] = sum(this->elapsed);
90 @types["-", "total", "-"] = sum(this->elapsed);
92 self->exclude[self->depth] += this->elapsed;
103 this->elapsed = timestamp - self->command;
110 @types[this->file, "cmd", this->name] = sum(this->elapsed);
111 @types["-", "total", "-"] = sum(this->elapsed);
113 self->exclude[self->depth] += this->elapsed;
    [all...]
  /src/sys/sys/
syscall_stats.h 74 SYSCALL_TIME_UPDATE_PROC(l, u, elapsed = now - (l)->l_syscall_time); \
82 uint32_t elapsed = now - (l)->l_syscall_time; \
84 *(l)->l_syscall_counter += elapsed; \
85 SYSCALL_TIME_UPDATE_PROC(l, s, elapsed); \
95 uint32_t elapsed = now - (l)->l_syscall_time; \
97 *(l)->l_syscall_counter += elapsed; \
99 SYSCALL_TIME_UPDATE_PROC(l, s, elapsed); \
106 uint32_t elapsed = now - (l)->l_syscall_time; \
111 SYSCALL_TIME_UPDATE_PROC(l, u, elapsed); \
113 *(l)->l_syscall_counter += elapsed; \
    [all...]
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
peak_event.h 19 void peak_alloc_event_handler(tsd_t *tsd, uint64_t elapsed);
22 void peak_dalloc_event_handler(tsd_t *tsd, uint64_t elapsed);
  /src/external/bsd/jemalloc/include/jemalloc/internal/
peak_event.h 19 void peak_alloc_event_handler(tsd_t *tsd, uint64_t elapsed);
22 void peak_dalloc_event_handler(tsd_t *tsd, uint64_t elapsed);
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
TestTimes.py 22 if not t.result.elapsed:
26 time = -t.result.elapsed if t.isFailure() else t.result.elapsed
31 times_by_suite[t.suite.exec_root]['/'.join(t.path_in_suite)] = t.result.elapsed
  /src/external/cddl/dtracetoolkit/dist/Disk/
iofile.d 68 this->elapsed = timestamp - self->start;
69 @files[pid, execname, args[2]->fi_pathname] = sum(this->elapsed);
  /src/external/cddl/dtracetoolkit/dist/Misc/
wpm.d 90 this->elapsed = (timestamp - last) / 1000000;
91 @dist = quantize(this->elapsed);
92 @avg = avg(this->elapsed);
93 @min = min(this->elapsed);
94 @max = max(this->elapsed);
  /src/external/bsd/openldap/dist/libraries/liblutil/
meter.c 145 time_t remaining_time, elapsed; local
155 elapsed = now - meter->start_time;
156 if (frac <= 0.0 || elapsed == 0) return 0;
162 (time_t) elapsed,
163 ((double)position) / elapsed);
180 (time_t) elapsed,
232 time_t elapsed,
247 /* |#################### 100.00% eta 1d19h elapsed 23w 7d23h15m12s spd nnnn.n M/s */
285 /* eta and elapsed */
292 rc = lutil_time_string( time_buffer, elapsed, 5)
361 double elapsed; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
timevar.cc 183 def->elapsed.user = 0;
184 def->elapsed.sys = 0;
185 def->elapsed.wall = 0;
211 m_timer->print_row (fp, total, def->name, def->elapsed);
299 /* Zero all elapsed times. */
351 /* Push TIMEVAR onto the timing stack. No further elapsed time is
353 subsequent elapsed time is attributed to TIMEVAR, until it is
385 /* If the stack isn't empty, attribute the current elapsed time to
388 timevar_accumulate (&m_stack->timevar->elapsed, &m_start_time, &now);
411 popped variable must be TIMEVAR. Elapsed time since the tha
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Apps/
nfswizard.d 62 this->elapsed = timestamp - start[args[0]->b_addr];
63 @maxtime = max(this->elapsed);
64 @avgtime = avg(this->elapsed);
65 @qnztime = quantize(this->elapsed / 1000);
  /src/external/cddl/dtracetoolkit/dist/Kernel/
dnlcsnoop.d 17 * TIME Elapsed time for lookup, us
79 /* calculate elapsed time */
80 this->elapsed = (timestamp - self->start) / 1000;
84 pid, execname, this->elapsed, arg1 == 0 ? "N" : "Y",

Completed in 19 milliseconds

1 2 3 4 5 6