HomeSort by relevance Sort by last modified time
    Searched defs:ts (Results 101 - 125 of 188) sorted by null

1 2 3 45 6 7 8

  /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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 269 Long ts = values.getAsLong(BluetoothShare.TIMESTAMP); local
270 if (ts == null) {
271 ts = System.currentTimeMillis();
273 filteredValues.put(BluetoothShare.TIMESTAMP, ts);
  /sdk/emulator/sensors/
sensors_qemu.c 221 struct timespec ts; local
223 clock_gettime(CLOCK_MONOTONIC, &ts);
225 return (int64_t)ts.tv_sec * 1000000000 + ts.tv_nsec;
  /system/core/adb/
usb_linux.c 291 struct timespec ts; local
320 ts.tv_sec = tv.tv_sec + 5;
321 ts.tv_nsec = tv.tv_usec * 1000L;
322 res = pthread_cond_timedwait(&h->notify, &h->lock, &ts);
  /system/core/libnetutils/
dhcpclient.c 55 struct timespec ts; local
57 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
60 return (((msecs_t) ts.tv_sec) * ((msecs_t) 1000)) +
61 (((msecs_t) ts.tv_nsec) / ((msecs_t) 1000000));
  /dalvik/vm/
Sync.cpp 548 static void absoluteTime(s8 msec, s4 nsec, struct timespec *ts)
553 clock_gettime(CLOCK_MONOTONIC, ts);
558 ts->tv_sec = tv.tv_sec;
559 ts->tv_nsec = tv.tv_usec * 1000;
562 endSec = ts->tv_sec + msec / 1000;
567 ts->tv_sec = endSec;
568 ts->tv_nsec = (ts->tv_nsec + (msec % 1000) * 1000000) + nsec;
571 if (ts->tv_nsec >= 1000000000L) {
572 ts->tv_sec++
581 struct timespec ts; local
618 struct timespec ts; local
    [all...]
  /dalvik/vm/analysis/
DexPrepare.cpp 1441 } ts; member in union:__anon735
    [all...]
  /device/moto/stingray/whisper/
Whisper_AccyMain.c 291 struct timespec ts; local
356 ts.tv_sec = 0;
357 ts.tv_nsec = 10000000; // 10 ms
358 nanosleep(&ts, NULL);
536 ts.tv_sec = 0;
537 ts.tv_nsec = 100000000; // 100 ms
538 nanosleep(&ts, NULL);
651 struct timespec ts; local
674 ts.tv_sec = 0;
675 ts.tv_nsec = 50000000; // 50 m
    [all...]
  /external/bluetooth/bluez/test/
l2test.c 617 char ts[30]; local
637 memset(ts, 0, sizeof(ts));
683 memset(ts, 0, sizeof(ts));
685 sprintf(ts, "[%ld.%ld] ",
717 syslog(LOG_INFO,"%s%ld bytes in %.2f sec, %.2f kB/s", ts, total,
  /external/bluetooth/hcidump/src/
hcidump.c 98 uint64_t ts; /* Timestamp microseconds */ member in struct:btsnoop_pkt
110 uint64_t ts; member in struct:pktlog_hdr
291 memcpy(&frm.ts, CMSG_DATA(cmsg),
306 uint64_t ts; local
312 ts = (frm.ts.tv_sec - 946684800ll) * 1000000ll + frm.ts.tv_usec;
313 dp->ts = hton64(ts + 0x00E03AB44A676000ll);
320 dh->ts_sec = htobl(frm.ts.tv_sec)
429 uint64_t ts; local
434 uint64_t ts; local
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 610 std::string ts = TypeString(proto[0], typestr); local
709 s += "(" + ts + ")(__a == __b);";
712 s += "(" + ts + ")(__a >= __b);";
715 s += "(" + ts + ")(__a <= __b);";
718 s += "(" + ts + ")(__a > __b);";
721 s += "(" + ts + ")(__a < __b);";
745 s += "(" + ts + ")__a;";
748 s += "(" + ts + ")__builtin_shufflevector((int64x1_t)__a";
752 s += "(" + ts +
756 s += "(" + ts
903 std::string ts = TypeString(proto[0], typestr); local
1158 std::string ts = TypeString('d', TDTypeVec[i]); local
1161 OS << " " << ts << " val"; local
    [all...]
  /external/libpcap/
pcap-int.h 251 struct pcap_timeval ts; /* time stamp */ member in struct:pcap_sf_pkthdr
267 struct pcap_timeval ts; /* time stamp */ member in struct:pcap_sf_patched_pkthdr
  /external/mksh/src/
exec.c 1006 struct tstate ts; local
1008 for (ktwalk(&ts, &taliases); (tp = ktnext(&ts)) != NULL; )
    [all...]
  /external/qemu/audio/
audio_int.h 194 QEMUTimer *ts; member in struct:AudioState
  /external/quake/quake/src/WinQuake/
snd_android.cpp 554 timespec ts; local
555 ts.tv_sec = tp.tv_sec;
556 ts.tv_nsec = tp.tv_usec * 1000 + WAIT_NS;
557 if (ts.tv_nsec >= NS_PER_SECOND) {
558 ts.tv_nsec -= NS_PER_SECOND;
559 ts.tv_sec += 1;
561 if (ETIMEDOUT == pthread_cond_timedwait( &condition_cond, &condition_mutex, &ts)) {
  /external/tcpdump/
print-udp.c 91 u_int32_t rr_lsr; /* orig. ts from last rr from this src */
114 u_int ts = *(u_int16_t *)hdr; local
115 if ((ts & 0xf060) != 0) {
119 ts & 0x3ff, ts >> 10);
216 double ts, dts; local
236 ts = (double)(EXTRACT_32BITS(&sr->sr_ntp.upper)) +
239 printf(" @%.2f %u %up %ub", ts, EXTRACT_32BITS(&sr->sr_ts),
277 ts = (double)(EXTRACT_32BITS(&rr->rr_lsr)) / 65536.;
282 EXTRACT_32BITS(&rr->rr_dv), ts, dts)
    [all...]
print-wb.c 322 u_int32_t ts = EXTRACT_32BITS(&dh->dh_ts); local
323 printf("%d", ts - ss + 1);
324 if (ss > ts || ts > es) {
326 if (ts < ss)
329 ss = ts;
  /external/v8/src/
platform-openbsd.cc 537 struct timespec ts; local
538 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
  /external/valgrind/main/coregrind/
m_redir.c 331 TopSpec* ts; local
350 for (ts = topSpecs; ts; ts = ts->next)
351 vg_assert(ts->seginfo != newsi);
454 for (ts = topSpecs; ts; ts = ts->next)
710 TopSpec* ts; local
1340 TopSpec* ts; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-aix5.c 377 struct tstate* ts = (struct tstate*)tsA; local
383 VG_(printf)("%016llx ", (ULong)ts->mst.gpr[i]);
385 VG_(printf)("%08llx ", (ULong)ts->mst.gpr[i]);
389 VG_(printf)(" [iar] %#llx %s\n", (ULong)ts->mst.iar,
390 ML_(aix5debugstuff_pc_to_fnname)(ts->mst.iar));
392 VG_(printf)(" errnop_addr %p\n", ts->errnop_addr);
395 aix5debugstuff_show_sigset( (vki_sigset_t*)&ts->sigmask );
399 aix5debugstuff_show_sigset( (vki_sigset_t*)&ts->psig );
402 VG_(printf)(" policy %d\n", ts->policy);
403 VG_(printf)(" priority %d\n", ts->priority)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerRendererChromium.cpp 1057 TextStream ts; local
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
BandwidthTest.java 115 String ts = Long.toString(System.currentTimeMillis()); local
118 mTestServer, FILE_SIZE, mDeviceId, ts);
132 results.putString("timestamp", ts);
167 String ts = Long.toString(System.currentTimeMillis()); local
169 mTestServer, FILE_SIZE, mDeviceId, ts);
173 ts = Long.toString(System.currentTimeMillis());
176 assertTrue(BandwidthTestUtil.postFileToServer(mTestServer, mDeviceId, ts, tmpSaveFile));
186 results.putString("timestamp", ts);
229 String ts = Long.toString(System.currentTimeMillis()); local
231 mTestServer, FILE_SIZE, mDeviceId, ts);
    [all...]
  /frameworks/base/include/utils/
threads.h 459 struct timespec ts; local
460 ts.tv_sec = reltime/1000000000;
461 ts.tv_nsec = reltime%1000000000;
462 return -pthread_cond_timedwait_relative_np(&mCond, &mutex.mMutex, &ts);
464 struct timespec ts;
466 clock_gettime(CLOCK_REALTIME, &ts);
471 ts.tv_sec = t.tv_sec;
472 ts.tv_nsec= t.tv_usec*1000;
474 ts.tv_sec += reltime/1000000000;
475 ts.tv_nsec+= reltime%1000000000
    [all...]
  /frameworks/media/libvideoeditor/lvpp/
PreviewPlayer.cpp 933 TimeSource *ts = (mFlags & AUDIO_AT_EOS) ? &mSystemTimeSource : mTimeSource; local
935 if(ts == NULL) {
945 mTimeSourceDeltaUs = ts->getRealTimeUs() - timeUs;
954 int64_t nowUs = ts->getRealTimeUs() - mTimeSourceDeltaUs;
963 ts->getRealTimeUs(),timeUs);
    [all...]
  /frameworks/media/libvideoeditor/vss/src/
M4VSS3GPP_EditVideo.c 102 M4_MediaTime ts,
1066 M4_MediaTime ts; local
    [all...]

Completed in 1894 milliseconds

1 2 3 45 6 7 8