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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/include/nonunix/sys/
time.h 1 #include <time.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
1-1-buildonly.c 8 Test the existence of the time.h file and that it can be
12 #include <time.h>
28-1-buildonly.c 9 time_t time(time_t *);
13 #include <time.h>
20 dummyvar = time;
3-1-buildonly.c 11 #include <time.h>
3-2-buildonly.c 11 #include <time.h>
3-3-buildonly.c 13 #include <time.h>
3-4-buildonly.c 13 #include <time.h>
6-1-buildonly.c 12 #include <time.h>
6-2-buildonly.c 12 #include <time.h>
6-3-buildonly.c 13 #include <time.h>
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERUTCTime.java 6 * DER UTC time object.
16 public DERUTCTime(Date time)
18 super(time);
21 public DERUTCTime(String time)
23 super(time);
DERGeneralizedTime.java 9 * DER Generalized time object.
28 public DERGeneralizedTime(byte[] time)
30 super(time);
33 public DERGeneralizedTime(Date time)
35 super(time);
38 public DERGeneralizedTime(String time)
40 super(time);
45 if (time[time.length - 1] == 'Z')
49 byte[] derTime = new byte[time.length + 4]
    [all...]
  /external/stressapptest/src/
clock.h 19 #include <time.h>
26 virtual time_t Now() { return time(NULL); }
  /external/syzkaller/vendor/google.golang.org/grpc/keepalive/
keepalive.go 23 "time"
32 // After a duration of this time if the client doesn't see any activity it pings the server to see if the transport is still alive.
33 Time time.Duration // The current default value is infinity.
36 Timeout time.Duration // The current default value is 20 seconds.
43 // MaxConnectionIdle is a duration for the amount of time after which an idle connection would be closed by sending a GoAway.
44 // Idleness duration is defined since the most recent time the number of outstanding RPCs became zero or the connection establishment.
45 MaxConnectionIdle time.Duration // The current default value is infinity.
46 // MaxConnectionAge is a duration for the maximum amount of time a connection may exist before it will be closed by sending a GoAway.
48 MaxConnectionAge time.Duration // The current default value is infinity
    [all...]
  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/disco_f746ng/
timer.cc 22 void SetTimeInMilliseconds(int32_t time) { g_current_time = time; }
  /external/webrtc/webrtc/base/
ratelimiter.cc 15 bool RateLimiter::CanUse(size_t desired, double time) {
16 return ((time > period_end_ && desired <= max_per_period_) ||
20 void RateLimiter::Use(size_t used, double time) {
21 if (time > period_end_) {
22 period_start_ = time;
23 period_end_ = time + period_length_;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DERGeneralizedTime.java 10 * DER Generalized time object.
30 public DERGeneralizedTime(byte[] time)
32 super(time);
35 public DERGeneralizedTime(Date time)
37 super(time);
40 public DERGeneralizedTime(String time)
42 super(time);
47 if (time[time.length - 1] == 'Z')
51 byte[] derTime = new byte[time.length + 4]
    [all...]
DERUTCTime.java 7 * DER UTC time object.
18 public DERUTCTime(Date time)
20 super(time);
23 public DERUTCTime(String time)
25 super(time);
  /external/jemalloc_new/src/
nstime.c 12 nstime_init(nstime_t *time, uint64_t ns) {
13 time->ns = ns;
17 nstime_init2(nstime_t *time, uint64_t sec, uint64_t nsec) {
18 time->ns = sec * BILLION + nsec;
22 nstime_ns(const nstime_t *time) {
23 return time->ns;
27 nstime_msec(const nstime_t *time) {
28 return time->ns / MILLION;
32 nstime_sec(const nstime_t *time) {
33 return time->ns / BILLION
    [all...]
  /external/syzkaller/vendor/google.golang.org/grpc/
backoff.go 25 "time"
31 MaxDelay: 120 * time.Second,
37 MaxDelay time.Duration
  /external/u-boot/drivers/rtc/
sandbox_rtc.c 15 static int sandbox_rtc_get(struct udevice *dev, struct rtc_time *time)
17 time->tm_sec = dm_i2c_reg_read(dev, REG_SEC);
18 if (time->tm_sec < 0)
19 return time->tm_sec;
20 time->tm_min = dm_i2c_reg_read(dev, REG_MIN);
21 if (time->tm_min < 0)
22 return time->tm_min;
23 time->tm_hour = dm_i2c_reg_read(dev, REG_HOUR);
24 if (time->tm_hour < 0)
25 return time->tm_hour
    [all...]
  /external/jemalloc/src/
nstime.c 6 nstime_init(nstime_t *time, uint64_t ns)
9 time->ns = ns;
13 nstime_init2(nstime_t *time, uint64_t sec, uint64_t nsec)
16 time->ns = sec * BILLION + nsec;
20 nstime_ns(const nstime_t *time)
23 return (time->ns);
27 nstime_sec(const nstime_t *time)
30 return (time->ns / BILLION);
34 nstime_nsec(const nstime_t *time)
37 return (time->ns % BILLION)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
reference_picture_selection_unittest.cc 18 // The minimum time between reference frame updates. Should match the values
21 // The minimum time between decoder refreshes through restricted prediction.
54 uint32_t time = (4 * kMinUpdateInterval) / 3 + 1; local
55 EXPECT_EQ(rps_.EncodeFlags(1, false, 90 * time), kPropagateAltRef);
57 time += (4 * (time + kMinUpdateInterval)) / 3 + 1;
59 EXPECT_EQ(rps_.EncodeFlags(2, false, 90 * time), kPropagateGolden);
62 time = (4 * (time + kMinUpdateInterval)) / 3 + 1;
63 EXPECT_EQ(rps_.EncodeFlags(3, false, 90 * time), kPropagateAltRef)
72 uint32_t time = kRtt + 1; local
    [all...]
  /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

Completed in 466 milliseconds

1 2 3 4 5 6 7 8 91011>>