Searched refs:speed (Results 1 - 25 of 108) sorted by relevance

12345

/external/kernel-headers/original/uapi/linux/
H A Dbpqether.h31 int speed; /* unused */ member in struct:bpq_req
H A Dscc.h133 long speed; /* Line speed, bps */ member in struct:scc_modem
/external/kernel-headers/original/uapi/linux/usb/
H A Dgadgetfs.h51 /* CONNECT: just the speed */
52 enum usb_device_speed speed; member in union:usb_gadgetfs_event::__anon8377
/external/vboot_reference/tests/
H A Dsha_benchmark.c32 double speed; local
46 speed = ((TEST_BUFFER_SIZE / 10e6)
50 hash_functions[i].description, msecs, speed);
52 hash_functions[i].description, speed);
H A Drsa_verify_benchmark.c21 double speed, msecs; local
73 speed = 1000.0 / msecs ;
76 msecs, speed);
/external/sonic/
H A Dmain.c5 useful utility on it's own, which can speed up or slow down wav files, change
20 float speed,
33 sonicSetSpeed(stream, speed);
64 " -q -- Disable speed-up heuristics. May increase quality.\n"
66 " -s speed -- Set speed up factor. 2.0 means 2X faster.\n"
77 float speed = 1.0f; local
98 printf("Disabling speed-up heuristics\n");
108 speed = atof(argv[xArg]);
109 printf("Setting speed t
17 runSonic( waveFile inFile, waveFile outFile, float speed, float pitch, float rate, float volume, int emulateChordPitch, int quality, int sampleRate, int numChannels) argument
[all...]
H A 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*lengt
[all...]
H A DSonic.java15 /* This is used to down-sample some inputs to improve speed */
22 private float speed; field in class:Sonic
96 // Get the speed of the stream.
99 return speed;
102 // Set the speed of the stream.
104 float speed)
106 this.speed = speed;
128 // Set the playback rate of the stream. This scales pitch and speed at the same time.
204 speed
103 setSpeed( float speed) argument
805 skipPitchPeriod( short samples[], int position, float speed, int period) argument
827 insertPitchPeriod( short samples[], int position, float speed, int period) argument
851 changeSpeed( float speed) argument
946 changeFloatSpeed( float samples[], int numSamples, float speed, float pitch, float rate, float volume, boolean useChordPitch, int sampleRate, int numChannels) argument
972 sonicChangeShortSpeed( short samples[], int numSamples, float speed, float pitch, float rate, float volume, boolean useChordPitch, int sampleRate, int numChannels) argument
[all...]
H A DMain.java23 float speed,
38 sonic.setSpeed(speed);
63 float speed = 2.0f;
79 runSonic(stream, line, speed, pitch, rate, volume, emulateChordPitch, quality,
20 runSonic( AudioInputStream audioStream, SourceDataLine line, float speed, float pitch, float rate, float volume, boolean emulateChordPitch, int quality, int sampleRate, int numChannels) argument
H A Dsonic.c26 float speed; member in struct:sonicStreamStruct
87 /* Get the speed of the stream. */
91 return stream->speed;
94 /* Set the speed of the stream. */
97 float speed)
99 stream->speed = speed;
124 /* Set the playback rate of the stream. This scales pitch and speed at the same time. */
264 stream->speed = 1.0f;
551 float speed local
95 sonicSetSpeed( sonicStream stream, float speed) argument
956 skipPitchPeriod( sonicStream stream, short *samples, float speed, int period) argument
981 insertPitchPeriod( sonicStream stream, short *samples, float speed, int period) argument
1010 changeSpeed( sonicStream stream, float speed) argument
1051 float speed = stream->speed/stream->pitch; local
1124 sonicChangeFloatSpeed( float *samples, int numSamples, float speed, float pitch, float rate, float volume, int useChordPitch, int sampleRate, int numChannels) argument
1151 sonicChangeShortSpeed( short *samples, int numSamples, float speed, float pitch, float rate, float volume, int useChordPitch, int sampleRate, int numChannels) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_speed_features.c49 int speed) {
52 if (speed >= 1) {
63 if (speed >= 2) {
78 if (speed >= 3) {
96 if ((speed >= 1) && (cpi->oxcf.pass == 2) &&
102 if (speed >= 4) {
113 SPEED_FEATURES *sf, int speed) {
125 if (speed >= 1) {
151 if (speed >= 2) {
169 if (speed >
47 set_good_speed_feature_framesize_dependent(VP9_COMP *cpi, SPEED_FEATURES *sf, int speed) argument
112 set_good_speed_feature(VP9_COMP *cpi, VP9_COMMON *cm, SPEED_FEATURES *sf, int speed) argument
218 set_rt_speed_feature_framesize_dependent(VP9_COMP *cpi, SPEED_FEATURES *sf, int speed) argument
254 set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf, int speed, vp9e_tune_content content) argument
[all...]
/external/v8/test/unittests/heap/
H A Dgc-idle-time-handler-unittest.cc87 size_t speed = 1 * MB; local
88 size_t time = GCIdleTimeHandler::EstimateMarkCompactTime(size, speed);
89 EXPECT_EQ(size / speed, time);
95 size_t speed = 1; local
96 size_t time = GCIdleTimeHandler::EstimateMarkCompactTime(size, speed);
166 size_t speed = kMarkCompactSpeed; local
167 double idle_time_ms = static_cast<double>(kSizeOfObjects / speed - 1);
178 size_t speed = kMarkCompactSpeed; local
179 double idle_time_ms = static_cast<double>(kSizeOfObjects / speed - 1);
196 size_t speed local
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLocation.java25 private float speed; field in class:ShadowLocation
62 speed = l.getSpeed();
179 return speed;
183 public void setSpeed(float speed) { argument
184 this.speed = speed;
191 this.speed = 0.0f;
/external/replicaisland/src/com/replica/replicaisland/
H A DOrbitalMagnetComponent.java117 final float speed = targetVelocity.length();
119 if (targetVelocity.length2() > (speed * speed)) {
121 targetVelocity.multiply(speed);
/external/skia/gm/
H A DSkAnimTimer.h93 * scaled by "speed" and (if not zero) mod by period.
96 SkScalar scaled(SkScalar speed, SkScalar period = 0) const { argument
97 double value = this->secs() * speed;
/external/toybox/toys/pending/
H A Dgetty.c51 long speed; member in struct:speed_mapper
83 // Find speed from mapper array
87 long speed = atolx(s); local
89 if (!speed) return 0;
90 for (sp = speedtab; sp->speed; sp++) if (sp->speed == speed) return sp->code;
101 if (TT.speeds[TT.sc] < 0) perror_exit("bad speed");
182 speed_t speed; local
192 speed
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
H A Dscroll_bounce.js45 this.options_.speed);
H A Ddrag.js18 this.speed_ = opt_options.speed;
H A Dpinch.js19 this.speed_ = opt_options.speed;
H A Dswipe.js15 this.speed_ = opt_options.speed;
/external/kernel-headers/original/uapi/linux/hsi/
H A Dhsi_char.h59 uint32_t speed; member in struct:hsc_tx_config
/external/skia/src/views/
H A DSkTouchGesture.cpp19 static SkScalar pin_max_fling(SkScalar speed) { argument
20 if (speed > MAX_FLING_SPEED) {
21 speed = MAX_FLING_SPEED;
23 return speed;
59 // printf("---- speed %g dir %g %g\n", fSpeed0, fDirection.fX, fDirection.fY);
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1); local
72 if (speed <= MIN_SPEED) {
76 float dist = (fSpeed0 - speed) / K0;
78 // printf("---- time %g speed %g dist %g\n", t, speed, dis
[all...]
/external/autotest/client/site_tests/kernel_Delay/
H A Dkernel_Delay.py159 speed = int(self._get_file(p))
160 if speed != freq:
162 freq, speed))
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
H A Dweb_contents.py253 preventFling=True, speed=None,
267 speed: Swipe speed in pixels per second.
280 preventFling=preventFling, speed=speed,
/external/libvpx/libvpx/test/
H A Dvpx_temporal_svc_encoder.sh41 local speed="6"
53 "${timebase_num}" "${timebase_den}" "${speed}" "${frame_drop_thresh}" \

Completed in 2675 milliseconds

12345