Searched refs:the_time (Results 1 – 5 of 5) sorted by relevance
40 struct timeval the_time;41 timerclear(&the_time);42 if (0 != ::gettimeofday(&the_time,0)) {51 static_cast<TimeValue::SecondsType>( the_time.tv_sec + PosixZeroTime.seconds_ ),52 static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
20 time_t the_time; in main() local23 (void)time(&the_time); in main()24 tm_ptr = gmtime(&the_time); in main()25 printf("Raw time is %ld \n", the_time); in main()
20 time_t the_time; in main() local22 (void)time(&the_time); in main()24 tm_ptr = gmtime(&the_time); in main()
37 struct timeval the_time;38 timerclear(&the_time);39 if (0 != ::gettimeofday(&the_time,nullptr)) {48 static_cast<TimeValue::SecondsType>( the_time.tv_sec +50 static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
20 time_t the_time; in main() local24 (void)time(&the_time); in main()25 tm_ptr = localtime(&the_time); in main()