HomeSort by relevance Sort by last modified time
    Searched refs:tv_sec (Results 76 - 100 of 1116) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/base/synchronization/
condition_variable_posix.cc 53 abstime.tv_sec = now.tv_sec + (usecs / Time::kMicrosecondsPerSecond);
56 abstime.tv_sec += abstime.tv_nsec / Time::kNanosecondsPerSecond;
58 DCHECK_GE(abstime.tv_sec, now.tv_sec); // Overflow paranoia
  /external/libvpx/libvpx/vpx_ports/
vpx_timer.h 36 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
39 --(result)->tv_sec; \
89 return diff.tv_sec * 1000000 + diff.tv_usec;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_common.h 73 ((target).tv_sec = (source).tv_sec), ((target).tv_usec = (source).tv_usec)
75 #define TIME_SECONDS(time) (time).tv_sec
77 ((time).tv_sec += ((microsecs) / 1000000) + \
81 ((time).tv_sec = (sec)), ((time).tv_usec = (microsec))
  /bionic/libc/bionic/
pselect.c 45 tv.tv_sec = timeout->tv_sec;
48 tv.tv_sec += 1;
  /hardware/ti/omap3/dspbridge/libbridge/
perfutils.c 58 tv_end->tv_sec -= 1;
61 totalTimeuSec = (tv_end->tv_sec - tv_beg->tv_sec) * 1000000 +
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 111 (tv)->tv_sec = (long)(ts)->tv_sec; \
118 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
121 --(result)->tv_sec; \
  /bionic/libc/unistd/
time.c 42 ret = tt.tv_sec;
53 return tm.tv_sec * CLOCKS_PER_SEC + (tm.tv_nsec * (CLOCKS_PER_SEC/1e9));