HomeSort by relevance Sort by last modified time
    Searched full:elapsed (Results 1 - 25 of 401) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/053-wait-some/src/
Main.java 42 long elapsed = end - start; local
54 if (elapsed < min) {
55 System.out.println(" Elapsed time was too short");
57 } else if (elapsed > max) {
58 System.out.println(" Elapsed time was too long: "
59 + "elapsed=" + elapsed + " max=" + max);
65 System.out.println(" Wall clock elapsed "
66 + elapsed + "ms");
  /sdk/emulator/qtools/
profile_trace.cpp 14 uint64_t elapsed; // elapsed time for this function member in struct:symbol
24 // symbols into decreasing elapsed time.
31 elapsed1 = syma->elapsed;
32 elapsed2 = symb->elapsed;
64 dummy.elapsed = 0;
74 // Assign the elapsed time to the previous function symbol
75 uint64_t elapsed = 0; local
77 elapsed = first_ignored_event.time - prev_bb_time;
79 elapsed = event.time - prev_bb_time
    [all...]
bbprof.cpp 12 uint32_t elapsed; // number of cycles for basic block member in struct:MyStaticRec
34 // This function is called from quicksort to compare the elapsed time
41 if (bb1->elapsed < bb2->elapsed)
43 if (bb1->elapsed > bb2->elapsed)
88 blocks[ii].elapsed = 0;
96 uint32_t elapsed = 0; local
117 elapsed = sim_time - prev_time;
120 // Attribute the elapsed time to the previous instruction an
146 uint32_t elapsed = sorted[ii]->cycles[jj]; local
    [all...]
  /dalvik/tests/002-sleep/src/
Main.java 13 long elapsed = System.currentTimeMillis() - start; local
14 long offBy = Math.abs(elapsed - millis);
19 System.out.println("Actually slept about " + elapsed + " msec...");
  /frameworks/base/libs/utils/
StopWatch.cpp 40 nsecs_t elapsed = elapsedTime(); local
42 LOGD("StopWatch %s (us): %lld ", mName, ns2us(elapsed));
57 nsecs_t elapsed = elapsedTime(); local
59 elapsed = 0;
62 mLaps[n].soFar = elapsed;
63 mLaps[n].thisLap = n ? (elapsed - mLaps[n-1].soFar) : elapsed;
66 return elapsed;
  /external/srec/portable/src/
pcputimer.c 37 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)
126 if (timer == NULL || elapsed == NULL) return ESR_INVALID_ARGUMENT;
138 *elapsed = timer->elapsed
169 asr_uint32_t elapsed; member in struct:PCPUTimer_t
    [all...]
