HomeSort by relevance Sort by last modified time
    Searched full:tv_usec (Results 201 - 225 of 1200) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/
time.h 27 suseconds_t tv_usec; member in struct:timeval
  /system/bt/btif/src/
btif_debug.c 39 return (tv.tv_sec * 1000000LL) + tv.tv_usec;
  /system/core/libmemunreachable/
ScopedAlarm.h 40 t.it_value.tv_usec = (us - s).count();
  /hardware/intel/img/psb_video/src/x11/
psb_x11.c 70 inter_period.tv_usec += 1000000 / fps;
73 if (inter_period.tv_usec >= 1000000) {
74 inter_period.tv_usec -= 1000000;
80 time_deta.tv_usec = inter_period.tv_usec - time_deta.tv_usec;
83 if (time_deta.tv_usec < 0) {
84 time_deta.tv_usec += 1000000;
88 if (time_deta.tv_sec < 0 || (time_deta.tv_sec == 0 && time_deta.tv_usec <= 0))
496 if ((inter_period.tv_sec == 0) && (inter_period.tv_usec == 0)
    [all...]
  /external/curl/docs/examples/
smtp-multi.c 85 now.tv_usec = 0;
93 (newer.tv_usec - older.tv_usec) / 1000;
169 timeout.tv_usec = 0;
177 timeout.tv_usec = (curl_timeo % 1000) * 1000;
  /external/curl/tests/libtest/
lib582.c 137 timeout->tv_usec += timeout_ms * 1000;
178 timeout->tv_usec - now.tv_usec;
318 tv.tv_usec = usTimeout % 1000000;
323 tv.tv_usec = 100000;
  /external/netperf/src/
netcpu_kstat.c 295 if (time2.tv_usec < time1.tv_usec)
297 time2.tv_usec += 1000000;
301 usec = time2.tv_usec - time1.tv_usec;
netcpu_perfstat.c 196 if (time2.tv_usec < time1.tv_usec)
198 time2.tv_usec += 1000000;
202 usec = time2.tv_usec - time1.tv_usec;
netcpu_pstat.c 162 if (time2.tv_usec < time1.tv_usec)
164 time2.tv_usec += 1000000;
168 usec = time2.tv_usec - time1.tv_usec;
  /hardware/bsp/intel/peripheral/libupm/src/adafruitms1438/
adafruitms1438.cxx 80 if( (elapsed.tv_usec = now.tv_usec - startTime.tv_usec) < 0 )
82 elapsed.tv_usec += 1000000;
90 elapse = (uint32_t)((elapsed.tv_sec * 1000) + (elapsed.tv_usec / 1000));
  /system/extras/tests/ext4/
rand_emmc_perf.c 78 fprintf(full_stats, "%lld\n", (t.tv_sec * 1000000LL) + t.tv_usec);
87 max_usecs = (max.tv_sec * 1000000LL) + max.tv_usec;
88 total_usecs = (sum.tv_sec * 1000000LL) + sum.tv_usec;
101 x = (t.tv_sec * 1000000LL) + t.tv_usec; /* Convert to long long */
179 msecs = (res.tv_sec * 1000) + (res.tv_usec / 1000);
  /external/libchrome/base/time/
time_posix.cc 164 return Time((tv.tv_sec * kMicrosecondsPerSecond + tv.tv_usec) +
334 DCHECK_LT(t.tv_usec, static_cast<int>(Time::kMicrosecondsPerSecond));
335 DCHECK_GE(t.tv_usec, 0);
336 if (t.tv_usec == 0 && t.tv_sec == 0)
338 if (t.tv_usec == static_cast<suseconds_t>(Time::kMicrosecondsPerSecond) - 1 &&
342 t.tv_usec + kTimeTToMicrosecondsOffset);
349 result.tv_usec = 0;
354 result.tv_usec = static_cast<suseconds_t>(Time::kMicrosecondsPerSecond) - 1;
359 result.tv_usec = us % Time::kMicrosecondsPerSecond;
  /external/libweave/third_party/chromium/base/time/
time_posix.cc 144 return Time((tv.tv_sec * kMicrosecondsPerSecond + tv.tv_usec) +
314 DCHECK_LT(t.tv_usec, static_cast<int>(Time::kMicrosecondsPerSecond));
315 DCHECK_GE(t.tv_usec, 0);
316 if (t.tv_usec == 0 && t.tv_sec == 0)
318 if (t.tv_usec == static_cast<suseconds_t>(Time::kMicrosecondsPerSecond) - 1 &&
322 t.tv_usec + kTimeTToMicrosecondsOffset);
329 result.tv_usec = 0;
334 result.tv_usec = static_cast<suseconds_t>(Time::kMicrosecondsPerSecond) - 1;
339 result.tv_usec = us % Time::kMicrosecondsPerSecond;
  /external/libevent/include/event2/
util.h 385 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
386 if ((vvp)->tv_usec >= 1000000) { \
388 (vvp)->tv_usec -= 1000000; \
394 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
395 if ((vvp)->tv_usec < 0) { \
397 (vvp)->tv_usec += 1000000;
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
pex-unix.c 141 time->user_microseconds= r.ru_utime.tv_usec;
143 time->system_microseconds= r.ru_stime.tv_usec;
185 time->user_microseconds = r2.ru_utime.tv_usec - r1.ru_utime.tv_usec;
186 if (r2.ru_utime.tv_usec < r1.ru_utime.tv_usec)
193 time->system_microseconds = r2.ru_stime.tv_usec - r1.ru_stime.tv_usec;
194 if (r2.ru_stime.tv_usec < r1.ru_stime.tv_usec)
    [all...]

Completed in 3680 milliseconds

1 2 3 4 5 6 7 891011>>