Home
last modified time | relevance | path

Searched refs:speed (Results 1 – 25 of 1313) sorted by relevance

12345678910>>...53

/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
54 for speed in $speeds; do
55 $tool --mode=accel --dpi=1000 --filter=touchpad --speed=$speed> $outfile-$speed.gnuplot
72 for speed in $speeds; do
73 $tool --mode=accel --speed=$speed --filter=trackpoint > $outfile-$speed.gnuplot
/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/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/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/gstreamer/gstplugins_bad/gst/speed/
Dgstspeed.c98 GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (speed, "speed", GST_RANK_NONE,
157 start *= filter->speed; in speed_src_event()
161 stop *= filter->speed; in speed_src_event()
304 cur /= filter->speed; in speed_src_query()
355 end /= filter->speed; in speed_src_query()
449 i_float = 0.5 * (filter->speed - 1.0); in speed_chain_int16()
462 i_float += filter->speed; in speed_chain_int16()
489 i_float = 0.5 * (filter->speed - 1.0); in speed_chain_float32()
502 i_float += filter->speed; in speed_chain_float32()
541 g_assert (filter->speed > 0); in speed_sink_event()
[all …]
/third_party/rust/crates/rustix/src/termios/
Dcf.rs26 pub fn cfsetospeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetospeed()
27 backend::termios::syscalls::cfsetospeed(termios, speed) in cfsetospeed()
32 pub fn cfsetispeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetispeed()
33 backend::termios::syscalls::cfsetispeed(termios, speed) in cfsetispeed()
38 pub fn cfsetspeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetspeed()
39 backend::termios::syscalls::cfsetspeed(termios, speed) in cfsetspeed()
/third_party/toybox/lib/
Dtty.c64 void xsetspeed(struct termios *tio, int speed) in xsetspeed() argument
72 for (i = 0; i < ARRAY_LEN(speeds); i++) if (speeds[i] == speed) break; in xsetspeed()
73 if (i == ARRAY_LEN(speeds)) error_exit("unknown speed: %d", speed); in xsetspeed()
79 int set_terminal(int fd, int raw, int speed, struct termios *old) in set_terminal() argument
111 if (speed) { in set_terminal()
118 for (i = 0; i < ARRAY_LEN(speeds); i++) if (speeds[i] == speed) break; in set_terminal()
119 if (i == ARRAY_LEN(speeds)) error_exit("unknown speed: %d", speed); in set_terminal()
126 void xset_terminal(int fd, int raw, int speed, struct termios *old) in xset_terminal() argument
128 if (-1 != set_terminal(fd, raw, speed, old)) return; in xset_terminal()
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
Dsyscalls.rs175 pub(crate) fn cfsetospeed(termios: &mut Termios, speed: u32) -> io::Result<()> { in cfsetospeed()
176 if (speed & !CBAUD) != 0 { in cfsetospeed()
180 termios.c_cflag |= speed; in cfsetospeed()
185 pub(crate) fn cfsetispeed(termios: &mut Termios, speed: u32) -> io::Result<()> { in cfsetispeed()
186 if speed == 0 { in cfsetispeed()
189 if (speed & !CBAUD) != 0 { in cfsetispeed()
193 termios.c_cflag |= speed; in cfsetispeed()
198 pub(crate) fn cfsetspeed(termios: &mut Termios, speed: u32) -> io::Result<()> { in cfsetspeed()
199 if (speed & !CBAUD) != 0 { in cfsetspeed()
203 termios.c_cflag |= speed; in cfsetspeed()
/third_party/skia/tools/skpbench/
D_hardware_android.py129 speed = freqs[int((len(freqs)-1) * self.desiredClock)]
134 …ho {speed} > /sys/devices/system/cpu/cpu{id}/cpufreq/scaling_setspeed'''.format(id=i, speed=speed))
150 speed = freqs[int((len(freqs)-1) * self.desiredClock)]
156 echo {speed} > /sys/class/kgsl/kgsl-3d0/devfreq/min_freq'''.format(speed=speed))
/third_party/toybox/toys/pending/
Dgetty.c51 long speed; member
87 long speed = atolx(s); in encode() local
89 if (!speed) return 0; in encode()
90 for (sp = speedtab; sp->speed; sp++) if (sp->speed == speed) return sp->code; in encode()
182 speed_t speed; in sense_baud() local
192 speed = encode(ptr); in sense_baud()
193 if (speed > 0) cfsetspeed(&TT.termios,speed); in sense_baud()
/third_party/skia/tools/viewer/
DTouchGesture.cpp18 static SkScalar pin_max_fling(SkScalar speed) { in pin_max_fling() argument
19 if (speed > MAX_FLING_SPEED) { in pin_max_fling()
20 speed = MAX_FLING_SPEED; in pin_max_fling()
22 return speed; in pin_max_fling()
70 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1); in evaluateMatrix() local
71 if (speed <= MIN_SPEED) { in evaluateMatrix()
75 float dist = (fSpeed0 - speed) / K0; in evaluateMatrix()
302 SkScalar speed; in isFling() local
303 fFlinger.get(dir, &speed); in isFling()
304 if (speed > 1000) { in isFling()
/third_party/flutter/skia/tools/viewer/
DTouchGesture.cpp18 static SkScalar pin_max_fling(SkScalar speed) { in pin_max_fling() argument
19 if (speed > MAX_FLING_SPEED) { in pin_max_fling()
20 speed = MAX_FLING_SPEED; in pin_max_fling()
22 return speed; in pin_max_fling()
70 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1); in evaluateMatrix() local
71 if (speed <= MIN_SPEED) { in evaluateMatrix()
75 float dist = (fSpeed0 - speed) / K0; in evaluateMatrix()
305 SkScalar speed; in isFling() local
306 fFlinger.get(dir, &speed); in isFling()
307 if (speed > 1000) { in isFling()
/third_party/pulseaudio/src/modules/oss/
Doss-util.c154 int format, channels, speed, reqformat; in pa_oss_auto_format() local
214 speed = (int) ss->rate; in pa_oss_auto_format()
215 if (ioctl(fd, SNDCTL_DSP_SPEED, &speed) < 0) { in pa_oss_auto_format()
219 pa_assert(speed > 0); in pa_oss_auto_format()
221 if (ss->rate != (unsigned) speed) { in pa_oss_auto_format()
222 pa_log_warn("device doesn't support %i Hz, changed to %i Hz.", ss->rate, speed); in pa_oss_auto_format()
225 if (speed < ss->rate*.95 || speed > ss->rate*1.05) in pa_oss_auto_format()
226 ss->rate = (uint32_t) speed; in pa_oss_auto_format()
/third_party/flutter/skia/third_party/externals/sdl/Xcode-iOS/Demos/src/
Dfireworks.c111 float speed = in stepParticles() local
115 if (WIND_RESISTANCE * deltaMilliseconds < speed) { in stepParticles()
116 float normx = curr->xvel / speed; in stepParticles()
117 float normy = curr->yvel / speed; in stepParticles()
197 float speed = randomFloat(0.00, powf(0.17, exponent)); in explodeEmitter() local
198 speed = powf(speed, 1.0f / exponent); in explodeEmitter()
204 p->xvel = speed * cos(theta); in explodeEmitter()
205 p->yvel = speed * sin(theta); in explodeEmitter()
Daccelerometer.c36 float speed; in render() local
61 speed = sqrt(shipData.vx * shipData.vx + shipData.vy * shipData.vy); in render()
63 if (speed > 0) { in render()
65 float dirx = shipData.vx / speed; /* normalized x velocity */ in render()
66 float diry = shipData.vy / speed; /* normalized y velocity */ in render()
69 if (speed - FRICTION * deltaMilliseconds > 0) { in render()
/third_party/flutter/skia/samplecode/
DSampleCusp.cpp33 static SkPath cusp(const SkPoint P[4], SkPoint PP[7], bool& split, int speed, SkScalar phase) { in cusp() argument
36 SkScalar t = (curTime % speed) / SkIntToFloat(speed); in cusp()
54 static SkScalar linearToLoop(int speed, SkScalar phase, SkScalar scale) { in linearToLoop() argument
56 SkScalar linear = (curTime % speed) / SkIntToFloat(speed); // 0 to 1 in linearToLoop()
/third_party/skia/samplecode/
DSampleCusp.cpp33 static SkPath cusp(const SkPoint P[4], SkPoint PP[7], bool& split, int speed, SkScalar phase) { in cusp() argument
36 SkScalar t = (curTime % speed) / SkIntToFloat(speed); in cusp()
54 static SkScalar linearToLoop(int speed, SkScalar phase, SkScalar scale) { in linearToLoop() argument
56 SkScalar linear = (curTime % speed) / SkIntToFloat(speed); // 0 to 1 in linearToLoop()
/third_party/ffmpeg/libavcodec/tests/
Ddct.c179 static int dct_error(const struct algo *dct, int test, int is_idct, int speed, const int bits) in dct_error() argument
265 if (!speed) in dct_error()
378 int speed) in idct248_error() argument
431 if (!speed) in idct248_error()
472 int speed = 0; in main() local
490 speed = 1; in main()
506 idct248_error("SIMPLE-C", ff_simple_idct248_put, speed); in main()
511 err |= dct_error(&idct_tab[i], test, test_idct, speed, bits); in main()
515 err |= dct_error(&idct_tab_arch[i], test, test_idct, speed, bits); in main()
520 err |= dct_error(&fdct_tab[i], test, test_idct, speed, bits); in main()
[all …]
/third_party/FreeBSD/sys/dev/usb/
Dusb_hub.c273 (udev->speed != USB_SPEED_HIGH) || in uhub_tt_buffer_reset_async_locked()
274 ((child->speed != USB_SPEED_LOW) && in uhub_tt_buffer_reset_async_locked()
275 (child->speed != USB_SPEED_FULL)) || in uhub_tt_buffer_reset_async_locked()
377 uhub_count_active_host_ports(struct usb_device *udev, enum usb_dev_speed speed) in uhub_count_active_host_ports() argument
400 (child->speed == speed)) in uhub_count_active_host_ports()
659 enum usb_dev_speed speed; in uhub_reattach_port() local
721 switch (udev->speed) { in uhub_reattach_port()
801 switch (udev->speed) { in uhub_reattach_port()
804 speed = USB_SPEED_HIGH; in uhub_reattach_port()
806 speed = USB_SPEED_LOW; in uhub_reattach_port()
[all …]
/third_party/libinput/doc/user/
Dpointer-acceleration.rst23 profile is the default profile for all devices and takes the current speed
26 speed of motion (see :ref:`ptraccel-profile-flat`). Most of this document
35 The device's speed of movement is measured across multiple input events
44 Whenever the movement changes direction or significantly changes speed, the
45 velocity is calculated from the direction/speed change only. For example, if
70 deceleration factor is 0.3 (i.e. slow down to 30% of the pointer speed).
97 speeds. The line for 0.0 is the default acceleration curve, speed settings
102 Extremely low speed settings provide no acceleration and additionally
122 The image above shows the default pointer acceleration curve for a speed of
153 that trackpoint speed is a function of pressure rather than moving speed.
[all …]
/third_party/toybox/toys/net/
Dmicrocom.c39 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>>...53