Searched defs:elapsed (Results 26 - 50 of 94) sorted by relevance

1234

/external/netperf/
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/chromium_org/cc/resources/
H A Draster_worker_pool_perftest.cc146 base::TimeDelta elapsed = base::TimeTicks::HighResNow() - start_time_; local
147 if (elapsed >= base::TimeDelta::FromMilliseconds(kTimeLimitMillis)) {
148 elapsed_ = elapsed;
H A Dworker_pool_perftest.cc175 base::TimeDelta elapsed = base::TimeTicks::HighResNow() - start_time_; local
176 if (elapsed >= base::TimeDelta::FromMilliseconds(kTimeLimitMillis)) {
177 elapsed_ = elapsed;
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_perftest.cc66 base::TimeDelta elapsed = base::TimeTicks::HighResNow() - start_time_; variable
67 if (elapsed >= base::TimeDelta::FromMilliseconds(kTimeLimitMillis)) {
68 elapsed_ = elapsed;
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSMILTimeContainer.cpp107 SMILTime SMILTimeContainer::elapsed() const function in class:WebCore::SMILTimeContainer
217 SMILTime delay = max(fireTime - elapsed(), minimumDelay);
225 updateAnimations(elapsed());
239 PriorityCompare(SMILTime elapsed) : m_elapsed(elapsed) {} argument
255 void SMILTimeContainer::sortByPriority(Vector<SVGSMILElement*>& smilElements, SMILTime elapsed) argument
259 std::sort(smilElements.begin(), smilElements.end(), PriorityCompare(elapsed));
262 void SMILTimeContainer::updateAnimations(SMILTime elapsed, bool seekToTime) argument
281 sortByPriority(*scheduled, elapsed);
299 if (!animation->progress(elapsed, resultElemen
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dtimeutils.cc146 uint32 TimeAfter(int32 elapsed) { argument
147 ASSERT(elapsed >= 0);
148 ASSERT(static_cast<uint32>(elapsed) < HALF);
149 return Time() + elapsed;
H A Dcpumonitor.cc183 int elapsed = static_cast<int>(TimeDiff(timenow, system_.prev_load_time_)); local
185 elapsed < min_load_interval_) {
294 int elapsed = static_cast<int>(TimeDiff(timenow, process_.prev_load_time_)); local
296 elapsed < min_load_interval_) {
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtpdump.cc145 // Read the elapsed time for this packet (different than RTP timestamp).
248 // During the second and later loops, we update the elapsed time of the dump
297 // Increase the elapsed time of the dump packet.
353 const void* data, size_t data_len, uint32 elapsed, bool rtcp) {
377 buf.WriteUInt32(elapsed);
352 WritePacket( const void* data, size_t data_len, uint32 elapsed, bool rtcp) argument
H A Drtpdump.h73 RtpDumpPacket(const void* d, size_t s, uint32 elapsed, bool rtcp) argument
74 : elapsed_time(elapsed),
139 // the stream when it ends. RtpDumpLoopReader maintains the elapsed time, the
157 // During the second and later loops, update the elapsed time of the dump
163 // How much to increase the elapsed time, RTP sequence number, RTP timestampe
174 // The elapsed time, RTP sequence number, and RTP timestamp of the first and
217 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/chromium_org/base/time/
H A Dtime_win.cc115 // the number of ticks that have elapsed, and compute the delta.
122 // Calculate the time elapsed since we started our timer
123 TimeDelta elapsed = ticks - initial_ticks; local
125 // Check if enough time has elapsed that we need to resync the clock.
126 if (elapsed.InMilliseconds() > kMaxMillisecondsToAvoidDrift) {
131 return Time(elapsed + Time(initial_time));
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_loader.cc691 const base::TimeDelta elapsed = base::Time::Now() - start_time; local
693 "Change lists applied (elapsed time: %sms)",
694 base::Int64ToString(elapsed.InMilliseconds()).c_str());
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorConsoleAgent.cpp218 double elapsed = monotonicallyIncreasingTime() - startTime; local
219 String message = title + String::format(": %.3fms", elapsed * 1000);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DPerformanceResults.java69 StringBuffer buffer = new StringBuffer(" [elapsed: "); //$NON-NLS-1$
70 long elapsed = getElapsed();
71 buffer.append(Util.timeChrono(elapsed));
74 long remainingTime = getRemainingTime(elapsed);
82 private long getRemainingTime(long elapsed) { argument
83 return (long) ((((double)elapsed) / this.count) * (this.all - this.count));
/external/iputils/Modules/
H A Dpg3.c213 u32 start_s, elapsed; local
219 elapsed = get_cycles() - start_s;
220 if (elapsed == 0)
222 } while (elapsed < 1000*50000);
224 return elapsed/(stop.tv_usec-start.tv_usec+1000000*(stop.tv_sec-start.tv_sec));

Completed in 3273 milliseconds

1234