HomeSort by relevance Sort by last modified time
    Searched full:speed (Results 1 - 25 of 2296) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/jni/
android_hardware_SerialPort.cpp 36 android_hardware_SerialPort_open(JNIEnv *env, jobject thiz, jobject fileDescriptor, jint speed)
38 switch (speed) {
40 speed = B50;
43 speed = B75;
46 speed = B110;
49 speed = B134;
52 speed = B150;
55 speed = B200;
58 speed = B300;
61 speed = B600
    [all...]
  /external/webkit/Source/WebCore/css/
WCSSPropertyNames.in 5 -wap-marquee-speed
  /external/skia/src/gpu/
FlingState.cpp 19 static float pin_max_fling(float speed) {
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, dist)
    [all...]
  /external/openssl/crypto/des/times/
usparc.cc 4 gives a speed of 475,000 des/s while 'speed' gives 417,000 des/s.
6 is able to perform when the code is 'inlined'. For 'speed', the DES
8 speed since if performance is everything, you can always inline
14 actual 'speed' numbers look better which is a realistic version of
aix.cc 5 P.Speed : 100Mhz
8 PCI BUS Speed : 33 Mhz
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
AbstractCinematicEvent.java 50 * 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 = 2 the animation will last initialDuraiton/2..
    [all...]
CinematicEvent.java 68 * Sets the speed of the animation (1 is normal speed, 2 is twice faster)
69 * @param speed
71 public void setSpeed(float speed);
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/elfutils/
README 5 greatly simplified and speed increases. Since no change violating this
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Speed.java 29 public enum Speed {
41 Speed(@NonNull String displayName) {
46 * Returns the user-visible description of the speed of the given
49 * @return the description of the speed to display to the user
  /external/webkit/Source/WebCore/rendering/style/
StyleMarqueeData.cpp 31 , speed(RenderStyle::initialMarqueeSpeed())
41 , speed(o.speed)
50 return increment == o.increment && speed == o.speed && direction == o.direction &&
  /frameworks/base/libs/androidfw/
VelocityControl.cpp 74 float speed = hypotf(vx, vy) * scale; local
75 if (speed >= mParameters.highThreshold) {
76 // Apply full acceleration above the high speed threshold.
78 } else if (speed > mParameters.lowThreshold) {
80 // speed thresholds.
81 scale *= 1 + (speed - mParameters.lowThreshold)
88 "vx=%0.3f, vy=%0.3f, speed=%0.3f, accel=%0.3f",
91 vx, vy, speed, scale / mParameters.scale);
  /external/bluetooth/bluez/tools/
hciattach.h 46 int set_speed(int fd, struct termios *ti, int speed);
50 int texasalt_init(int fd, int speed, struct termios *ti);
53 int ath3k_init(int fd, int speed, int init_speed, char *bdaddr,
56 int qualcomm_init(int fd, int speed, struct termios *ti, const char *bdaddr);
hciattach.8 12 .IR speed \|]
17 .I speed
38 .BI \-s " speed"
39 Specify an initial speed instead of the hardware default.
105 .I speed
107 .I speed
108 specifies the UART speed to use. Baudrates higher than 115.200bps require
hciattach_tialt.c 72 /* Parse speed-change reply */
96 uint32_t speed; member in struct:__anon2305
99 static int texas_change_speed(int fd, struct termios *ti, uint32_t speed)
101 /* Send a speed-change request */
108 cmd.speed = speed;
110 fprintf(stderr, "Setting speed to %d\n", speed);
113 perror("Failed to write speed-set command");
121 /* Parse speed-change reply *
    [all...]
  /external/kernel-headers/original/linux/raid/
xor.h 13 int speed; member in struct:xor_block_template
  /external/libyuv/
README.google 9 speed up to 10x to 16x compared to C code.
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
noisefield.rs 30 float speed;
164 particle->speed = rsRand(0.0002f, 0.02f);
208 float speed;
216 particle->speed = rsRand(0.0002f, 0.02f);
235 speed = ( (0.25 + (noiseval * particle->speed + 0.01)) / touchDist * 0.3 );
236 speed = speed * touchInfluence;
238 speed = .3;
240 particle->position.x += cos(rads) * speed * 0.2
    [all...]
  /external/webkit/Source/WebCore/page/
Coordinates.h 37 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)); }
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)
65 , m_speed(speed)
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimChannel.java 61 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) {
    [all...]
  /external/quake/quake/src/QW/progs/
buttons.qc 24 SUB_CalcMove (self.pos1, self.speed, button_done);
44 SUB_CalcMove (self.pos2, self.speed, button_wait);
76 "speed" override the default 40 speed
129 if (!self.speed)
130 self.speed = 40;
  /frameworks/base/include/androidfw/
VelocityControl.h 39 // The scaled speed at which acceleration begins to be applied.
40 // This value establishes the upper bound of a low speed regime for
47 // The scaled speed at which maximum acceleration is applied.
57 // When the speed is above the low speed threshold, the velocity will scaled
76 * Implements mouse pointer and wheel speed control and acceleration.
  /external/openssl/crypto/des/
makefile.bc 19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe
47 speed.exe: speed.obj libdes.lib
  /development/tools/emulator/skins/WSVGA/
layout 86 speed full
  /development/tools/emulator/skins/WXGA720/
layout 86 speed full
  /development/tools/emulator/skins/WXGA800/
layout 86 speed full

Completed in 956 milliseconds

1 2 3 4 5 6 7 8 91011>>