Home
last modified time | relevance | path

Searched full:speed (Results 1 – 25 of 3486) sorted by relevance

12345678910>>...140

/third_party/lz4/tests/
DREADME.md7 - `fullbench` : Precisely measure speed for each lz4 inner functions
9 - `test-lz4-speed.py` : script for testing lz4 speed difference between commits
20 #### `test-lz4-speed.py` - script for testing lz4 speed difference between commits
23 Then it compiles all branches of lz4 and performs a speed benchmark for a given list of files (the …
25 If a new commit is found it is compiled and a speed benchmark for this commit is performed.
26 The results of the speed benchmark are compared to the previous results.
27 …ression or decompression speed for one of lz4 levels is lower than `lowerLimit` (an optional param…
31 - To be sure that speed results are accurate the script should be run on a "stable" target system w…
32 - Using the script with virtual machines can lead to large variations of speed results
33 - The speed benchmark is not performed until computers' load average is lower than `maxLoadAvg` (an…
[all …]
/third_party/libinput/tools/
Dmake-ptraccel-graphs.sh13 for speed in $speeds; do
14 $tool --mode=accel --dpi=1000 --filter=linear --speed=$speed > $outfile-$speed.gnuplot
19 set xlabel "speed in mm/s"
39 set xlabel "speed in mm/s"
54 for speed in $speeds; do
55 $tool --mode=accel --dpi=1000 --filter=touchpad --speed=$speed> $outfile-$speed.gnuplot
61 set xlabel "speed in mm/s"
72 for speed in $speeds; do
73 $tool --mode=accel --speed=$speed --filter=trackpoint > $outfile-$speed.gnuplot
/third_party/gstreamer/gstplugins_bad/gst/speed/
Dgstspeed.c22 * SECTION:element-speed
23 * @title: speed
25 * Plays an audio stream at a different speed (by resampling the audio).
28 * a non-1.0 rate parameter, this will have the same effect as using the speed
34 …* gst-launch-1.0 filesrc location=test.ogg ! decodebin ! audioconvert ! speed speed=1.5 ! audiocon…
35 * ]| Plays an .ogg file at 1.5x speed.
98 GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (speed, "speed", GST_RANK_NONE,
99 GST_TYPE_SPEED, GST_DEBUG_CATEGORY_INIT (speed_debug, "speed", 0,
100 "speed element");
157 start *= filter->speed; in speed_src_event()
[all …]
/third_party/typescript/tests/baselines/reference/
DinterfacePropertiesWithSameName2.types6 getStatus(): { speed: number; };
7 >getStatus : () => { speed: number;}
8 >speed : number
33 getStatus(): { speed: number; };
34 >getStatus : () => { speed: number;}
35 >speed : number
55 …getStatus(): { speed: number; frequency: number; }; // ok because this getStatus overrides the con…
56 >getStatus : () => { speed: number; frequency: number;}
57 >speed : number
DinterfacePropertiesWithSameName1.types6 getStatus(): { speed: number; };
7 >getStatus : () => { speed: number;}
8 >speed : number
20 getStatus(): { speed: number; frequency: number; };
21 >getStatus : () => { speed: number; frequency: number;}
22 >speed : number
DinterfacePropertiesWithSameName2.symbols8 getStatus(): { speed: number; };
10 >speed : Symbol(speed, Decl(interfacePropertiesWithSameName2.ts, 2, 18))
40 getStatus(): { speed: number; };
42 >speed : Symbol(speed, Decl(interfacePropertiesWithSameName2.ts, 17, 22))
74 …getStatus(): { speed: number; frequency: number; }; // ok because this getStatus overrides the con…
76 >speed : Symbol(speed, Decl(interfacePropertiesWithSameName2.ts, 28, 18))
DinterfacePropertiesWithSameName1.symbols8 getStatus(): { speed: number; };
10 >speed : Symbol(speed, Decl(interfacePropertiesWithSameName1.ts, 2, 18))
28 getStatus(): { speed: number; frequency: number; };
30 >speed : Symbol(speed, Decl(interfacePropertiesWithSameName1.ts, 10, 18))
/third_party/curl/docs/cmdline-opts/
Dspeed-time.d1 Long: speed-time
4 Help: Trigger 'speed-limit' abort after this time
7 If a download is slower than speed-limit bytes per second during a speed-time
8 period, the download gets aborted. If speed-time is used, the default
9 speed-limit will be 1 unless set with --speed-limit.
Dspeed-limit.d1 Long: speed-limit
3 Arg: <speed>
7 If a download is slower than this given speed (in bytes per second) for
8 speed-time seconds it gets aborted. speed-time is set with --speed-time and is
Dlimit-rate.d2 Arg: <speed>
3 Help: Limit transfer speed to RATE
11 The given speed is measured in bytes/second, unless a suffix is appended.
15 If you also use the --speed-limit option, that option will take precedence and
16 might cripple the rate-limiting slightly, to help keeping the speed-limit
/third_party/curl/docs/libcurl/opts/
DCURLINFO_SPEED_UPLOAD_T.325 CURLINFO_SPEED_UPLOAD_T \- get upload speed
29 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_SPEED_UPLOAD_T, curl_off_t *speed);
31 Pass a pointer to a \fIcurl_off_t\fP to receive the average upload speed that
44 curl_off_t speed;
45 res = curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD_T, &speed);
47 printf("Upload speed %" CURL_FORMAT_CURL_OFF_T " bytes/sec\\n", speed);
DCURLINFO_SPEED_DOWNLOAD_T.325 CURLINFO_SPEED_DOWNLOAD_T \- get download speed
29 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_SPEED_DOWNLOAD_T, curl_off_t *speed);
31 Pass a pointer to a \fIcurl_off_t\fP to receive the average download speed
44 curl_off_t speed;
45 res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD_T, &speed);
47 printf("Download speed %" CURL_FORMAT_CURL_OFF_T " bytes/sec\\n", speed);
DCURLINFO_SPEED_DOWNLOAD.325 CURLINFO_SPEED_DOWNLOAD \- get download speed
29 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_SPEED_DOWNLOAD, double *speed);
31 Pass a pointer to a double to receive the average download speed that curl
47 double speed;
48 res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD, &speed);
50 printf("Download speed %.0f bytes/sec\\n", ul);
DCURLINFO_SPEED_UPLOAD.325 CURLINFO_SPEED_UPLOAD \- get upload speed
29 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_SPEED_UPLOAD, double *speed);
31 Pass a pointer to a double to receive the average upload speed that curl
47 double speed;
48 res = curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD, &speed);
50 printf("Upload speed %.0f bytes/sec\\n", ul);
DCURLOPT_MAX_SEND_SPEED_LARGE.325 CURLOPT_MAX_SEND_SPEED_LARGE \- rate limit data upload speed
34 this speed (counted in bytes per second) the transfer will pause to keep the
35 speed less than or equal to the parameter value. Defaults to unlimited
36 speed.
38 This is not an exact science. libcurl attempts to keep the average speed below
56 /* cap the upload speed to 1000 bytes/sec */
DCURLOPT_MAX_RECV_SPEED_LARGE.325 CURLOPT_MAX_RECV_SPEED_LARGE \- rate limit data download speed
34 (counted in bytes per second) the transfer will pause to keep the speed less
35 than or equal to the parameter value. Defaults to unlimited speed.
37 This is not an exact science. libcurl attempts to keep the average speed below
54 /* cap the download speed to 31415 bytes/sec */
/third_party/musl/src/termios/
Dcfsetospeed.c6 int cfsetospeed(struct termios *tio, speed_t speed) in cfsetospeed() argument
8 if (speed & ~CBAUD) { in cfsetospeed()
13 tio->c_cflag |= speed; in cfsetospeed()
17 int cfsetispeed(struct termios *tio, speed_t speed) in cfsetispeed() argument
19 return speed ? cfsetospeed(tio, speed) : 0; in cfsetispeed()
/third_party/musl/porting/liteos_a/user/src/termios/
Dcfsetospeed.c7 int cfsetospeed(struct termios *tio, speed_t speed) in cfsetospeed() argument
10 if (speed & ~CBAUD) { in cfsetospeed()
15 tio->c_cflag |= speed; in cfsetospeed()
19 int cfsetispeed(struct termios *tio, speed_t speed) in cfsetispeed() argument
22 return speed ? cfsetospeed(tio, speed) : 0; in cfsetispeed()
/third_party/boost/libs/sort/test/
DJamfile.v226 cxx11_hdr_random ] <optimization>speed : test_pdqsort ]
31 cxx11_noexcept ] <optimization>speed : test_flat_stable_sort ]
36 cxx11_noexcept ] <optimization>speed : test_spinsort ]
41 cxx11_noexcept ] <optimization>speed : test_insert_sort ]
49 … cxx11_lambdas ] <optimization>speed <threading>multi : test_block_indirect_sort ]
56 cxx11_lambdas ] <optimization>speed <threading>multi : test_sample_sort ]
63 … cxx11_lambdas ] <optimization>speed <threading>multi : test_parallel_stable_sort ]
/third_party/lz4/contrib/snap/
Dsnapcraft.yaml6 speed > 500 MB/s per core, scalable with multi-cores CPU. It features an
7 extremely fast decoder, with speed in multiple GB/s per core, typically
8 reaching RAM speed limits on multi-core systems.
10 Speed can be tuned dynamically, selecting an "acceleration" factor which
11 trades compression ratio for faster speed. On the other end, a high
14 speed.
/third_party/curl/tests/unit/
Dunit1606.c50 curl_off_t speed, in runawhile() argument
63 /* fake the current transfer speed */ in runawhile()
64 easy->progress.current_speed = speed; in runawhile()
70 speed -= dec; in runawhile()
80 "wrong low speed timeout");
82 "wrong low speed timeout");
84 "wrong log speed timeout");
86 "wrong log speed timeout");
/third_party/skia/tools/skpbench/
D_hardware_android.py129 speed = freqs[int((len(freqs)-1) * self.desiredClock)]
132 echo {speed} > /sys/devices/system/cpu/cpu{id}/cpufreq/scaling_max_freq
133 echo {speed} > /sys/devices/system/cpu/cpu{id}/cpufreq/scaling_min_freq
134 …echo {speed} > /sys/devices/system/cpu/cpu{id}/cpufreq/scaling_setspeed'''.format(id=i, speed=spee…
150 speed = freqs[int((len(freqs)-1) * self.desiredClock)]
155 echo {speed} > /sys/class/kgsl/kgsl-3d0/devfreq/max_freq
156 echo {speed} > /sys/class/kgsl/kgsl-3d0/devfreq/min_freq'''.format(speed=speed))
/third_party/lz4/
DNEWS2 perf: highly improved speed in kernel space, by @terrelln
3 perf: faster speed with Visual Studio, thanks to @wolfpld and @remittor
4 perf: improved dictionary compression speed, by @felixhandte
29 perf: improved lz4frame streaming API speed, by @dreambottle
30 perf: speed up lz4hc on slow patterns when using external dictionary, by @terrelln
45 perf: large decompression speed improvement on x86/x64 (up to +20%) by @djwatson
57 perf: minor decompression speed improvement (~+2%) with gcc
67 perf: improved decompression speed and binary size, by Alexey Tourbin (@svpv)
68 perf: slightly faster HC compression and decompression speed
79 perf : slightly faster compression and decompression speed
[all …]
/third_party/python/Lib/test/
Dtime_hashlib.py1 # It's intended that this script be run by hand. It runs speed tests on
50 print("testing speed of old", hName, "legacy interface")
54 print("testing speed of _hashlib.%s" % sys.argv[2], getattr(_hashlib, sys.argv[2]))
58 print("testing speed of _hashlib.new(%r)" % sys.argv[2])
61 print("testing speed of hashlib."+hName, getattr(hashlib, hName))
64 print("testing speed of hashlib.new(%r)" % hName)
70 print("pass argument(s) naming the hash to run a speed test on:")
/third_party/toybox/toys/net/
Dmicrocom.c11 usage: microcom [-s SPEED] [-X] DEVICE
15 -s Set baud rate to SPEED
39 int i, speed; in microcom_main() local
41 if (!TT.s) speed = 115200; in microcom_main()
42 else speed = atoi(TT.s); in microcom_main()
50 xset_terminal(TT.fd, 1, speed, &TT.original_fd_state); in microcom_main()

12345678910>>...140