Home
last modified time | relevance | path

Searched refs:now_ul (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/openssl/crypto/bio/
H A Dbss_dgram.c1903 unsigned __int64 now_ul; in get_current_time() local
1908 now_ul = ((unsigned __int64)now_ft.dwHighDateTime << 32) | now_ft.dwLowDateTime; in get_current_time()
1910 now_ul -= 116444736000000000ULL; in get_current_time()
1912 now_ul -= 116444736000000000UI64; /* re-bias to 1/1/1970 */ in get_current_time()
1914 t->tv_sec = (long)(now_ul / 10000000); in get_current_time()
1915 t->tv_usec = ((int)(now_ul % 10000000)) / 10; in get_current_time()