HomeSort by relevance Sort by last modified time
    Searched refs:time (Results 451 - 475 of 8640) sorted by null

<<11121314151617181920>>

  /external/linux-kselftest/tools/testing/selftests/timers/
valid-adjtimex.c 29 #include <time.h>
30 #include <sys/time.h>
205 tmx.time.tv_sec = offset / NSEC_PER_SEC;
206 tmx.time.tv_usec = offset % NSEC_PER_SEC;
208 if (offset < 0 && tmx.time.tv_usec) {
209 tmx.time.tv_sec -= 1;
210 tmx.time.tv_usec += NSEC_PER_SEC;
213 tmx.time.tv_sec = offset / USEC_PER_SEC;
214 tmx.time.tv_usec = offset % USEC_PER_SEC;
216 if (offset < 0 && tmx.time.tv_usec)
    [all...]
  /external/llvm/lib/Support/Unix/
Unix.h 43 # include <sys/time.h>
45 #include <time.h>
  /external/llvm/unittests/Support/
TimeValueTest.cpp 1 //===- llvm/unittest/Support/TimeValueTest.cpp - Time Value tests ---------===//
12 #include <time.h>
19 time_t now_t = time(nullptr);
32 // The "seconds" part in Posix time may be expected as zero.
  /external/ltp/testcases/kernel/syscalls/time/
time01.c 42 * TEST TITLE : Basic test for time(2)
48 * WALL CLOCK TIME : 1
62 * 1.) time(2) returns...(See Description)
81 * No run-time environmental needs.
90 * This is a Phase I test for the time(2) system call. It is intended
93 * time(2).
115 #include <time.h>
137 * Call time(2)
139 TEST(time(0));
143 tst_resm(TFAIL, "time(0) Failed, errno=%d : %s"
    [all...]
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create_default/
rpc_authunix_create_default.c 30 #include <time.h>
34 #include <sys/time.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_gettime/
1-2.c 16 #include <time.h>
17 #include <sys/time.h>
2-1.c 16 #include <time.h>
17 #include <sys/time.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/
6-1.c 23 #include <time.h>
40 ts.tv_sec = time(NULL);
6-2.c 23 #include <time.h>
42 ts.tv_sec = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_trylock/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_once/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
testfrmw.c 29 #include <time.h>
54 nw = time(NULL);
  /external/oj-libjdwp/src/solaris/back/
proc_md.h 30 #include <time.h>
31 #include <sys/time.h>
  /external/proguard/src/proguard/gui/splash/
TypeWriterString.java 53 public String getString(long time)
55 double t = timing.getTiming(time);
  /external/protobuf/src/google/protobuf/stubs/
time.h 49 // negative to represent time before 1970-01-01) to DateTime. Returns false
52 bool LIBPROTOBUF_EXPORT SecondsToDateTime(int64 seconds, DateTime* time);
55 bool LIBPROTOBUF_EXPORT DateTimeToSeconds(const DateTime& time, int64* seconds);
59 // Formats a time string in RFC3339 fromat.
67 // Parses a time string. This method accepts RFC3339 date/time string with UTC

Completed in 330 milliseconds

<<11121314151617181920>>