ptimer.c 38 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)
113 if (timer == NULL || elapsed == NULL)
120 *elapsed = (asr_uint32_t) ((timer->elapsed.QuadPart + (now.QuadPart - timer->RefTime.QuadPart)
159 asr_uint32_t elapsed; member in struct:PTimer_t
    [all...]
  /external/clearsilver/csharp/
csperftest.cs 11 int start, end, elapsed;
16 elapsed = end-start;
18 Console.WriteLine(label + " " + count + " elapsed: " + (elapsed / 1000.0));
  /external/bison/lib/
timevar.c 143 /* Elapsed time for this variable. */
144 struct timevar_time_def elapsed; member in struct:timevar_def
162 /* An element on the timing stack. Elapsed time is attributed to the
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);
331 popped variable must be TIMEVAR. Elapsed time since the tha
    [all...]
  /external/chromium/net/url_request/
url_request_job_metrics.cc 24 TimeDelta elapsed = end_time_ - start_time_; local
28 number_of_read_IO_, elapsed.InMilliseconds());
  /external/webkit/WebCore/svg/animation/
SMILTimeContainer.cpp 60 SMILTime SMILTimeContainer::elapsed() const { return 0; } function in class:WebCore::SMILTimeContainer
82 SMILTime SMILTimeContainer::elapsed() const function in class:WebCore::SMILTimeContainer
133 SMILTime delay = max(fireTime - elapsed(), minimumDelay);
141 SMILTime elapsed = this->elapsed(); local
142 updateAnimations(elapsed);
156 PriorityCompare(SMILTime elapsed) : m_elapsed(elapsed) {}
172 void SMILTimeContainer::sortByPriority(Vector<SVGSMILElement*>& smilElements, SMILTime elapsed)
176 std::sort(smilElements.begin(), smilElements.end(), PriorityCompare(elapsed));
    [all...]
SVGSMILElement.cpp 467 SMILTime SVGSMILElement::elapsed() const function in class:WebCore::SVGSMILElement
469 return m_timeContainer ? m_timeContainer->elapsed() : 0;
711 SMILTime elapsed = this->elapsed(); local
714 else if (elapsed < m_intervalBegin) {
715 SMILTime newBegin = findInstanceTime(Begin, elapsed, false);
719 m_intervalBegin = elapsed;
726 m_nextProgressTime = elapsed;
732 SMILTime elapsed = this->elapsed(); local
    [all...]
  /external/stlport/test/eh/
bug.cpp 26 std::cout << "vector fill: " << t.elapsed() << std::endl;
33 std::cout << "map fill 1: " << t.elapsed() << std::endl;
38 std::cout << "map fill 2: " << t.elapsed() << std::endl;
  /sdk/traceview/src/com/android/traceview/
Call.java 94 public void addExclusiveTime(long elapsed) {
95 mMethodData.addElapsedExclusive(elapsed);
97 mMethodData.addTopExclusive(elapsed);
101 public void addInclusiveTime(long elapsed, Call parent) {
103 mMethodData.addElapsedInclusive(elapsed, isRecursive, parent);
  /external/bluetooth/glib/docs/reference/glib/tmpl/
timers.sgml 5 keep track of elapsed time
9 #GTimer records a start time, and counts microseconds elapsed since that time.
76 started. If @timer has been stopped, obtains the elapsed time between the time
78 seconds elapsed, including any fractional part. The @microseconds
86 @microseconds: return location for the fractional part of seconds elapsed,
87 in microseconds (that is, the total number of microseconds elapsed, modulo
89 @Returns: seconds elapsed as a floating point value, including
  /external/srec/portable/include/
pcputimer.h 55 * Starts the timer. This sets the reference time from which all new elapsed
56 * time are computed. This does not reset the elapsed time to 0. This is
71 * Returns the timer elapsed time. If the Timer is in the stopped state,
73 * Timer is in the started state, successive calls will return the elapsed
76 * @return ESR_INVALID_ARGUMENT if timer or elapsed to is null; ESR_FATAL_ERROR if OS timer is available
79 asr_uint32_t* elapsed);
82 * Resets the elapsed time to 0 and resets the reference time of the Timer.
ptimer.h 30 * API to facilitate computing elapsed time of operations. The units of time
54 * Starts the timer. This sets the reference time from which all new elapsed
55 * time are computed. This does not reset the elapsed time to 0. This is
66 * Returns the timer elapsed time. If the Timer is in the stopped state,
68 * Timer is in the started state, successive calls will return the elapsed
72 asr_uint32_t *elapsed);
75 * Resets the elapsed time to 0 and resets the reference time of the Timer.
  /external/qemu/distrib/sdl-1.2.12/src/timer/unix/
SDL_systimer.c 99 struct timespec elapsed, tv;
102 Uint32 then, now, elapsed;
107 elapsed.tv_sec = ms/1000;
108 elapsed.tv_nsec = (ms%1000)*1000000;
116 tv.tv_sec = elapsed.tv_sec;
117 tv.tv_nsec = elapsed.tv_nsec;
118 was_error = nanosleep(&tv, &elapsed);
122 elapsed = (now-then);
124 if ( elapsed >= ms ) {
127 ms -= elapsed;
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
ExpatPerformanceTest.java 78 long elapsed = System.currentTimeMillis() - start; local
79 Log.i(TAG, "expat SAX: " + elapsed + "ms");
87 long elapsed = System.currentTimeMillis() - start; local
88 Log.i(TAG, "expat pull: " + elapsed + "ms");
98 long elapsed = System.currentTimeMillis() - start; local
99 Log.i(TAG, "java pull parser: " + elapsed + "ms");
  /external/blktrace/
blkparse_fmt.c 163 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, t->error)
    [all...]
  /external/netperf/
netcpu.h 16 extern float calc_cpu_util_internal(float elapsed);
  /external/quake/quake/src/WinQuake/
main.cpp 75 nsecs_t elapsed = 0; local
81 elapsed = time - startTimes[startTimeStackPointer];
85 LOGI("> %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf);
87 fprintf(stderr, "Quake > %lld [%d] %lld %s\n", time, startTimeStackPointer, elapsed, buf);
  /external/stlport/test/unit/cppunit/
cppunit_timer.h 77 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;
  /frameworks/base/core/tests/coretests/src/android/os/
TraceTest.java 49 long elapsed = end - start; local
50 Log.i(TAG, "elapsed millis: " + elapsed);
63 long elapsed = end - start; local
64 Log.i(TAG, "elapsed millis: " + elapsed);
78 long elapsed = end - start; local
79 Log.i(TAG, "elapsed millis: " + elapsed);
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
cppunit_timer.h 77 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;

Completed in 1071 milliseconds

1 2 3 4 5 6 7 8 91011>>