Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DTimeValue.inc40 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 *
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/gmtime/
D1-1.c20 time_t the_time; in main() local
23 (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()
D2-1.c20 time_t the_time; in main() local
22 (void)time(&the_time); in main()
24 tm_ptr = gmtime(&the_time); in main()
/external/llvm/lib/Support/Unix/
DTimeValue.inc37 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 *
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/
D3-1.c20 time_t the_time; in main() local
24 (void)time(&the_time); in main()
25 tm_ptr = localtime(&the_time); in main()