HomeSort by relevance Sort by last modified time
    Searched refs:tve (Results 1 - 3 of 3) sorted by null

  /external/libmicrohttpd/src/examples/
benchmark.c 70 struct timeval tve; local
75 gettimeofday (&tve, NULL);
78 if (tve.tv_usec >= tv->tv_usec)
79 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
80 + (tve.tv_usec - tv->tv_usec);
82 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
83 - tv->tv_usec + tve.tv_usec;
benchmark_https.c 70 struct timeval tve; local
75 gettimeofday (&tve, NULL);
78 if (tve.tv_usec >= tv->tv_usec)
79 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
80 + (tve.tv_usec - tv->tv_usec);
82 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
83 - tv->tv_usec + tve.tv_usec;
  /external/blktrace/btt/
bt_timeline.c 102 struct timeval tvs, tve; local
112 gettimeofday(&tve, NULL);
115 double tps, dt_input = tv2dbl(&tve) - tv2dbl(&tvs);

Completed in 419 milliseconds