| /third_party/lz4/tests/ |
| D | README.md | 7 - `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/ |
| D | make-ptraccel-graphs.sh | 13 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/ |
| D | gstspeed.c | 22 * 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/ |
| D | interfacePropertiesWithSameName2.types | 6 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
|
| D | interfacePropertiesWithSameName1.types | 6 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
|
| D | interfacePropertiesWithSameName2.symbols | 8 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))
|
| D | interfacePropertiesWithSameName1.symbols | 8 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/ |
| D | speed-time.d | 1 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.
|
| D | speed-limit.d | 1 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
|
| D | limit-rate.d | 2 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/ |
| D | CURLINFO_SPEED_UPLOAD_T.3 | 25 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);
|
| D | CURLINFO_SPEED_DOWNLOAD_T.3 | 25 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);
|
| D | CURLINFO_SPEED_DOWNLOAD.3 | 25 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);
|
| D | CURLINFO_SPEED_UPLOAD.3 | 25 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);
|
| D | CURLOPT_MAX_SEND_SPEED_LARGE.3 | 25 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 */
|
| D | CURLOPT_MAX_RECV_SPEED_LARGE.3 | 25 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/ |
| D | cfsetospeed.c | 6 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/ |
| D | cfsetospeed.c | 7 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/ |
| D | Jamfile.v2 | 26 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/ |
| D | snapcraft.yaml | 6 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/ |
| D | unit1606.c | 50 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.py | 129 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/ |
| D | NEWS | 2 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/ |
| D | time_hashlib.py | 1 # 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/ |
| D | microcom.c | 11 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()
|