/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
TestArgs.java | 23 long maxTime; 33 maxTime = source.readLong(); 47 dest.writeLong(maxTime);
|
/external/llvm/unittests/Support/ |
ProcessTest.cpp | 35 EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_user_time()); 37 EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_system_time()); 39 EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_wall_time());
|
/external/webrtc/src/system_wrappers/source/ |
event_win.cc | 41 EventTypeWrapper EventWindows::Wait(unsigned long maxTime) 43 unsigned long res = WaitForSingleObject(_event, maxTime);
|
event_win.h | 27 virtual EventTypeWrapper Wait(unsigned long maxTime);
|
event_posix.h | 35 virtual EventTypeWrapper Wait(unsigned long maxTime);
|
/external/clang/utils/analyzer/ |
SumTimerInfo.py | 24 MaxTime = 0.0 42 if (float(s[6]) > MaxTime) : 43 MaxTime = float(s[6]) 81 print "MaxTime %f" % (MaxTime)
|
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseLockTest.java | 123 long maxTime = 0; 129 if (maxTime < elapsedTime) { 130 maxTime = elapsedTime; 142 Log.i("DatabaseLockLatency", "MaxTime: " + maxTime);
|
/external/iproute2/tc/ |
tc_red.c | 79 double maxtime = 31/lW; local 84 if (maxtime/(1<<clog) < 512)
|
/external/icu4c/test/perf/howExpensiveIs/ |
sieve.cpp | 155 double maxTime = times[0]; 159 if(maxTime<times[i]) maxTime=times[i]; 178 printf("min: %.9f, q1=%.9f, q2=%.9f, q3=%.9f, max=%.9f, n=%d\n", minTime,q1,q2,q3,maxTime, n);
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
s_time.c | 130 static int maxTime = SECONDS; 153 maxTime = SECONDS; 296 maxTime= atoi(*(++argv)); 392 printf( "Collecting connection statistics for %d seconds\n", maxTime ); 397 finishtime=(long)time(NULL)+maxTime; 452 i=(int)((long)time(NULL)-finishtime+maxTime); 454 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn); 486 finishtime=(long)time(NULL)+maxTime; 544 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn);
|
/external/mdnsresponder/mDNSPosix/ |
parselog.py | 70 maxTime=0 101 if (secs>maxTime): 102 maxTime=secs 165 #width=20.0*(maxTime-minTime) 166 if (maxTime < minTime + 10.0): 167 maxTime = minTime + 10.0 169 width=20.0*(maxTime-minTime) 171 scale = width/(maxTime-minTime) 225 for time in range (int(minTime),int(maxTime)+1):
|
/external/openssl/apps/ |
s_time.c | 130 static int maxTime = SECONDS; 153 maxTime = SECONDS; 296 maxTime= atoi(*(++argv)); 392 printf( "Collecting connection statistics for %d seconds\n", maxTime ); 397 finishtime=(long)time(NULL)+maxTime; 452 i=(int)((long)time(NULL)-finishtime+maxTime); 454 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn); 486 finishtime=(long)time(NULL)+maxTime; 544 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn);
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
AudioDelayDSPKernel.cpp | 107 double maxTime = maxDelayTime(); 117 delayTime = min(maxTime, delayTime); 129 delayTime = std::min(maxTime, delayTime);
|
/external/llvm/utils/lit/lit/ |
main.py | 73 def __init__(self, tests, maxTime): 74 self.maxTime = maxTime 87 if self.maxTime is not None: 88 if time.time() - self.startTime > self.maxTime: 224 group.add_option("", "--max-time", dest="maxTime", metavar="N", 370 provider = TestProvider(tests, opts.maxTime)
|
/external/llvm/lib/Support/ |
TimeValue.cpp | 26 const TimeValue TimeValue::MaxTime = TimeValue ( INT64_MAX,0 );
|
/external/webrtc/src/system_wrappers/interface/ |
event_wrapper.h | 50 virtual EventTypeWrapper Wait(unsigned long maxTime) = 0;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TimelineMemoryOverview.js | 58 var maxTime = this._model.maximumRecordTime(); 67 var xFactor = width / (maxTime - minTime);
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
BombControl.java | 42 private float maxTime = 4f; 139 if(timer>maxTime){
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
TimeClustering.java | 130 long maxTime = 0; 135 minTime = maxTime = t; 138 maxTime = Math.max(maxTime, t); 142 setTimeRange(maxTime - minTime, n);
|
/external/chromium_org/third_party/skia/src/animator/ |
SkAnimateActive.cpp | 162 SkMSec maxTime = state.fBegin + duration; 163 if (fMaxTime < maxTime) 164 fMaxTime = maxTime;
|
/external/skia/src/animator/ |
SkAnimateActive.cpp | 162 SkMSec maxTime = state.fBegin + duration; 163 if (fMaxTime < maxTime) 164 fMaxTime = maxTime;
|
/external/llvm/utils/Misc/ |
zkill | 197 group.add_option("", "--max-time", dest="maxTime", metavar="N", 254 if opts.minTime <= p.cpu_time <= opts.maxTime]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
LogUnit.java | 298 * Split this logUnit, with all events before maxTime staying in the current logUnit, and all 299 * events after maxTime going into a new LogUnit that is returned. 301 public LogUnit splitByTime(final long maxTime) { 306 if (mTimeList.get(index) > maxTime) {
|
/external/llvm/include/llvm/Support/ |
TimeValue.h | 44 /// value permissible by the class. MaxTime is some point 47 static const TimeValue MaxTime;
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
RecurrenceProcessor.java | 76 * @param maxtime the max possible time of the last occurrence. null means no limit 82 public long getLastOccurence(Time dtstart, Time maxtime, 128 if (hasCount || recur.rdates != null || maxtime != null) { 133 (maxtime != null) ? 134 maxtime.toMillis(false /* use isDst */) : -1 /* range end */); [all...] |