HomeSort by relevance Sort by last modified time
    Searched defs:ts (Results 151 - 175 of 247) sorted by null

1 2 3 4 5 67 8 910

  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/inc/
mm_camera_interface.h 175 struct timespec ts; /* time stamp, to be filled when DQBUF*/ member in struct:__anon1658
  /external/dhcpcd/
dhcpcd.c 749 struct timespec ts; local
759 ts.tv_sec = RELEASE_DELAY_S;
760 ts.tv_nsec = RELEASE_DELAY_NS;
761 nanosleep(&ts, NULL);
1803 struct timespec ts; local
    [all...]
  /external/dropbear/
scp.c 772 struct timespec ts, rm; local
808 TIMEVAL_TO_TIMESPEC(&bwend, &ts);
809 while (nanosleep(&ts, &rm) == -1) {
812 ts = rm;
  /external/e2fsprogs/misc/
badblocks.c 8 * Copyright 1995, 1996, 1997, 1998, 1999 by Theodore Ts'o
357 struct timespec ts; local
358 ts.tv_sec = tv2.tv_sec - tv1.tv_sec;
359 ts.tv_nsec = (tv2.tv_usec - tv1.tv_usec) * MILISEC;
360 if (ts.tv_nsec < 0) {
361 ts.tv_nsec += NANOSEC;
362 ts.tv_sec -= 1;
365 ts.tv_sec = ts.tv_sec * d_flag / 100;
366 ts.tv_nsec = ts.tv_nsec * d_flag / 100
    [all...]
tune2fs.c 8 * Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o.
603 struct tm ts; local
608 memset(&ts, 0, sizeof(ts));
610 strptime(str, "%Y%m%d%H%M%S", &ts);
612 sscanf(str, "%4d%2d%2d%2d%2d%2d", &ts.tm_year, &ts.tm_mon,
613 &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec)
    [all...]
  /external/libusb/libusb/os/
linux_usbfs.c 201 struct timespec ts; local
206 r = clock_gettime(CLOCK_MONOTONIC, &ts);
    [all...]
  /external/linux-tools-perf/
builtin-lock.c 393 static struct lock_seq_stat *get_seq(struct thread_stat *ts, void *addr)
397 list_for_each_entry(seq, &ts->seq_list, list) {
408 list_add(&seq->list, &ts->seq_list);
435 struct thread_stat *ts; local
442 ts = thread_stat_findnew(thread->pid);
443 seq = get_seq(ts, acquire_event->addr);
499 struct thread_stat *ts; local
507 ts = thread_stat_findnew(thread->pid);
508 seq = get_seq(ts, acquired_event->addr);
555 struct thread_stat *ts; local
602 struct thread_stat *ts; local
    [all...]
  /external/mksh/src/
eval.c 1642 XString ts; local
    [all...]
lex.c 596 char ts[4]; local
602 cz = utf_wctomb(ts, c2 - 0x100);
603 ts[cz] = 0;
604 for (cz = 0; ts[cz]; ++cz) {
606 *wp++ = ts[cz];
    [all...]
  /external/opencv/cv/src/
cvstereogc.cpp 59 int ts; member in struct:GCVtx
149 v->ts = 0;
188 u->ts = v->ts;
204 if( u->dist > v->dist+1 && u->ts <= v->ts )
208 u->ts = v->ts;
293 if( u->ts == curr_ts )
306 u->ts = curr_ts
    [all...]
  /external/ppp/pppd/
eap.c 434 struct t_server *ts; local
448 ts = (struct t_server *)esp->es_server.ea_session;
449 if (ts != NULL) {
450 t_serverclose(ts);
553 if ((ts = t_serveropenraw(&tpw.pebuf, tce)) == NULL)
555 esp->es_server.ea_session = (void *)ts;
559 t_serveraddexdata(ts, vals, 2);
561 t_servergenexp(ts);
570 ts = (struct t_server *)esp->es_server.ea_session;
571 if (ts != NULL && status != 0)
650 struct t_server *ts; local
1734 struct t_server *ts; local
    [all...]
  /external/qemu/
gdbstub.c 1861 TaskState *ts = s->c_cpu->opaque; local
    [all...]
qemu-io.c 105 char s1[64], s2[64], ts[64]; local
107 timestr(t, ts, sizeof(ts), Cflag ? VERBOSE_FIXED_TIME : 0);
114 s1, cnt, ts, s2, tdiv((double)cnt, *t));
117 total, cnt, ts,
    [all...]
qemu-timer.c 531 QEMUTimer *ts; local
533 ts = qemu_mallocz(sizeof(QEMUTimer));
534 ts->clock = clock;
535 ts->cb = cb;
536 ts->opaque = opaque;
537 ts->scale = scale;
538 return ts;
541 void qemu_free_timer(QEMUTimer *ts)
543 qemu_free(ts);
547 void qemu_del_timer(QEMUTimer *ts)
626 QEMUTimer **ptimer_head, *ts; local
    [all...]
  /external/qemu/tcg/
tcg.c 298 TCGTemp *ts; local
309 ts = &s->temps[s->nb_globals];
310 ts->base_type = type;
311 ts->type = type;
312 ts->fixed_reg = 1;
313 ts->reg = reg;
314 ts->name = name;
341 TCGTemp *ts; local
349 ts = &s->temps[s->nb_globals];
350 ts->base_type = type
418 TCGTemp *ts; local
489 TCGTemp *ts; local
766 TCGTemp *ts; local
789 TCGTemp *ts; local
1193 TCGTemp *ts; local
1380 TCGTemp *ts; local
1419 TCGTemp *ts; local
1452 TCGTemp *ts; local
1466 TCGTemp *ts; local
1514 TCGTemp *ts; local
1559 TCGTemp *ts; local
1604 TCGTemp *ts, *ots; local
1668 TCGTemp *ts; local
1832 TCGTemp *ts; local
2132 TCGTemp *ts; local
    [all...]
  /external/v8/src/
platform-cygwin.cc 555 #define TIMEVAL_TO_TIMESPEC(tv, ts) do { \
556 (ts)->tv_sec = (tv)->tv_sec; \
557 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
580 struct timespec ts; local
581 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
584 int result = sem_timedwait(&sem_, &ts);
platform-freebsd.cc 645 struct timespec ts; local
646 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
648 int result = sem_timedwait(&sem_, &ts);
platform-macos.cc 717 mach_timespec_t ts; local
718 ts.tv_sec = timeout / 1000000;
719 ts.tv_nsec = (timeout % 1000000) * 1000;
720 return semaphore_timedwait(semaphore_, ts) != KERN_OPERATION_TIMED_OUT;
platform-solaris.cc 611 #define TIMEVAL_TO_TIMESPEC(tv, ts) do { \
612 (ts)->tv_sec = (tv)->tv_sec; \
613 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
649 struct timespec ts; local
650 TIMEVAL_TO_TIMESPEC(&end_time, &ts);
653 int result = sem_timedwait(&sem_, &ts);
  /frameworks/av/libvideoeditor/lvpp/
PreviewPlayer.cpp 924 TimeSource *ts = (mFlags & AUDIO_AT_EOS) ? &mSystemTimeSource : mTimeSource; local
926 if(ts == NULL) {
936 mTimeSourceDeltaUs = ts->getRealTimeUs() - timeUs;
945 int64_t nowUs = ts->getRealTimeUs() - mTimeSourceDeltaUs;
954 ts->getRealTimeUs(),timeUs);
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 865 struct timespec ts; local
867 int res = clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
873 nsecs_t when = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 656 timespec ts; local
657 ts.tv_sec = 0;
658 ts.tv_nsec = 100000000;
660 nanosleep(&ts, NULL);
666 nanosleep(&ts, NULL);
  /hardware/qcom/media/mm-video/vidc/venc/src/
video_encoder_device.cpp 389 struct timespec ts; local
396 if (clock_gettime(CLOCK_REALTIME, &ts) < 0)
401 ts.tv_sec += 1;
405 &loaded_start_stop_mlock, &ts);
421 struct timespec ts; local
428 if (clock_gettime(CLOCK_REALTIME, &ts) < 0)
433 ts.tv_sec += 1;
437 &loaded_start_stop_mlock, &ts);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 1464 int ss, ts; typedefs
    [all...]
ForkJoinTask.java 737 List<? extends ForkJoinTask<?>> ts = local
740 int last = ts.size() - 1;
742 ForkJoinTask<?> t = ts.get(i);
753 ForkJoinTask<?> t = ts.get(i);
    [all...]

Completed in 1199 milliseconds

1 2 3 4 5 67 8 910