/external/harfbuzz_ng/src/ |
hb-ot-shape-complex-indic-machine.rl | 112 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
|
hb-ot-shape-complex-myanmar-machine.rl | 108 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
|
/external/libpcap/ |
pcap-int.h | 276 struct pcap_timeval ts; /* time stamp */ member in struct:pcap_sf_pkthdr 292 struct pcap_timeval ts; /* time stamp */ member in struct:pcap_sf_patched_pkthdr
|
pcap-usb-linux.c | 521 if (gettimeofday(&pkth.ts, NULL) < 0) 528 uhdr->ts_sec = pkth.ts.tv_sec; 529 uhdr->ts_usec = pkth.ts.tv_usec; 818 pkth.ts.tv_sec = info.hdr->ts_sec; 819 pkth.ts.tv_usec = info.hdr->ts_usec; 899 pkth.ts.tv_sec = hdr->ts_sec; 900 pkth.ts.tv_usec = hdr->ts_usec;
|
/external/valgrind/main/helgrind/tests/ |
annotate_hbefore.c | 339 struct timespec ts = { 0, 1 * 1000 * 1000 }; local 346 nanosleep(&ts, NULL);
|
/frameworks/base/core/tests/coretests/src/android/database/ |
MatrixCursorTest.java | 185 NonIterableArrayList(Collection<? extends T> ts) { 186 super(ts);
|
/frameworks/base/services/core/java/com/android/server/job/controllers/ |
BatteryController.java | 115 for (JobStatus ts : mTrackedTasks) { 116 boolean previous = ts.chargingConstraintSatisfied.getAndSet(stablePower);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
unit_test_suite_impl.hpp | 218 virtual bool test_suite_start( test_suite const& ts ) { return ts.p_enabled; }
|
/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 | 531 struct state *ts = &lsp->u.st; local 535 result = tzparse(&up->buf[1], ts, FALSE); 536 if (result == 0 && ts->typecnt == 2 && 537 sp->charcnt + ts->charcnt <= TZ_MAX_CHARS) { 539 ts->ttis[i].tt_abbrind += 541 for (i = 0; i < ts->charcnt; ++i) 543 ts->chars[i]; 545 while (i < ts->timecnt && 546 ts->ats[i] <= 549 while (i < ts->timecnt & [all...] |
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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 | 304 Index ts = (IsLower && actual_k2>=cols) ? 0 : actual_kc; local 306 Scalar* geb = blockB+ts*ts; 311 if(ts>0) 347 if(ts>0)
|
/external/libexif/libexif/olympus/ |
exif-mnote-data-olympus.c | 106 size_t ts; local 213 ts = *buf_size + s; 215 sizeof (char) * ts); 217 EXIF_LOG_NO_MEMORY(ne->log, "ExifMnoteDataOlympus", ts); 221 *buf_size = ts;
|
/frameworks/base/services/core/java/com/android/server/notification/ |
DowntimeConditionProvider.java | 290 action, ts(time), NextAlarmTracker.formatDuration(time - now), ts(now))); 295 private static String ts(long time) { method in class:DowntimeConditionProvider 339 action, ts(schTime), ts(now), now - schTime));
|
/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/linux-tools-perf/perf-3.12.0/tools/perf/ |
builtin-stat.c | 365 struct timespec ts, rs; local 382 clock_gettime(CLOCK_MONOTONIC, &ts); 383 diff_timespec(&rs, &ts, &ref_time); 447 struct timespec ts; local 452 ts.tv_sec = interval / 1000; 453 ts.tv_nsec = (interval % 1000) * 1000000; 455 ts.tv_sec = 1; 456 ts.tv_nsec = 0; 517 nanosleep(&ts, NULL); 527 nanosleep(&ts, NULL) [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/chromium_org/chrome/browser/autocomplete/ |
zero_suggest_provider.cc | 328 history::TopSites* ts = profile_->GetTopSites(); local 329 if (ts) { 330 ts->GetMostVisitedURLs(
|
/external/chromium_org/third_party/libusb/src/libusb/ |
libusbi.h | 150 #define TIMESPEC_IS_SET(ts) ((ts)->tv_sec != 0 || (ts)->tv_nsec != 0) [all...] |
/external/chromium_org/third_party/skia/third_party/lua/src/ |
luac.c | 223 static void PrintString(const TString* ts) 225 const char* s=getstr(ts); 226 size_t i,n=ts->tsv.len;
|
/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;
|
/frameworks/base/wifi/java/android/net/wifi/ |
RttManager.java | 180 public long ts; field in class:RttManager.RttResult 233 dest.writeLong(result.ts); 266 results[i].ts = in.readLong();
|
/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);
|