HomeSort by relevance Sort by last modified time
    Searched defs:time (Results 1 - 25 of 660) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
ConstantTimeClock.c 2 C Run-Time Libraries (CRT) Time Management Routines Wrapper Implementation
5 This C file implements constant time value for time() and NULL for gmtime()
7 of following APIs which need system time support:
29 // -- Time Management Routines --
32 time_t time (time_t *timer) function
  /external/e2fsprogs/contrib/python-uuid/
test.py 3 import time
7 time = time.time() variable
11 print u, "...", time
  /device/google/cuttlefish_common/common/libs/time/
monotonic_time.cpp 16 #include "common/libs/time/monotonic_time.h"
19 namespace time { namespace in namespace:cvd
25 } // namespace time
  /external/caliper/examples/src/main/java/examples/
MessageDigestCreationBenchmark.java 33 @Benchmark void time(int reps) throws Exception { method in class:MessageDigestCreationBenchmark
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
128-space-before-hash.c 16 for the third time, yes! variable
  /external/skia/samplecode/
SampleNima.cpp 59 float time = std::fmod(timer.secs(), fActor->duration()); variable
60 fActor->seek(time);
  /external/skqp/samplecode/
SampleNima.cpp 59 float time = std::fmod(timer.secs(), fActor->duration()); variable
60 fActor->seek(time);
  /external/tensorflow/tensorflow/lite/profiling/
time.h 22 namespace time { namespace in namespace:tflite::profiling
25 } // namespace time
time.cc 15 #include "tensorflow/lite/profiling/time.h"
21 #include <sys/time.h>
22 #include <time.h>
27 namespace time { namespace in namespace:tflite::profiling
59 } // namespace time
time_test.cc 16 #include "tensorflow/lite/profiling/time.h"
22 namespace time { namespace in namespace:tflite::profiling
35 // Sleeping should be reflected in the current time.
48 } // namespace time
  /external/testng/src/test/java/test/tmp/
IgnoreUntil.java 17 public String time(); method in interface:IgnoreUntil
  /external/iw/
roc.c 21 int freq, time; local
30 time = strtol(argv[1], &end, 0);
35 NLA_PUT_U32(msg, NL80211_ATTR_DURATION, time);
41 COMMAND(roc, start, "<freq> <time in ms>", NL80211_CMD_REMAIN_ON_CHANNEL, 0, CIB_NETDEV, handle_roc_start, "");
  /art/test/659-unpadded-array/src-art/
Main.java 26 long time = System.currentTimeMillis(); local
43 } while (System.currentTimeMillis() - time < 30000);
  /device/generic/goldfish/dhcp/client/
timer.cpp 19 #include <time.h>
22 struct timespec time = { 0, 0 }; local
23 clock_gettime(CLOCK_MONOTONIC, &time);
24 return static_cast<uint64_t>(time.tv_sec) * 1000u +
25 static_cast<uint64_t>(time.tv_nsec / 1000000u);
  /external/python/cpython2/RISCOS/
sleep.c 12 os_t starttime, endtime, time; /* monotonic times (centiseconds) */ local
16 /* calculate end time */
27 time = starttime;
29 while ( time<endtime && time>=starttime ) {
35 time = os_read_monotonic_time();
  /art/test/927-timers/
timers.cc 46 jlong time; local
47 jvmtiError result = jvmti_env->GetTime(&time);
51 return time;
  /cts/suite/audio_quality/test_description/processing/
calc_thd.py 54 time = index / samplingRate variable
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/
NanoTimer.java 23 private long time = 0; field in class:NanoTimer
26 time -= System.nanoTime();
31 time += System.nanoTime();
35 time -= o.time;
39 time = 0;
47 return ((double) time / 1000000000) + " s";
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
EntryStruct.java 26 public long time; field in class:EntryStruct
  /external/linux-kselftest/android/include/sys/
timeb.h 4 #include <time.h>
7 time_t time; member in struct:timeb
21 tp->time = ts.tv_sec;
  /external/linux-kselftest/tools/testing/selftests/rtc/
setdate.c 1 /* Real Time Clock Driver Test
21 #include <sys/time.h>
35 const char *time = default_time; local
39 time = argv[3];
59 sscanf(time, "%d:%d:%d", &new.tm_hour, &new.tm_min, &new.tm_sec);
61 fprintf(stderr, "Test will set RTC date/time to %d-%d-%d, %02d:%02d:%02d.\n",
80 fprintf(stderr, "\n\nCurrent RTC date/time is %d-%d-%d, %02d:%02d:%02d.\n",
  /external/linux-kselftest/tools/testing/selftests/timers/
rtctest_setdate.c 1 /* Real Time Clock Driver Test
21 #include <sys/time.h>
35 const char *time = default_time; local
39 time = argv[3];
59 sscanf(time, "%d:%d:%d", &new.tm_hour, &new.tm_min, &new.tm_sec);
61 fprintf(stderr, "Test will set RTC date/time to %d-%d-%d, %02d:%02d:%02d.\n",
80 fprintf(stderr, "\n\nCurrent RTC date/time is %d-%d-%d, %02d:%02d:%02d.\n",
  /external/ltp/android/include/sys/
timeb.h 4 #include <time.h>
7 time_t time; member in struct:timeb
21 tp->time = ts.tv_sec;
  /external/mesa3d/src/glx/windows/
xwindowsdri.h 37 Time time; /* server timestamp when event happened */ member in struct:__anon34145
  /external/mesa3d/src/util/
os_time.c 30 * OS independent time-manipulation functions.
44 # include <time.h> /* timeval */
45 # include <sys/time.h> /* timeval */
99 struct timespec time; local
100 time.tv_sec = usecs / 1000000;
101 time.tv_nsec = (usecs % 1000000) * 1000;
102 while (clock_nanosleep(CLOCK_MONOTONIC, 0, &time, &time) == EINTR);
123 int64_t time, abs_timeout; local
129 time = os_time_get_nano()
    [all...]

Completed in 1010 milliseconds

1 2 3 4 5 6 7 8 91011>>