HomeSort by relevance Sort by last modified time
    Searched refs:ts (Results 276 - 300 of 549) sorted by null

<<11121314151617181920>>

  /ndk/sources/host-tools/make-3.81/
file.c 778 FILE_TIMESTAMP ts = product + offset;
781 && product <= ts && ts <= ORDINARY_MTIME_MAX))
784 ts = s <= OLD_MTIME ? ORDINARY_MTIME_MIN : ORDINARY_MTIME_MAX;
785 file_timestamp_sprintf (buf, ts);
790 return ts;
845 timestamp TS. */
847 file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts)
849 time_t t = FILE_TIMESTAMP_S (ts);
867 sprintf (p, ".%09d", FILE_TIMESTAMP_NS (ts));
773 FILE_TIMESTAMP ts = product + offset; local
    [all...]
  /external/blktrace/btreplay/
btreplay.c 285 static inline __u64 ts2ns(struct timespec *ts)
287 return ((__u64)(ts->tv_sec) * NS_TICKS) + (__u64)(ts->tv_nsec);
345 struct timespec ts = { local
349 clock_settime(CLOCK_MONOTONIC, &ts);
354 struct timespec ts; local
355 clock_gettime(CLOCK_MONOTONIC, &ts);
356 return ts2ns(&ts);
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-indic-machine.rl 106 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
hb-ot-shape-complex-myanmar-machine.rl 105 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
  /external/strace/
time.c 170 struct timespec ts; local
172 if ((rc = umove(tcp, addr, &ts)) >= 0)
174 (unsigned long) ts.tv_sec,
175 (unsigned long) ts.tv_nsec);
201 struct timespec ts; local
203 if ((rc = umove(tcp, addr, &ts)) >= 0)
205 (unsigned long) ts.tv_sec,
206 (unsigned long) ts.tv_nsec);
  /external/valgrind/main/helgrind/tests/
annotate_hbefore.c 272 struct timespec ts = { 0, 1 * 1000 * 1000 }; local
279 nanosleep(&ts, NULL);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.cpp 157 const float ts = m_textSize >= 0 ? m_textSize : 12; local
173 paint->setTextSize(SkFloatToScalar(ts));
LayerRendererChromium.cpp 1057 TextStream ts; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.cpp 275 TextStream& FilterEffect::externalRepresentation(TextStream& ts, int) const
279 return ts;
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeLlcpConnectionlessSocket.cpp 60 struct timespec ts; local
122 struct timespec ts; local
  /bionic/libc/tzcode/
localtime.c 610 struct state ts; local
614 result = tzparse(&u.buf[1], &ts, FALSE);
615 if (result == 0 && ts.typecnt == 2 &&
616 sp->charcnt + ts.charcnt <= TZ_MAX_CHARS) {
618 ts.ttis[i].tt_abbrind +=
620 for (i = 0; i < ts.charcnt; ++i)
622 ts.chars[i];
624 while (i < ts.timecnt &&
625 ts.ats[i] <=
628 while (i < ts.timecnt &
    [all...]
  /external/icu4c/tools/tzcode/
localtime.c 526 struct state ts; local
530 result = tzparse(&u.buf[1], &ts, FALSE);
531 if (result == 0 && ts.typecnt == 2 &&
532 sp->charcnt + ts.charcnt <= TZ_MAX_CHARS) {
534 ts.ttis[i].tt_abbrind +=
536 for (i = 0; i < ts.charcnt; ++i)
538 ts.chars[i];
540 while (i < ts.timecnt &&
541 ts.ats[i] <=
544 while (i < ts.timecnt &
    [all...]
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h 279 Index ts = (IsLower && actual_k2>=cols) ? 0 : actual_kc; local
281 Scalar* geb = blockB+ts*ts;
286 if(ts>0)
322 if(ts>0)
  /frameworks/base/core/java/android/widget/
Switch.java 195 int ts; local
206 ts = appearance.getDimensionPixelSize(com.android.internal.R.styleable.
208 if (ts != 0) {
209 if (ts != mTextPaint.getTextSize()) {
210 mTextPaint.setTextSize(ts);
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java 163 ComparableTimSort ts = new ComparableTimSort(a); local
177 ts.pushRun(lo, runLen);
178 ts.mergeCollapse();
187 ts.mergeForceCollapse();
188 if (DEBUG) assert ts.stackSize == 1;
    [all...]
TimSort.java 195 TimSort<T> ts = new TimSort<T>(a, c); local
209 ts.pushRun(lo, runLen);
210 ts.mergeCollapse();
219 ts.mergeForceCollapse();
220 if (DEBUG) assert ts.stackSize == 1;
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 172 for ( gUnitTestSuite ts: grammarInfo.getRuleTestSuites() ) {
173 String rule = ts.getRuleName();
174 String lexicalRule = ts.getLexicalRuleName();
175 String treeRule = ts.getTreeRuleName();
176 for ( gUnitTestInput input: ts.testSuites.keySet() ) { // each rule may contain multiple tests
180 AbstractTest test = ts.testSuites.get(input);
212 else if ( ts.testSuites.get(input).getType()==gUnitParser.ACTION ) { // expected Token: ACTION
  /external/v8/src/
platform-openbsd.cc 682 #define TIMEVAL_TO_TIMESPEC(tv, ts) do { \
683 (ts)->tv_sec = (tv)->tv_sec; \
684 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
707 struct timespec ts; local
708 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
710 int to = ts.tv_sec;
717 usleep(ts.tv_nsec / 1000);
  /external/chromium/chrome/browser/sync/glue/
autofill_change_processor.cc 437 const std::vector<base::Time>& ts(entry.timestamps());
438 for (std::vector<base::Time>::const_iterator timestamp = ts.begin();
439 timestamp != ts.end(); ++timestamp) {
  /external/libusb_aah/libusb/
libusbi.h 120 #define TIMESPEC_IS_SET(ts) ((ts)->tv_sec != 0 || (ts)->tv_nsec != 0)
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 89 /// Copy tv to ts adding offset in milliseconds.
91 timespec *ts,
99 ts->tv_sec = then_nsec / ten_9;
100 ts->tv_nsec = then_nsec % ten_9;
  /packages/apps/Camera/src/com/android/camera/ui/
Switch.java 151 int ts = res.getDimensionPixelSize(R.dimen.thumb_text_size); local
152 if (ts != mTextPaint.getTextSize()) {
153 mTextPaint.setTextSize(ts);
  /packages/apps/Gallery2/src/com/android/camera/ui/
Switch.java 151 int ts = res.getDimensionPixelSize(R.dimen.thumb_text_size); local
152 if (ts != mTextPaint.getTextSize()) {
153 mTextPaint.setTextSize(ts);
  /external/chromium/base/
logging.cc 153 struct timespec ts;
154 clock_gettime(CLOCK_MONOTONIC, &ts);
157 static_cast<int64>(ts.tv_sec) * 1000000 +
158 static_cast<int64>(ts.tv_nsec) / 1000;
  /external/clang/test/Analysis/
taint-tester.c 107 char *ts = s; local

Completed in 542 milliseconds

<<11121314151617181920>>