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

123456

/external/webkit/Source/WebCore/rendering/style/
H A DStyleMarqueeData.cpp31 , speed(RenderStyle::initialMarqueeSpeed())
41 , speed(o.speed)
50 return increment == o.increment && speed == o.speed && direction == o.direction &&
H A DStyleMarqueeData.h47 int speed; member in class:WebCore::StyleMarqueeData
/external/kernel-headers/original/linux/raid/
H A Dxor.h13 int speed; member in struct:xor_block_template
/external/skia/src/gpu/
H A DFlingState.cpp19 static float pin_max_fling(float 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/webkit/Source/WebCore/page/
H A DCoordinates.h37 static PassRefPtr<Coordinates> create(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new Coordinates(latitude, longitude, providesAltitude, altitude, accuracy, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
50 double speed() const { return m_speed; } function in class:WebCore::Coordinates
58 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
65 , m_speed(speed)
H A DGeolocationPosition.h41 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
51 double speed() const { return m_speed; } function in class:WebCore::GeolocationPosition
75 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
83 , m_speed(speed)
H A DCoordinates.idl35 readonly attribute [Custom] double speed;
/external/quake/quake/src/WinQuake/
H A Dsnd_next.cpp36 shm->speed = desired_speed;
48 shm->samplepos = (int)(realtime*shm->speed*shm->channels) & (shm->samples-1);
H A Dwq.bat12 echo wq fast: maximum speed, but doesn't work on all systems
13 echo wq fastvid: maximum video speed, but safer, probably slower sound
14 echo wq fastsnd: maximum sound speed, but safer, probably slower video
H A Dsv_user.cpp125 float speed, newspeed, control; local
132 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1]);
133 if (!speed)
137 start[0] = stop[0] = origin[0] + vel[0]/speed*16;
138 start[1] = stop[1] = origin[1] + vel[1]/speed*16;
150 control = speed < sv_stopspeed.value ? sv_stopspeed.value : speed;
151 newspeed = speed - host_frametime*control*friction;
155 newspeed /= speed;
251 float speed, newspee
[all...]
H A Dsnd_linux.cpp95 // set sample bits & speed
109 if (s) shm->speed = atoi(s);
111 shm->speed = atoi(com_argv[i+1]);
116 shm->speed = tryrates[i];
158 rc = ioctl(audio_fd, SNDCTL_DSP_SPEED, &shm->speed);
162 Con_Printf("Could not set /dev/dsp speed to %d", shm->speed);
H A Dcl_input.cpp245 float speed; local
249 speed = host_frametime * cl_anglespeedkey.value;
251 speed = host_frametime;
255 cl.viewangles[YAW] -= speed*cl_yawspeed.value*CL_KeyState (&in_right);
256 cl.viewangles[YAW] += speed*cl_yawspeed.value*CL_KeyState (&in_left);
262 cl.viewangles[PITCH] -= speed*cl_pitchspeed.value * CL_KeyState (&in_forward);
263 cl.viewangles[PITCH] += speed*cl_pitchspeed.value * CL_KeyState (&in_back);
269 cl.viewangles[PITCH] -= speed*cl_pitchspeed.value * up;
270 cl.viewangles[PITCH] += speed*cl_pitchspeed.value * down;
322 // adjust for speed ke
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSCoordinatesCustom.cpp59 JSValue JSCoordinates::speed(ExecState*) const function in class:WebCore::JSCoordinates
64 return jsNumber(imp->speed());
/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationPosition.cpp35 void WebGeolocationPosition::assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
37 m_private = GeolocationPosition::create(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
/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/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/webkit/Source/WebKit/chromium/public/
H A DWebGeolocationPosition.h43 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
45 assign(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
50 WEBKIT_API void assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed);
/external/grub/netboot/
H A Dsis900.c83 static void sis900_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
84 static void amd79c901_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
85 static void ics1893_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
86 static void rtl8201_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
92 void (*read_mode) (struct nic *nic, int phy_addr, int *speed, int *duplex);
692 int speed, duplex;
695 mii.chip_info->read_mode(nic, cur_phy, &speed, &duplex);
700 if (speed == HW_SPEED_HOME || speed == HW_SPEED_10_MBPS) {
722 * Description: retrieves and displays speed an
679 int speed, duplex; local
717 sis900_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex) argument
758 amd79c901_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex) argument
811 ics1893_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex) argument
851 rtl8201_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex) 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/openssl/crypto/des/
H A Dmakefile.bc19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe
47 speed.exe: speed.obj libdes.lib
/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/arduino/hardware/arduino/
H A Dboards.txt6 uno.upload.speed=115200
24 atmega328.upload.speed=57600
44 diecimila.upload.speed=19200
64 mega2560.upload.speed=115200
84 mega.upload.speed=57600
104 mini.upload.speed=19200
124 fio.upload.speed=57600
144 bt328.upload.speed=19200
165 bt.upload.speed=19200
186 lilypad328.upload.speed
[all...]
/external/quake/quake/src/QW/client/
H A Dsnd_linux.c76 // set sample bits & speed
90 if (s) shm->speed = atoi(s);
92 shm->speed = atoi(com_argv[i+1]);
97 shm->speed = tryrates[i];
139 rc = ioctl(audio_fd, SNDCTL_DSP_SPEED, &shm->speed);
143 Con_Printf("Could not set /dev/dsp speed to %d", shm->speed);

Completed in 460 milliseconds

123456