HomeSort by relevance Sort by last modified time
    Searched refs:ts2 (Results 1 - 20 of 20) sorted by null

  /external/compiler-rt/test/tsan/
cond_version.c 17 struct timespec ts0, ts1, ts2; local
36 clock_gettime(CLOCK_MONOTONIC, &ts2);
37 sleep = (u64)ts2.tv_sec * 1000000000 + ts2.tv_nsec -
  /external/chromium_org/third_party/webrtc/base/
timeutils.h 55 inline uint32 TimeMax(uint32 ts1, uint32 ts2) {
56 return TimeIsLaterOrEqual(ts1, ts2) ? ts2 : ts1;
60 inline uint32 TimeMin(uint32 ts1, uint32 ts2) {
61 return TimeIsLaterOrEqual(ts1, ts2) ? ts1 : ts2;
  /external/clang/test/PCH/
pragma-diag-section.cpp 26 struct TS2 {
40 TS2<int> ts2; local
41 ts2.m();
chain-cxx.cpp 37 template <typename T> struct TS2;
38 typedef TS2<int> TS2int;
99 template <typename T> struct TS2 { };
136 TS2int ts2; local
  /external/valgrind/main/memcheck/tests/linux/
syscalls-2007.c 62 struct timespec ts2[2] = { [0].tv_sec = 10000000, [1].tv_sec = 20000000 }; local
63 utimensat (AT_FDCWD, "/tmp/valgrind-utimensat-test", ts2, 0);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraphItem.java 65 long ts2=((TimeLineGraphItem)o2).timestamp; local
67 if (ts1>ts2)
69 if (ts1<ts2)
  /bionic/tests/
time_test.cpp 412 timespec ts2; local
413 ASSERT_EQ(0, syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts2));
416 ts2.tv_sec -= ts1.tv_sec;
417 ts2.tv_nsec -= ts1.tv_nsec;
418 if (ts2.tv_nsec < 0) {
419 --ts2.tv_sec;
420 ts2.tv_nsec += 1000000000;
424 ASSERT_EQ(0, ts2.tv_sec);
425 ASSERT_LT(ts2.tv_nsec, 1000000);
  /development/perftests/panorama/feature_stab/src/dbregtest/
dbregtest.cpp 113 timeval ts1, ts2, ts3, ts4; local
206 gettimeofday(&ts2, NULL);
208 double elapsedTime = (ts2.tv_sec - ts1.tv_sec)*1000.0; // sec to ms
209 elapsedTime += (ts2.tv_usec - ts1.tv_usec)/1000.0; // us to ms
  /packages/apps/Camera/jni/feature_stab/src/dbregtest/
dbregtest.cpp 113 timeval ts1, ts2, ts3, ts4; local
206 gettimeofday(&ts2, NULL);
208 double elapsedTime = (ts2.tv_sec - ts1.tv_sec)*1000.0; // sec to ms
209 elapsedTime += (ts2.tv_usec - ts1.tv_usec)/1000.0; // us to ms
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
dbregtest.cpp 113 timeval ts1, ts2, ts3, ts4; local
206 gettimeofday(&ts2, NULL);
208 double elapsedTime = (ts2.tv_sec - ts1.tv_sec)*1000.0; // sec to ms
209 elapsedTime += (ts2.tv_usec - ts1.tv_usec)/1000.0; // us to ms
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 374 ts2 = self.cur.fetchone()[0]
375 self.assertEqual(ts, ts2)
394 ts2 = self.cur.fetchone()[0]
395 self.assertEqual(ts, ts2)
401 ts2 = self.cur.fetchone()[0]
402 self.assertEqual(ts, ts2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 374 ts2 = self.cur.fetchone()[0]
375 self.assertEqual(ts, ts2)
394 ts2 = self.cur.fetchone()[0]
395 self.assertEqual(ts, ts2)
401 ts2 = self.cur.fetchone()[0]
402 self.assertEqual(ts, ts2)
  /frameworks/base/services/tests/servicestests/src/com/android/server/job/
JobStoreTest.java 185 private void compareTimestampsSubjectToIoLatency(String error, long ts1, long ts2) {
187 assertTrue(error, Math.abs(ts1 - ts2) < DELTA_MILLIS + IO_WAIT);
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicIntersection.cpp 88 SkTDArray<double> ts2; local
89 cubic_to_quadratics(c2, calcPrecision(c2) * precisionScale, ts2);
98 int ts2Count = ts2.count();
100 const double tEnd2 = i2 < ts2Count ? ts2[i2] : 1;
  /external/skia/experimental/Intersection/
CubicIntersection.cpp 88 SkTDArray<double> ts2; local
89 cubic_to_quadratics(c2, calcPrecision(c2) * precisionScale, ts2);
98 int ts2Count = ts2.count();
100 const double tEnd2 = i2 < ts2Count ? ts2[i2] : 1;
  /external/chromium_org/third_party/skia/src/pathops/
SkDCubicIntersection.cpp 84 SkSTArray<kCubicToQuadSubdivisionDepth, double, true> ts2; local
85 c2.toQuadraticTs(c2.calcPrecision() * precisionScale, &ts2);
94 int ts2Count = ts2.count();
96 const double tEnd2 = i2 < ts2Count ? ts2[i2] : 1;
  /external/skia/src/pathops/
SkDCubicIntersection.cpp 84 SkSTArray<kCubicToQuadSubdivisionDepth, double, true> ts2; local
85 c2.toQuadraticTs(c2.calcPrecision() * precisionScale, &ts2);
94 int ts2Count = ts2.count();
96 const double tEnd2 = i2 < ts2Count ? ts2[i2] : 1;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 470 milliseconds