/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/ |
jdk6-gc.txt | 1 [GC 987K->384K(62848K), 0.0012320 secs] 2 [Full GC 384K->288K(62848K), 0.0054550 secs] 3 [GC 288K->288K(62848K), 0.0004450 secs] 4 [Full GC 288K->288K(62848K), 0.0049580 secs] 5 [GC 288K->288K(62848K), 0.0004590 secs] 6 [Full GC 288K->288K(62848K), 0.0048240 secs] 7 [GC 288K->288K(62848K), 0.0005700 secs] 8 [Full GC 288K->288K(62848K), 0.0063250 secs] 9 [GC 288K->288K(62848K), 0.0003540 secs] 10 [Full GC 288K->288K(62848K), 0.0048210 secs] [all...] |
jdk7-gc.txt | 1 2013-02-11T20:15:26.706-0600: 0.098: [GC 1316K->576K(62848K), 0.0014240 secs] 2 2013-02-11T20:15:26.708-0600: 0.099: [Full GC 576K->486K(62848K), 0.0044860 secs] 3 2013-02-11T20:15:26.713-0600: 0.104: [GC 486K->486K(62848K), 0.0005000 secs] 4 2013-02-11T20:15:26.713-0600: 0.105: [Full GC 486K->486K(62848K), 0.0039840 secs] 5 2013-02-11T20:15:26.717-0600: 0.109: [GC 486K->486K(62848K), 0.0007650 secs] 6 2013-02-11T20:15:26.718-0600: 0.110: [Full GC 486K->486K(62848K), 0.0038350 secs] 7 2013-02-11T20:15:26.722-0600: 0.113: [GC 486K->486K(62848K), 0.0005430 secs] 8 2013-02-11T20:15:26.723-0600: 0.114: [Full GC 486K->486K(62848K), 0.0045480 secs] 9 2013-02-11T20:15:26.727-0600: 0.119: [GC 486K->486K(62848K), 0.0003950 secs] 10 2013-02-11T20:15:26.728-0600: 0.119: [Full GC 486K->486K(62848K), 0.0036570 secs] [all...] |
/external/squashfs-tools/RELEASE-READMEs/ |
PERFORMANCE.README | 35 Zisofs 49.88 seconds (User 2.60 secs, Sys 11.19 secs) 36 Cloop 20.80 seconds (User 2.71 secs, Sys 13.50 secs) 37 Squashfs2.0 16.56 seconds (User 2.42 secs, Sys 10.37 secs) 38 Squashfs2.1 10.14 seconds (User 2.48 secs, Sys 4.44 secs) 45 Zisofs 27 minutes 28.54 seconds (User 3.00 secs, Sys 1 min 4.80 secs) [all...] |
README-2.1 | 36 Zisofs 35 minutes 7.895 seconds (User 7.868 secs, Sys 34 mins 5.621 secs) 37 Cloop 35 minutes 12.765 seconds (User 7.771 secs, Sys 34 mins 3.869 secs) 38 Squashfs2.1 19 seconds (User 5.119 secs, Sys 14.547 secs) 53 Zisofs 49.875 seconds (User time 2.589 secs, Sys 11.194 secs) 54 Cloop 20.797 seconds (User time 2.706 secs, Sys 13.496 secs) [all...] |
/external/autotest/client/tests/unixbench/ |
unixbench.py | 31 # 10 secs for small tests, 30 secs for bigger tests 105 Dhrystone 2 using register variables 7918001.7 lps (10.0 secs, 10 samples) 106 System Call Overhead 1427272.7 lps (10.0 secs, 10 samples) 107 Process Creation 11508.6 lps (30.0 secs, 3 samples) 108 Execl Throughput 4159.7 lps (29.7 secs, 3 samples) 109 File Read 1024 bufsize 2000 maxblocks 1708109.0 KBps (30.0 secs, 3 samples) 110 File Write 1024 bufsize 2000 maxblocks 788024.0 KBps (30.0 secs, 3 samples) 111 File Copy 1024 bufsize 2000 maxblocks 452986.0 KBps (30.0 secs, 3 samples) 112 File Read 256 bufsize 500 maxblocks 508752.0 KBps (30.0 secs, 3 samples [all...] |
/prebuilts/go/darwin-x86/src/net/ |
tcpsockopt_darwin.go | 22 secs := int(d.Seconds()) 23 switch err := syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, sysTCP_KEEPINTVL, secs); err { 28 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPALIVE, secs))
|
tcpsockopt_unix.go | 22 secs := int(d.Seconds()) 23 if err := syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, secs); err != nil { 26 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs))
|
/prebuilts/go/linux-x86/src/net/ |
tcpsockopt_darwin.go | 22 secs := int(d.Seconds()) 23 switch err := syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, sysTCP_KEEPINTVL, secs); err { 28 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPALIVE, secs))
|
tcpsockopt_unix.go | 22 secs := int(d.Seconds()) 23 if err := syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, secs); err != nil { 26 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs))
|
/system/core/include/utils/ |
Timers.h | 38 static CONSTEXPR inline nsecs_t seconds_to_nanoseconds(nsecs_t secs) 40 return secs*1000000000; 43 static CONSTEXPR inline nsecs_t milliseconds_to_nanoseconds(nsecs_t secs) 45 return secs*1000000; 48 static CONSTEXPR inline nsecs_t microseconds_to_nanoseconds(nsecs_t secs) 50 return secs*1000; 53 static CONSTEXPR inline nsecs_t nanoseconds_to_seconds(nsecs_t secs) 55 return secs/1000000000; 58 static CONSTEXPR inline nsecs_t nanoseconds_to_milliseconds(nsecs_t secs) 60 return secs/1000000 [all...] |
/external/iproute2/man/man8/ |
ifstat.8 | 29 .B \-d, \-\-scan=SECS 30 Sample statistics every SECS second. 44 .B \-t, \-\-interval=SECS 45 Report average over the last SECS seconds.
|
/external/skia/samplecode/ |
SampleAnimBlur.cpp | 15 SkScalar get_anim_sin(double secs, SkScalar amplitude, SkScalar periodInSec, SkScalar phaseInSec) { 19 double t = secs + phaseInSec; 63 fBlurSigma = get_anim_sin(timer.secs(), 100, 4, 5); 64 fCircleRadius = 3 + get_anim_sin(timer.secs(), 150, 25, 3);
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebt_limit.h | 15 __u32 avg; /* Average secs between packets * scale */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_limit.h | 14 u_int32_t avg; /* Average secs between packets * scale */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_limit.h | 15 __u32 avg; /* Average secs between packets * scale */
|
/external/androidplot/Examples/DemoApp/res/layout/ |
step_chart_example.xml | 13 androidplot.domainLabel="time (secs)"
|
/external/curl/tests/data/ |
test29 | 30 HTTP with 2 secs timeout
|
test303 | 33 HTTPS with 8 secs timeout
|
/external/iptables/include/linux/netfilter/ |
xt_limit.h | 14 __u32 avg; /* Average secs between packets * scale */
|
/external/kernel-headers/original/uapi/linux/ |
llc.h | 37 LLC_OPT_ACK_TMR_EXP, /* ack expire time (secs). */ 38 LLC_OPT_P_TMR_EXP, /* pf cycle expire time (secs). */ 39 LLC_OPT_REJ_TMR_EXP, /* rej sent expire time (secs). */ 40 LLC_OPT_BUSY_TMR_EXP, /* busy state expire time (secs). */
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
xt_limit.h | 14 __u32 avg; /* Average secs between packets * scale */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
llc.h | 33 LLC_OPT_ACK_TMR_EXP, /* ack expire time (secs). */ 34 LLC_OPT_P_TMR_EXP, /* pf cycle expire time (secs). */ 35 LLC_OPT_REJ_TMR_EXP, /* rej sent expire time (secs). */ 36 LLC_OPT_BUSY_TMR_EXP, /* busy state expire time (secs). */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/ |
xt_limit.h | 14 __u32 avg; /* Average secs between packets * scale */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
llc.h | 37 LLC_OPT_ACK_TMR_EXP, /* ack expire time (secs). */ 38 LLC_OPT_P_TMR_EXP, /* pf cycle expire time (secs). */ 39 LLC_OPT_REJ_TMR_EXP, /* rej sent expire time (secs). */ 40 LLC_OPT_BUSY_TMR_EXP, /* busy state expire time (secs). */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/ |
xt_limit.h | 14 __u32 avg; /* Average secs between packets * scale */
|