HomeSort by: relevance | last modified time | path
    Searched defs:time_diff (Results 1 - 6 of 6) sorted by relevancy

  /src/external/mit/libuv/dist/src/unix/
posix-poll.c 139 uint64_t time_diff; local
336 time_diff = loop->time - time_base;
337 if (time_diff >= (uint64_t) timeout)
340 timeout -= time_diff;
  /src/external/gpl3/binutils/dist/gprof/
hist.c 544 double time_diff; local
546 time_diff = right->hist.time - left->hist.time;
548 if (time_diff > 0.0)
551 if (time_diff < 0.0)
  /src/external/gpl3/binutils.old/dist/gprof/
hist.c 544 double time_diff; local
546 time_diff = right->hist.time - left->hist.time;
548 if (time_diff > 0.0)
551 if (time_diff < 0.0)
  /src/crypto/external/apache2/openssl/dist/crypto/http/
http_client.c 534 time_t time_diff, now = time(NULL); local
541 time_diff = max_time - now;
542 *ptimeout = time_diff > INT_MAX ? INT_MAX : (int)time_diff;
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_port.c 1340 uint64_t time_diff; local
1361 time_diff = ossl_time2seconds(ossl_time_abs_difference(token.timestamp,
1363 if ((token.is_retry && time_diff > RETRY_LIFETIME)
1364 || (!token.is_retry && time_diff > NEW_TOKEN_LIFETIME))
1417 if (time_diff > ((NEW_TOKEN_LIFETIME * 9) / 10))
  /src/crypto/external/bsd/openssl/dist/crypto/http/
http_client.c 507 time_t time_diff, now = time(NULL); local
514 time_diff = max_time - now;
515 *ptimeout = time_diff > INT_MAX ? INT_MAX : (int)time_diff;

Completed in 42 milliseconds