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

1234

/external/v8/src/heap/
H A Dgc-idle-time-handler-unittest.cc98 size_t speed = 1 * MB; local
99 size_t time = GCIdleTimeHandler::EstimateMarkCompactTime(size, speed);
100 EXPECT_EQ(size / speed, time);
106 size_t speed = 1; local
107 size_t time = GCIdleTimeHandler::EstimateMarkCompactTime(size, speed);
121 size_t speed = 1 * MB; local
122 size_t time = GCIdleTimeHandler::EstimateScavengeTime(size, speed);
123 EXPECT_EQ(size / speed, time);
135 size_t speed = 1 * KB; local
136 EXPECT_FALSE(GCIdleTimeHandler::ScavangeMayHappenSoon(available, speed));
142 size_t speed = 1 * KB; local
151 size_t speed = heap_state.mark_compact_speed_in_bytes_per_ms; local
163 size_t speed = heap_state.mark_compact_speed_in_bytes_per_ms; local
173 size_t speed = heap_state.mark_compact_speed_in_bytes_per_ms; local
182 size_t speed = heap_state.incremental_marking_speed_in_bytes_per_ms; local
195 size_t speed = heap_state.incremental_marking_speed_in_bytes_per_ms; local
209 size_t speed = heap_state.mark_compact_speed_in_bytes_per_ms; local
220 size_t speed = heap_state.mark_compact_speed_in_bytes_per_ms; local
252 size_t speed = heap_state.mark_compact_speed_in_bytes_per_ms; local
[all...]
/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::__anon7274
/external/openssh/openbsd-compat/
H A Dbsd-nextstep.c91 cfsetospeed(struct termios *t,int speed) argument
93 t->c_ospeed = speed;
98 cfsetispeed(struct termios *t, int speed) argument
100 t->c_ispeed = speed;
/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/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimChannel.java61 private float speed; field in class:AnimChannel
148 * @return The speed that is assigned to the animation channel. The speed
150 * at its default speed.
155 return speed;
159 * @param speed Set the speed of the animation channel. The speed
161 * at its default speed.
163 public void setSpeed(float speed) { argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
H A DAbstractCinematicEvent.java50 * A cinematic event must be given an inital duration in seconds (duration of the event at speed = 1) (default is 10)
56 protected float speed = 1; field in class:AbstractCinematicEvent
91 * @param initialDuration the duration of the event at speed = 1
124 time = time + (tpf * speed);
125 //time = elapsedTimePause + (timer.getTimeInSeconds() - start) * speed;
181 * returns the actual duration of the animtion (initialDuration/speed)
185 return initialDuration / speed;
189 * Sets the speed of the animation.
190 * At speed = 1, the animation will last initialDuration seconds,
191 * At speed
194 setSpeed(float speed) argument
[all...]
H A DCinematicEvent.java68 * Sets the speed of the animation (1 is normal speed, 2 is twice faster)
69 * @param speed
71 public void setSpeed(float speed); argument
74 * returns the speed of the animation
75 * @return the speed
106 * returns the initial duration of the animation at speed = 1 in seconds.
112 * Sets the duration of the antionamtion at speed = 1 in seconds
/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.c48 int speed) {
51 if (speed >= 1) {
62 if (speed >= 2) {
77 if (speed >= 3) {
95 if ((speed >= 1) && (cpi->oxcf.pass == 2) &&
101 if (speed >= 4) {
112 SPEED_FEATURES *sf, int speed) {
118 if (speed >= 1) {
146 if (speed >= 2) {
164 if (speed >
46 set_good_speed_feature_framesize_dependent(VP9_COMP *cpi, SPEED_FEATURES *sf, int speed) argument
111 set_good_speed_feature(VP9_COMP *cpi, VP9_COMMON *cm, SPEED_FEATURES *sf, int speed) argument
213 set_rt_speed_feature_framesize_dependent(VP9_COMP *cpi, SPEED_FEATURES *sf, int speed) argument
249 set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf, int speed, vp9e_tune_content content) argument
[all...]
/external/robolectric/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/kernel-headers/original/uapi/linux/hsi/
H A Dhsi_char.h59 uint32_t speed; member in struct:hsc_tx_config
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
H A DBulletAppState.java32 private float speed = 1; field in class:BulletAppState
185 pSpace.update(active ? tpf * speed : 0);
249 return speed;
252 public void setSpeed(float speed) { argument
253 this.speed = speed;
/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/lzma/CPP/7zip/UI/Console/
H A DBenchCon.cpp97 UInt64 speed = MyMultDiv64(info.UnpackSize, info.GlobalTime, info.GlobalFreq); local
98 PrintNumber(f, speed / 1024, 7);
276 UInt64 speed; local
281 RINOK(CrcBench(ti + 1, bufSize, speed));
282 PrintNumber(f, (speed >> 20), 5);
283 speedTotals.Values[ti] += 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 1855 milliseconds

1234