Searched defs:elapsed (Results 1 - 25 of 50) sorted by relevance

12

/external/icu4c/test/perf/ucnvavailperf/
H A Ducnvavailperf.cpp117 double elapsed = utimer_getElapsedSeconds(&start_time); local
119 printf("ucnv_countAvailable() took %g seconds to figure this out.\n", elapsed);
/external/srec/portable/src/
H A Dpcputimer.c37 asr_uint32_t elapsed; member in struct:PCPUTimer_t
55 tmp->elapsed = 0;
69 * Starts the timer. This sets the reference time from which all new elapsed
70 * time are computed. This does not reset the elapsed time to 0. This is
110 timer->elapsed =
119 * Returns the timer elapsed time. If the Timer is in the stopped state,
122 * elapsed time since the last time PCPUTimerStart() was called.
124 ESR_ReturnCode PCPUTimerGetElapsed(PCPUTimer *timer, asr_uint32_t *elapsed) argument
126 if (timer == NULL || elapsed == NULL) return ESR_INVALID_ARGUMENT;
138 *elapsed
169 asr_uint32_t elapsed; member in struct:PCPUTimer_t
221 PCPUTimerGetElapsed(PCPUTimer *timer, asr_uint32_t *elapsed) argument
[all...]
H A Dptimer.c38 LARGE_INTEGER elapsed; member in struct:PTimer_t
64 tmp->elapsed.QuadPart = 0;
77 * Starts the timer. This sets the reference time from which all new elapsed
78 * time are computed. This does not reset the elapsed time to 0. This is
99 timer->elapsed.QuadPart += now.QuadPart - timer->RefTime.QuadPart;
106 * Returns the timer elapsed time. If the Timer is in the stopped state,
109 * elapsed time since the last time PTimerStart() was called.
111 ESR_ReturnCode PTimerGetElapsed(PTimer *timer, asr_uint32_t* elapsed) argument
113 if (timer == NULL || elapsed == NULL)
120 *elapsed
159 asr_uint32_t elapsed; member in struct:PTimer_t
232 PTimerGetElapsed(PTimer *timer, asr_uint32_t* elapsed) argument
[all...]
/external/stlport/test/unit/cppunit/
H A Dcppunit_timer.h77 LARGE_INTEGER elapsed; local
78 elapsed.HighPart = m_stop.HighPart - m_start.HighPart;
79 elapsed.LowPart = m_stop.LowPart - m_start.LowPart;
80 return (double)elapsed.QuadPart / (double)m_frequency.QuadPart * 1000;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dtime.cc70 uint32 TimeAfter(int32 elapsed) { argument
71 ASSERT(elapsed >= 0);
72 ASSERT(static_cast<uint32>(elapsed) < HALF);
73 return Time() + elapsed;
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_timer.hh68 double elapsed() { function in class:Portable_Timer
74 double user_time() { return elapsed(); }
125 double elapsed() function in class:Portable_Timer
/external/qemu/distrib/sdl-1.2.15/src/timer/riscos/
H A DSDL_systimer.c86 Uint32 now,then,elapsed; local
116 elapsed = (now-then);
118 if ( elapsed >= ms ) {
121 ms -= elapsed;
/external/quake/quake/src/WinQuake/
H A Dmain.cpp75 nsecs_t elapsed = 0; local
81 elapsed = time - startTimes[startTimeStackPointer];
85 ALOGI("> %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf);
87 fprintf(stderr, "Quake > %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf);
/external/skia/bench/
H A DBenchSysTimer_mach.cpp67 uint64_t elapsed = end_wall - this->fStartWall; local
72 uint64_t elapsedNano = elapsed * sTimebaseInfo.numer
/external/chromium/chrome/browser/visitedlink/
H A Dvisitedlink_perftest.cc159 TimeDelta elapsed = cold_timer.Elapsed(); local
162 cold_load_times.push_back(elapsed.InMillisecondsF());
175 TimeDelta elapsed = hot_timer.Elapsed(); local
178 hot_load_times.push_back(elapsed.InMillisecondsF());
/external/netperf/
H A Dnetcpu_perfstat.c123 elapsed, local
203 elapsed = (float)sec + ((float)usec/(float)1000000.0);
227 fprintf(where,"\telapsed time = %g\n",elapsed);
248 (float)(secondcnt[j] - firstcnt[j])/elapsed :
249 (float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
279 /* tests tell up what the elapsed time should be. */
H A Dnetcpu_pstat.c106 elapsed, local
169 elapsed = (float)sec + ((float)usec/(float)1000000.0);
174 fprintf(where,"\telapsed time = %g\n",elapsed);
199 (float)(secondcnt[j] - firstcnt[j] )/elapsed :
200 (float)(secondcnt[j] - firstcnt[j] + LONG_LONG_MAX)/elapsed;
236 /* tests tell up what the elapsed time should be. */
H A Dnetcpu_kstat.c257 elapsed, local
302 elapsed = (float)sec + ((float)usec/(float)1000000.0);
307 fprintf(where,"\telapsed time = %g\n",elapsed);
327 (float)(secondcnt[j] - firstcnt[j])/elapsed :
328 (float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
356 /* tests tell up what the elapsed time should be. */
H A Dnetcpu_looper.c493 elapsed,
531 elapsed = (float)sec + ((float)usec/(float)1000000.0);
536 fprintf(where,"\telapsed time = %g\n",elapsed);
556 (float)(secondcnt[j] - firstcnt[j])/elapsed :
557 (float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
597 /* tests tell up what the elapsed time should be. */
492 elapsed, local
/external/skia/src/gpu/
H A DFlingState.cpp114 double elapsed = (SkTime::GetMSecs() - fTime0) * 0.001; local
115 if (elapsed >= fDuration) {
120 double t = elapsed / fDuration;
/external/bison/lib/
H A Dtimevar.c144 struct timevar_time_def elapsed; member in struct:timevar_def
186 pushed. Time elapsed since then is attributed to the topmost
259 /* Zero all elapsed times. */
276 /* Push TIMEVAR onto the timing stack. No further elapsed time is
278 subsequent elapsed time is attributed to TIMEVAR, until it is
304 /* If the stack isn't empty, attribute the current elapsed time to
307 timevar_accumulate (&stack->timevar->elapsed, &start_time, &now);
352 /* Attribute the elapsed time to the element we're popping. */
353 timevar_accumulate (&popped->timevar->elapsed, &start_time, &now);
393 /* Stop timing TIMEVAR. Time elapsed sinc
[all...]
/external/blktrace/
H A Dblkparse_fmt.c163 struct blk_io_trace *t, unsigned long long elapsed,
238 if (elapsed == -1ULL) {
239 fprintf(stderr, "Expecting elapsed value\n");
242 fprintf(ofp, strcat(format, "llu"), elapsed / 1000);
257 struct blk_io_trace *t, unsigned long long elapsed,
277 print_field(act, pci, t, elapsed, pdu_len, pdu_buf, *p++,
284 struct blk_io_trace *t, unsigned long long elapsed,
321 if (elapsed != -1ULL) {
325 t_sec(t), elapsed, t->error);
329 elapsed,
162 print_field(char *act, struct per_cpu_info *pci, struct blk_io_trace *t, unsigned long long elapsed, int pdu_len, unsigned char *pdu_buf, char field, int minus, int has_w, int width) argument
256 parse_field(char *act, struct per_cpu_info *pci, struct blk_io_trace *t, unsigned long long elapsed, int pdu_len, unsigned char *pdu_buf, char *master_format) argument
283 process_default(char *act, struct per_cpu_info *pci, struct blk_io_trace *t, unsigned long long elapsed, int pdu_len, unsigned char *pdu_buf) argument
418 process_fmt(char *act, struct per_cpu_info *pci, struct blk_io_trace *t, unsigned long long elapsed, int pdu_len, unsigned char *pdu_buf) argument
[all...]
/external/chromium/base/
H A Dtime_win.cc114 // the number of ticks that have elapsed, and compute the delta.
121 // Calculate the time elapsed since we started our timer
122 TimeDelta elapsed = ticks - initial_ticks; local
124 // Check if enough time has elapsed that we need to resync the clock.
125 if (elapsed.InMilliseconds() > kMaxMillisecondsToAvoidDrift) {
130 return Time(elapsed + Time(initial_time));
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Drtpdump.cc211 // During the second and later loops, we update the elapsed time of the dump
260 // Increase the elapsed time of the dump packet.
295 const void* data, size_t data_len, uint32 elapsed, bool rtcp) {
312 buf.WriteUInt32(elapsed);
294 WritePacket( const void* data, size_t data_len, uint32 elapsed, bool rtcp) argument
H A Drtpdump.h67 RtpDumpPacket(const void* d, size_t s, uint32 elapsed, bool rtcp) argument
68 : elapsed_time(elapsed),
117 // the stream when it ends. RtpDumpLoopReader maintains the elapsed time, the
135 // During the second and later loops, update the elapsed time of the dump
141 // How much to increase the elapsed time, RTP sequence number, RTP timestampe
152 // The elapsed time, RTP sequence number, and RTP timestamp of the first and
193 uint32 elapsed, bool rtcp);
/external/dropbear/
H A Dprogressmeter.c114 double elapsed; local
128 elapsed = now - last_update;
130 elapsed = now - start;
137 if (elapsed != 0)
138 cur_speed = (transferred / elapsed);
183 stalled += elapsed;
195 seconds = elapsed;
/external/eigen/demos/mandelbrot/
H A Dmandelbrot.cpp141 int elapsed = time.elapsed(); local
145 float speed = elapsed ? float(total_iter)*1000/elapsed : 0;
148 << elapsed << " ms, "
/external/openssh/
H A Dprogressmeter.c124 double elapsed; local
138 elapsed = now - last_update;
140 elapsed = now - start;
147 if (elapsed != 0)
148 cur_speed = (transferred / elapsed);
193 stalled += elapsed;
205 seconds = elapsed;
/external/webkit/Source/JavaScriptCore/wtf/
H A DCurrentTime.cpp240 DWORD elapsed = tickCountNow - lastTickCount; local
241 double timeNow = lastTime + (double)elapsed / 1000.;
242 if (elapsed >= 0x7FFFFFFF) {
275 // and GETTIMEMS returns the number of milliseconds that have elapsed since the last
/external/webkit/Source/WebCore/inspector/
H A DInspectorConsoleAgent.cpp165 double elapsed = currentTime() * 1000 - startTime; local
166 String message = title + String::format(": %.0fms", elapsed);

Completed in 661 milliseconds

12