Home
last modified time | relevance | path

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

12345678910>>...144

/external/linux-kselftest/tools/testing/selftests/net/forwarding/
Dethtool.sh76 for speed in "${speeds_arr[@]}"; do
78 ethtool_set $h1 speed $speed autoneg off
79 ethtool_set $h2 speed $speed autoneg off
84 check_err $? "speed $speed autoneg off"
85 log_test "force of same speed autoneg off"
86 log_info "speed = $speed"
103 ethtool_set $h1 speed $speed1 autoneg off
104 ethtool_set $h2 speed $speed2 autoneg off
119 # Test that when one device is forced to a speed supported by both
124 for speed in "${speeds_arr[@]}"; do
[all …]
/external/sonic/
Dsonic.h12 generates smooth speech at speed up factors as high as 6X, possibly more. It is
14 regardless of the speed up or slow down factor. For speeding up speech by 2X or
17 newSamples = period/(speed - 1.0)
21 pitch estimator, and speed is the speedup factor. If the current position in
30 For speed factors < 2X, the PICOLA algorithm is used. The above
31 algorithm is first used to double the speed of one pitch period. Then, enough
33 speed up facter, where 1.0 < speed < 2.0. The amount of data copied is derived:
35 speed = (2*period + length)/(period + length)
36 speed*length + speed*period = 2*period + length
37 length(speed - 1) = 2*period - speed*period
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/
DPlaybackParameters.java32 /** Parameters that apply to playback, including speed setting. */
36 public static final PlaybackParameters DEFAULT = new PlaybackParameters(/* speed= */ 1f);
39 public final float speed; field in PlaybackParameters
47 * Creates new playback parameters that set the playback speed. The pitch of audio will not be
50 * @param speed The factor by which playback will be sped up. Must be greater than zero.
52 public PlaybackParameters(float speed) { in PlaybackParameters() argument
53 this(speed, /* pitch= */ 1f); in PlaybackParameters()
57 * Creates new playback parameters that set the playback speed/pitch.
59 * @param speed The factor by which playback will be sped up. Must be greater than zero.
62 * as the {@code speed} (to resample audio, which is useful for slow-motion videos).
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/
DPlaybackParameters.java29 /** Parameters that apply to playback, including speed setting. */
33 public static final PlaybackParameters DEFAULT = new PlaybackParameters(/* speed= */ 1f);
36 public final float speed; field in PlaybackParameters
44 * Creates new playback parameters that set the playback speed. The pitch of audio will not be
47 * @param speed The factor by which playback will be sped up. Must be greater than zero.
49 public PlaybackParameters(float speed) { in PlaybackParameters() argument
50 this(speed, /* pitch= */ 1f); in PlaybackParameters()
54 * Creates new playback parameters that set the playback speed/pitch.
56 * @param speed The factor by which playback will be sped up. Must be greater than zero.
59 * as the {@code speed} (to resample audio, which is useful for slow-motion videos).
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/
DDefaultLoadControlTest.java34 private static final float SPEED = 1f; field in DefaultLoadControlTest
55 /* playbackPositionUs= */ 0, /* bufferedDurationUs= */ 0, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
59 /* playbackPositionUs= */ 0, MAX_BUFFER_US - 1, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
61 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
74 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
78 /* playbackPositionUs= */ 0, MAX_BUFFER_US - 1, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
80 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MIN_BUFFER_US, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
84 /* playbackPositionUs= */ 0, MIN_BUFFER_US - 1, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
97 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in continueLoadingOnceBufferingStopped_andBufferAlmostEmpty_evenIfMinBufferNotReached()
101 /* playbackPositionUs= */ 0, 5 * C.MICROS_PER_SECOND, SPEED)) in continueLoadingOnceBufferingStopped_andBufferAlmostEmpty_evenIfMinBufferNotReached()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/
DDefaultLoadControlTest.java34 private static final float SPEED = 1f; field in DefaultLoadControlTest
55 /* playbackPositionUs= */ 0, /* bufferedDurationUs= */ 0, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
59 /* playbackPositionUs= */ 0, MAX_BUFFER_US - 1, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
61 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
74 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
78 /* playbackPositionUs= */ 0, MAX_BUFFER_US - 1, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
80 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MIN_BUFFER_US, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
84 /* playbackPositionUs= */ 0, MIN_BUFFER_US - 1, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
97 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in continueLoadingOnceBufferingStopped_andBufferAlmostEmpty_evenIfMinBufferNotReached()
101 /* playbackPositionUs= */ 0, 5 * C.MICROS_PER_SECOND, SPEED)) in continueLoadingOnceBufferingStopped_andBufferAlmostEmpty_evenIfMinBufferNotReached()
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Src/
Dusbd_desc.c135 uint8_t * USBD_FS_DeviceDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
136 uint8_t * USBD_FS_LangIDStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
137 uint8_t * USBD_FS_ManufacturerStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
138 uint8_t * USBD_FS_ProductStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
139 uint8_t * USBD_FS_SerialStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
140 uint8_t * USBD_FS_ConfigStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
141 uint8_t * USBD_FS_InterfaceStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
144 uint8_t * USBD_FS_USRStringDesc(USBD_SpeedTypeDef speed, uint8_t idx, uint16_t *length);
148 uint8_t * USBD_FS_USR_BOSDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
269 * @param speed : Current device speed
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Src/
Dusbd_desc.c135 uint8_t * USBD_FS_DeviceDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
136 uint8_t * USBD_FS_LangIDStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
137 uint8_t * USBD_FS_ManufacturerStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
138 uint8_t * USBD_FS_ProductStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
139 uint8_t * USBD_FS_SerialStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
140 uint8_t * USBD_FS_ConfigStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
141 uint8_t * USBD_FS_InterfaceStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
144 uint8_t * USBD_FS_USRStringDesc(USBD_SpeedTypeDef speed, uint8_t idx, uint16_t *length);
148 uint8_t * USBD_FS_USR_BOSDescriptor(USBD_SpeedTypeDef speed, uint16_t *length);
269 * @param speed : Current device speed
[all …]
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/
DDefaultLoadControlTest.java33 private static final float SPEED = 1f; field in DefaultLoadControlTest
54 /* playbackPositionUs= */ 0, /* bufferedDurationUs= */ 0, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
58 /* playbackPositionUs= */ 0, MAX_BUFFER_US - 1, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
60 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in shouldContinueLoading_untilMaxBufferExceeded()
73 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
77 /* playbackPositionUs= */ 0, MAX_BUFFER_US - 1, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
79 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MIN_BUFFER_US, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
83 /* playbackPositionUs= */ 0, MIN_BUFFER_US - 1, SPEED)) in shouldNotContinueLoadingOnceBufferingStopped_untilBelowMinBuffer()
96 assertThat(loadControl.shouldContinueLoading(/* playbackPositionUs= */ 0, MAX_BUFFER_US, SPEED)) in continueLoadingOnceBufferingStopped_andBufferAlmostEmpty_evenIfMinBufferNotReached()
100 /* playbackPositionUs= */ 0, 5 * C.MICROS_PER_SECOND, SPEED)) in continueLoadingOnceBufferingStopped_andBufferAlmostEmpty_evenIfMinBufferNotReached()
[all …]
/external/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 …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/audio/
DSonicAudioProcessor.java28 * An {@link AudioProcessor} that uses the Sonic library to modify audio speed/pitch/sample rate.
33 * The maximum allowed playback speed in {@link #setSpeed(float)}.
37 * The minimum allowed playback speed in {@link #setSpeed(float)}.
46 * The threshold below which the difference between two pitch/speed factors is negligible.
52 * byte counts, rather than using the current playback parameters speed.
57 private float speed; field in SonicAudioProcessor
77 speed = 1f; in SonicAudioProcessor()
89 * Sets the playback speed. This method may only be called after draining data through the
93 * @param speed The requested new playback speed.
94 * @return The actual new playback speed.
[all …]
DSonic.java37 private final float speed; field in Sonic
63 * @param speed The speedup factor for output audio.
66 public Sonic(int inputSampleRateHz, int channelCount, float speed, int outputSampleRateHz) { in Sonic() argument
69 this.speed = speed; in Sonic()
120 outputFrameCount + (int) ((remainingFrameCount / speed + pitchFrameCount) / rate + 0.5f); in queueEndOfStream()
277 // good answer. This version uses AMDF. To improve speed, we down sample by an integer factor in findPitchPeriod()
388 private int skipPitchPeriod(short[] samples, int position, float speed, int period) { in skipPitchPeriod() argument
389 // Skip over a pitch period, and copy period/speed samples to the output. in skipPitchPeriod()
391 if (speed >= 2.0f) { in skipPitchPeriod()
392 newFrameCount = (int) (period / (speed - 1.0f)); in skipPitchPeriod()
[all …]
/external/zstd/tests/
DREADME.md6 - `fullbench` : Precisely measure speed for each zstd inner functions
9 - `test-zstd-speed.py` : script for testing zstd speed difference between commits
63 #### `test-zstd-speed.py` - script for testing zstd speed difference between commits
68 Then it compiles all branches of zstd and performs a speed benchmark for a given list of files (the…
70 If a new commit is found it is compiled and a speed benchmark for this commit is performed.
71 The results of the speed benchmark are compared to the previous results.
72 …ression or decompression speed for one of zstd levels is lower than `lowerLimit` (an optional para…
76 - To be sure that speed results are accurate the script should be run on a "stable" target system w…
77 - Using the script with virtual machines can lead to large variations of speed results
78 - The speed benchmark is not performed until computers' load average is lower than `maxLoadAvg` (an…
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/
DPlaybackParameters.java30 public static final PlaybackParameters DEFAULT = new PlaybackParameters(/* speed= */ 1f);
33 public final float speed; field in PlaybackParameters
38 * Creates new playback parameters that set the playback speed.
40 * @param speed The factor by which playback will be sped up. Must be greater than zero.
42 public PlaybackParameters(float speed) { in PlaybackParameters() argument
43 Assertions.checkArgument(speed > 0); in PlaybackParameters()
44 this.speed = speed; in PlaybackParameters()
45 scaledUsPerMs = Math.round(speed * 1000f); in PlaybackParameters()
68 return this.speed == other.speed; in equals()
73 return Float.floatToRawIntBits(speed); in hashCode()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/audio/
DSonicAudioProcessor.java29 * An {@link AudioProcessor} that uses the Sonic library to modify audio speed/pitch/sample rate.
36 /** The threshold below which the difference between two pitch/speed factors is negligible. */
41 * input and output byte counts, rather than using the current playback speed.
46 private float speed; field in SonicAudioProcessor
65 speed = 1f; in SonicAudioProcessor()
78 * Sets the target playback speed. This method may only be called after draining data through the
82 * @param speed The target factor by which playback should be sped up.
84 public void setSpeed(float speed) { in setSpeed() argument
85 if (this.speed != speed) { in setSpeed()
86 this.speed = speed; in setSpeed()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/audio/
DSonicAudioProcessor.java29 * An {@link AudioProcessor} that uses the Sonic library to modify audio speed/pitch/sample rate.
36 /** The threshold below which the difference between two pitch/speed factors is negligible. */
41 * input and output byte counts, rather than using the current playback speed.
46 private float speed; field in SonicAudioProcessor
65 speed = 1f; in SonicAudioProcessor()
78 * Sets the target playback speed. This method may only be called after draining data through the
82 * @param speed The target factor by which playback should be sped up.
84 public void setSpeed(float speed) { in setSpeed() argument
85 if (this.speed != speed) { in setSpeed()
86 this.speed = speed; in setSpeed()
[all …]
/external/curl/docs/cmdline-opts/
Dspeed-time.d1 Long: speed-time
4 Help: Trigger 'speed-limit' abort after this time
6 Example: --speed-limit 300 --speed-time 10 $URL
9 If a download is slower than speed-limit bytes per second during a speed-time
10 period, the download gets aborted. If speed-time is used, the default
11 speed-limit will be 1 unless set with --speed-limit.
Dspeed-limit.d1 Long: speed-limit
3 Arg: <speed>
6 Example: --speed-limit 300 --speed-time 10 $URL
9 If a download is slower than this given speed (in bytes per second) for
10 speed-time seconds it gets aborted. speed-time is set with --speed-time and is
/external/libaom/libaom/av1/encoder/
Dspeed_features.c22 #define MAX_MESH_SPEED 5 // Max speed setting for mesh motion method
23 // Max speed setting for tx domain evaluation
36 // each speed setting
51 // enable_winner_mode_for_use_tx_domain_dist speed feature is ON
61 // enable_winner_mode_for_use_tx_domain_dist speed feature is ON
75 // Index 1 and 2 are applicable when enable_winner_mode_for_coeff_opt speed
77 // There are 7 levels with increasing speed, mapping to vertical indices.
93 // Index 1 and 2 are applicable when enable_winner_mode_for_tx_size_srch speed
124 // The table is indexed as per the speed feature 'gm_search_type'.
138 // Currently invoked only for speed 0, 1 and 2.
[all …]
Dspeed_features.h193 // similar, but applies much more aggressive pruning to get better speed-up
243 // Prune less likely chosen transforms for each intra mode. The speed
244 // feature ranges from 0 to 2, for different speed / compression trade offs.
322 * \brief Sequence/frame level speed vs quality features
373 * Speed features for the first pass.
535 // single_motion_search (assuming no other speed features). Otherwise, reduce
616 // With this speed feature, the top two sub blocks can directly use rdcost
630 // By default, this feature is turned on to speed up the encoder partition
632 // If disabling it, at speed 0, 30 frames, we could get
693 // Use the rd cost around the best FULLPEL_MV to speed up subpel search
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/
DDefaultLivePlaybackSpeedControl.java28 * A {@link LivePlaybackSpeedControl} that adjusts the playback speed using a proportional
31 * <p>The control mechanism calculates the adjusted speed as {@code 1.0 + proportionalControlFactor
32 * x (currentLiveOffsetSec - targetLiveOffsetSec)}. Unit speed (1.0f) is used, if the {@code
36 * <p>The resulting speed is clamped to a minimum and maximum speed defined by the media, the
43 * network capabilities. The live playback speed control also {@link
52 * playback speed is defined by the media.
58 * playback speed is defined by the media.
64 * speed changes, in milliseconds.
70 * used to adjust the playback speed.
88 * milliseconds, for which unit speed (1.0f) is used.
[all …]
/external/sonic/doc/
Dindex.md22 other algorithms that came before, Sonic is optimized for speed ups of over 2X.
43 the new part, for greater than 2X speed up, is clearly a capability most
56 understand at high speed (over 2.5X) by blind speed listeners.
62 RockBox quite good, though it's limited to 2X speed up. So far as I know, only
63 sonic is optimized for speed factors needed by the blind, up to 6X.
89 …sonicChangeShortSpeed(samples, numSamples, speed, pitch, rate, volume, useChordPitch, sampleRate, …
91 This will change the speed and pitch of the sound samples pointed to by samples,
95 that there is room in the samples array for the speed-changed samples. In
101 sonicChangeShortSpeed(samples, numSamples, speed, pitch, 1.0f, 1.0f, 0, sampleRate, 1);
120 By default, a sonic stream sets the speed, pitch, rate, and volume to 1.0, which means
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/
DDefaultLivePlaybackSpeedControl.java28 * A {@link LivePlaybackSpeedControl} that adjusts the playback speed using a proportional
31 * <p>The control mechanism calculates the adjusted speed as {@code 1.0 + proportionalControlFactor
32 * x (currentLiveOffsetSec - targetLiveOffsetSec)}. Unit speed (1.0f) is used, if the {@code
36 * <p>The resulting speed is clamped to a minimum and maximum speed defined by the media, the
43 * network capabilities. The live playback speed control also {@link
52 * playback speed is defined by the media.
58 * playback speed is defined by the media.
64 * speed changes, in milliseconds.
70 * used to adjust the playback speed.
88 * milliseconds, for which unit speed (1.0f) is used.
[all …]
/external/libaom/libaom/
DCHANGELOG8 * Introduced speed 10 for real time mode.
15 * Improved real time (RT) mode BDrate savings by ~5% (RT speed 5)
16 and ~12% (RT speed 6). The improvement was measured on the video
18 * Improved real time mode for nonrd path (speed 7, 8, 9): BDrate
32 * Further improved 2-pass good quality encoder speed:
33 o Speed 2 speedup: 18%
34 o Speed 3 speedup: 22%
35 o Speed 4 speedup: 37%
36 o Speed 5 speedup: 30%
37 o Speed 6 speedup: 20%
[all …]
/external/autotest/server/site_tests/firmware_ECThermal/
Dfirmware_ECThermal.py44 """Enable EC automatic fan speed control"""
51 """Maximize fan speed"""
74 Fan speed thresholds
101 expected_pat = (["Lowest speed: ([0-9-]+) RPM"] +
288 Then it reads fan speed and return False if fan speed is non-zero.
345 1. Fan speed is higher than expected. This may be due to other
347 speed.
348 2. Fan speed is as expected.
349 3. Fan speed is lower than expected. In this case, EC is not
353 fan_speed: The current fan speed in RPM.
[all …]

12345678910>>...144