| /external/linux-kselftest/tools/testing/selftests/net/forwarding/ |
| D | ethtool.sh | 59 for speed in "${speeds_arr[@]}"; do 61 ethtool_set $h1 speed $speed autoneg off 62 ethtool_set $h2 speed $speed autoneg off 67 check_err $? "speed $speed autoneg off" 68 log_test "force of same speed autoneg off" 69 log_info "speed = $speed" 86 ethtool_set $h1 speed $speed1 autoneg off 87 ethtool_set $h2 speed $speed2 autoneg off 102 # Test that when one device is forced to a speed supported by both 107 for speed in "${speeds_arr[@]}"; do [all …]
|
| /external/sonic/ |
| D | sonic.h | 12 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 …]
|
| D | sonic.1 | 4 sonic \- Speech speed manipulator 11 in sonic is the ability to speed speech up by much more than 2X, with minimal 27 Disable all speed-up heuristics, possibly improving the quality slightly. This 28 is mainly used for debugging the speed-up heuristics. 31 Adjust the speed of playback. This scales both the pitch and speed equally. 33 .B \-s speed 34 Set speed up factor. 1.0 means no change, 2.0 means 2X faster. 44 The above command would increase the speed of an audio book called book.wav by a
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/ |
| D | PlaybackParameters.java | 32 /** 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/ |
| D | PlaybackParameters.java | 29 /** 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/libaom/ |
| D | CHANGELOG | 24 * 0.7% - 2.2% RTC encoding BDrate gains for real time speed 8 to 10. 25 * 15% RTC encoding BDrate gains for screen content speed 10. 29 resolution clips (2K) for speed 4 and above in VOD use case. 35 o ~6% instruction count reduction for speed 5 and 6. 36 o ~15% instruction count reduction for speed 7. 37 o ~10% instruction count reduction for speed 8 to 10 (>=360p 40 o 5-8% encode time reduction for speed 7 to 10. 42 o 11% instruction count reduction for speed 9 and 10 (>=720p 44 * ~5% reduction in heap memory requirements for RTC, speed 6 to 10. 46 o 4-5% speedup for speed 9 in still-picture encoding mode. [all …]
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/ |
| D | DefaultLoadControlTest.java | 34 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_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/ |
| D | DefaultLoadControlTest.java | 34 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/L4A6RG/Src/ |
| D | usbd_desc.c | 135 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/L476RG/Src/ |
| D | usbd_desc.c | 135 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/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 …]
|
| /external/zstd/tests/ |
| D | README.md | 6 - `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/libaom/av1/encoder/ |
| D | speed_features.c | 22 #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 // distortion during the R-D evaluation based on the speed feature 69 // enable_winner_mode_for_use_tx_domain_dist speed feature is ON 84 // Index 1 and 2 are applicable when enable_winner_mode_for_coeff_opt speed 86 // There are 7 levels with increasing speed, mapping to vertical indices. 102 // Index 1 and 2 are applicable when enable_winner_mode_for_tx_size_srch speed 124 // First index : Speed feature 'dc_blk_pred_level' (0 to 3) [all …]
|
| D | speed_features.h | 194 // similar, but applies much more aggressive pruning to get better speed-up 247 // Prune less likely chosen transforms for each intra mode. The speed 248 // feature ranges from 0 to 2, for different speed / compression trade offs. 384 * \brief Sequence/frame level speed vs quality features 448 * Speed features for the first pass. 618 // single_motion_search (assuming no other speed features). Otherwise, reduce 699 // With this speed feature, the top two sub blocks can directly use rdcost 713 // By default, this feature is turned on to speed up the encoder partition 715 // If disabling it, at speed 0, 30 frames, we could get 779 // Use the rd cost around the best FULLPEL_MV to speed up subpel search [all …]
|
| /external/curl/docs/cmdline-opts/ |
| D | speed-time.d | 3 Long: speed-time 6 Help: Trigger 'speed-limit' abort after this time 8 Example: --speed-limit 300 --speed-time 10 $URL 10 See-also: speed-limit limit-rate 13 If a transfer runs slower than speed-limit bytes per second during a speed-time 14 period, the transfer is aborted. If speed-time is used, the default 15 speed-limit will be 1 unless set with --speed-limit.
|
| D | speed-limit.d | 3 Long: speed-limit 5 Arg: <speed> 8 Example: --speed-limit 300 --speed-time 10 $URL 10 See-also: speed-time limit-rate max-time 13 If a transfer is slower than this given speed (in bytes per second) for 14 speed-time seconds it gets aborted. speed-time is set with --speed-time and is
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/audio/ |
| D | SonicAudioProcessor.java | 29 * 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_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/audio/ |
| D | SonicAudioProcessor.java | 29 * 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/lottie/lottie-compose/src/main/java/com/airbnb/lottie/compose/ |
| D | animateLottieCompositionAsState.kt | 28 * @param speed The speed the animation should play at. Numbers larger than one will speed it up. 37 …* by things like battery saver mode. When set to 0, the speed wil… 38 …t this to false if you want to ignore the system animator scale and always default to normal speed. 46 speed: Float = 1f, in animateLottieCompositionAsState() 52 require(speed.isFinite()) { "Speed must be a finite number. It is $speed." } in animateLottieCompositionAsState() 58 …val actualSpeed = if (ignoreSystemAnimatorScale) speed else (speed / Utils.getAnimationScale(Local… in animateLottieCompositionAsState() 76 speed = actualSpeed, in animateLottieCompositionAsState()
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/ |
| D | DefaultLivePlaybackSpeedControl.java | 28 * 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/ |
| D | index.md | 22 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/lottie/lottie-compose/src/test/java/com/airbnb/lottie/compose/ |
| D | LottieAnimatableImplTest.kt | 105 anim.animate(composition, speed = -1f) in <lambda>() 107 assertFrame(0, progress = 1f, speed = -1f) in <lambda>() 108 assertFrame(200, progress = 2 / 3f, speed = -1f) in <lambda>() 109 assertFrame(compositionDuration - 1, progress = 0.0016f, speed = -1f) in <lambda>() 110 … assertFrame(compositionDuration, progress = 0f, isAtEnd = true, isPlaying = false, speed = -1f) in <lambda>() 140 anim.animate(composition, clipSpec = clipSpec, speed = -1f) in <lambda>() 142 assertFrame(0, progress = 0.75f, clipSpec = clipSpec, speed = -1f) in <lambda>() 143 assertFrame(299, progress = 0.2508f, clipSpec = clipSpec, speed = -1f) in <lambda>() 144 …rtFrame(300, progress = 0.25f, isPlaying = false, isAtEnd = true, clipSpec = clipSpec, speed = -1f) in <lambda>() 274 …anim.animate(composition, speed = 2f, initialProgress = anim.progress, continueFromPreviousAnimate… in <lambda>() [all …]
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/ |
| D | DefaultLivePlaybackSpeedControl.java | 28 * 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/webrtc/rtc_base/experiments/ |
| D | cpu_speed_experiment.h | 29 // pixels <= 100 -> cpu speed: -1 30 // pixels <= 200 -> cpu speed: -2 31 // pixels <= 300 -> cpu speed: -3 36 // pixels <= 100 -> cpu speed: -1 37 // pixels <= 200 -> cpu speed: -2 38 // pixels <= 300 -> cpu speed: -3 40 // pixels <= 100 -> cpu speed: -4 41 // pixels <= 200 -> cpu speed: -5 42 // pixels <= 300 -> cpu speed: -6 53 // Gets the cpu speed based on `pixels` and `num_cores`.
|
| /external/autotest/server/site_tests/firmware_ECThermal/ |
| D | firmware_ECThermal.py | 46 """Enable EC automatic fan speed control""" 53 """Maximize fan speed""" 76 Fan speed thresholds 103 expected_pat = (["Lowest speed: ([0-9-]+) RPM"] + 291 Then it reads fan speed and return False if fan speed is non-zero. 348 1. Fan speed is higher than expected. This may be due to other 350 speed. 351 2. Fan speed is as expected. 352 3. Fan speed is lower than expected. In this case, EC is not 356 fan_speed: The current fan speed in RPM. [all …]
|