HomeSort by relevance Sort by last modified time
    Searched full:time (Results 1101 - 1125 of 43060) sorted by null

<<41424344454647484950>>

  /external/clang/test/SemaTemplate/
instantiate-decl-init.cpp 5 // CXXConstructExpr at definition time, which would lead to a failure at
6 // instantiation time.
  /external/e2fsprogs/
README 4 From time to time, I release new versions of e2fsprogs, to fix
  /external/e2fsprogs/resize/
test-resize 18 time $RESIZE2FS -d 31 -p $FS > /tmp/r1
24 time $RESIZE2FS -d 31 -p $FS > /tmp/r2
  /external/e2fsprogs/tests/
filter.sed 10 /^Last write time:/d
11 /^Last mount time:/d
  /external/iproute2/man/man8/
rtacct.8 38 Do not update history, so that the next time you will see counters including values accumulated to the moment of this measurement too.
44 Time interval to average rates. Default value is 60 seconds.
  /external/ipsec-tools/src/racoon/samples/
racoon.conf.sample-inherit 38 lifetime time 1 min; # sec,min,hour
51 lifetime time 12 hour;
  /external/ipsec-tools/src/racoon/
throttle.c 40 # include <sys/time.h>
41 # include <time.h>
44 # include <sys/time.h>
46 # include <time.h>
85 te->penalty = time(NULL) + isakmp_cfg_config.auth_throttle;
104 now = time(NULL);
125 * give no penalty even on error: this is the first time
133 return (time(NULL)
  /external/kernel-headers/original/uapi/asm-x86/asm/
mce.h 14 __u64 tsc; /* cpu time stamp counter */
15 __u64 time; /* wall time_t when error was detected */ member in struct:mce
  /external/kernel-headers/original/uapi/linux/
rtc.h 3 * This version contains the part of the user interface to the Real Time Clock
16 * struct tm in <time.h>, but it needs to be here so that the kernel
39 struct rtc_time time; /* time the alarm is set to */ member in struct:rtc_wkalrm
79 #define RTC_ALM_SET _IOW('p', 0x07, struct rtc_time) /* Set alarm time */
80 #define RTC_ALM_READ _IOR('p', 0x08, struct rtc_time) /* Read alarm time */
81 #define RTC_RD_TIME _IOR('p', 0x09, struct rtc_time) /* Read RTC time */
82 #define RTC_SET_TIME _IOW('p', 0x0a, struct rtc_time) /* Set RTC time */
  /external/libcxx/test/localization/locale.categories/category.time/
Android.mk 17 test_makefile := external/libcxx/test/localization/locale.categories/category.time/Android.mk
19 test_name := localization/locale.categories/category.time/nothing_to_do
  /external/libcxx/test/utilities/date.time/
Android.mk 17 test_makefile := external/libcxx/test/utilities/date.time/Android.mk
19 test_name := utilities/date.time/tested_elsewhere
  /external/libpcap/msdos/
bin2c.c 4 #include <time.h>
19 time_t now = time (NULL);
  /external/lldb/test/pexpect-2.4/examples/
ssh_tunnel.py 18 import time namespace
36 time.sleep (0.1)
38 time.sleep (60) # Cygwin is slow to update process status.
48 time.sleep (1)
53 time.sleep (13)
55 print time.asctime(),
58 time.sleep (11)
62 time.sleep (7)
  /external/llvm/test/YAMLParser/
spec-02-28.data 4 Time: 2001-11-23 15:01:42 -5
10 Time: 2001-11-23 15:02:31 -5
  /external/proguard/src/proguard/gui/splash/
RectangleSprite.java 94 public void paint(Graphics graphics, long time)
96 graphics.setColor(color.getColor(time));
98 int xt = x.getInt(time);
99 int yt = y.getInt(time);
100 int w = width.getInt(time);
101 int h = height.getInt(time);
102 int aw = arcWidth.getInt(time);
103 int ah = arcHeight.getInt(time);
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlgetticks.html 13 TITLE="Time"
14 HREF="time.html"><LINK
16 TITLE="Time"
17 HREF="time.html"><LINK
48 HREF="time.html"
158 HREF="time.html"
186 >Time</TD
192 HREF="time.html"
  /external/replicaisland/src/com/replica/replicaisland/
PlayerComponent.java 118 protected void move(float time, float timeDelta, GameObject parentObject) {
147 if (jumpButton.getTriggered(time) && mTouchingGround) {
149 // it by time.
151 mJumpTime = time;
152 } else if (time > mJumpTime + JUMP_TO_JETS_DELAY) {
215 TimeSystem time = sSystemRegistry.timeSystem; local
218 final float gameTime = time.getGameTime();
244 // To extend the invincible time we need to increment the value above (easy)
246 // timer (not easy). Next time, make a shared value system for this
331 protected void stateMove(float time, float timeDelta, GameObject parentObject)
    [all...]
  /external/srec/portable/include/
pcputimer.h 55 * Starts the timer. This sets the reference time from which all new elapsed
56 * time are computed. This does not reset the elapsed time to 0. This is
71 * Returns the timer elapsed time. If the Timer is in the stopped state,
74 * time since the last time PCPUTimerStart() was called.
82 * Resets the elapsed time to 0 and resets the reference time of the Timer.
  /external/wpa_supplicant_8/wpa_supplicant/examples/
udhcpd-p2p.conf 20 # If remaining is true (default), udhcpd will store the time
22 # for embedded systems that cannot keep time between reboots.
23 # If you set remaining to no, the absolute time that the lease
29 # The time period at which udhcpd will write out a dhcpd.leases
36 # The amount of time that an IP will be reserved (leased) for if a
42 # The amount of time that an IP will be reserved (leased) for if an
52 # If a lease to be given is below this value, the full lease time is
65 # Every time udhcpd writes a leases file, the below script will be called.
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
AnimatedVectorDrawableDupPerf.java 99 long time = android.os.SystemClock.elapsedRealtimeNanos(); local
103 time = android.os.SystemClock.elapsedRealtimeNanos()-time;
106 t.setText("avgL=" + df.format(time / (icon.length * 1000000.)) + " ms");
108 time = android.os.SystemClock.elapsedRealtimeNanos();
116 time = android.os.SystemClock.elapsedRealtimeNanos()-time;
118 t.setText("avgS=" + df.format(time / (icon.length * 1000000.)) + " ms");
VectorDrawablePerformance.java 71 long time = android.os.SystemClock.elapsedRealtimeNanos(); local
75 time = android.os.SystemClock.elapsedRealtimeNanos()-time;
78 t.setText("avgL=" + df.format(time / (icon.length * 1000000.)) + " ms");
80 time = android.os.SystemClock.elapsedRealtimeNanos();
88 time = android.os.SystemClock.elapsedRealtimeNanos()-time;
90 t.setText("avgS=" + df.format(time / (icon.length * 1000000.)) + " ms");
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
rstypes.rs 26 // This test focuses primarily on compilation-time, not run-time.
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
rstypes.rs 26 // This test focuses primarily on compilation-time, not run-time.
  /libcore/luni/src/main/java/java/util/concurrent/
Delayed.java 24 * given time unit.
26 * @param unit the time unit
  /packages/apps/Browser/src/com/android/browser/
Performance.java 40 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 1: user time
41 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 2: nice time
42 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 3: sys time
43 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 4: idle time
44 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 5: iowait time
45 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 6: irq time
46 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG // 7: softirq time
105 + " ms clock time to load the page." + "\nbrowser process used "

Completed in 1325 milliseconds

<<41424344454647484950>>