HomeSort by relevance Sort by last modified time
    Searched refs:speed (Results 176 - 200 of 443) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
defaults.h     [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.h 75 } speed; member in struct:hashform
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStroke.java 299 final float speed = (float)pixelsPerSec / msecs / mKeyWidth; local
300 Log.d(TAG, String.format("[%d] detectFastMove: speed=%5.2f", mPointerId, speed));
305 final float speed = (float)pixelsPerSec / msecs / mKeyWidth; local
307 "[%d] detectFastMove: speed=%5.2f T=%3d points=%3d fastMove",
308 mPointerId, speed, time, size));
  /external/chromium_org/content/browser/geolocation/
gps_location_provider_linux.cc 179 if (!isnan(gps_data_->fix.speed))
180 position->speed = gps_data_->fix.speed;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMarquee.cpp 185 m_timer.startRepeating(speed() * 0.001);
263 if (speed() != marqueeSpeed()) {
266 m_timer.startRepeating(speed() * 0.001);
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 145 float speed = elapsed ? float(total_iter)*1000/elapsed : 0; local
146 max_speed = std::max(max_speed, speed);
149 << speed << " iters/s (max " << max_speed << ")" << std::endl;
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
MotionTrack.java 168 time = time + (tpf * speed);
273 control.speed = speed;
  /external/libppp/src/
tty.c 94 unsigned speed; /* Pre-line-discipline speed */ member in struct:ttydevice::__anon22858
263 unsigned speed; local
278 /* Get the speed before loading the line discipline */
279 speed = physical_GetSpeed(p);
363 dev->real.speed = speed;
387 if (!physical_SetSpeed(p, dev->real.speed))
388 log_Printf(LogWARN, "Couldn't reset tty speed to %d\n", dev->real.speed);
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 46 static final String SPEED = "Speed";
59 ALTITUDE, SPEED, BEARING, DIST_NET_LOCATION, LOC_TIME, DEBUG_INFO};
184 cValues.put(SPEED, mLocation.getSpeed());
233 Float speed = getNullableFloat(cursor, SPEED); local
234 if (speed != null) {
235 location.setSpeed(speed);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
SimpleWaterProcessor.java 108 protected float speed = 0.05f; field in class:SimpleWaterProcessor
178 time = time + (tpf * speed);
459 * Sets the speed of the wave animation, default = 0.05f.
460 * @param speed
462 public void setWaveSpeed(float speed) {
463 this.speed = speed;
  /frameworks/base/core/java/com/android/internal/os/
ProcessCpuTracker.java 163 * The time in microseconds that the CPU has been running at each speed.
168 * The relative time in microseconds that the CPU has been running at each speed.
551 * speed, since the last call to this method. If this is the first call, it
580 int speed = 0;
589 tempSpeeds[speed] = val;
592 tempTimes[speed] = val;
593 speed++;
594 if (speed == MAX_SPEEDS) break; // No more
596 Slog.v(TAG, "First time : Speed/Time = " + tempSpeeds[speed - 1
    [all...]
  /frameworks/base/services/java/com/android/server/input/
InputManagerService.java 180 private static native void nativeSetPointerSpeed(int ptr, int speed);
1096 int speed = getPointerSpeedSetting(); local
1118 int speed = InputManager.DEFAULT_POINTER_SPEED; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 448 float speed = mRandom.nextFloat() * (mMaxObstacleSpeed - mMinObstacleSpeed)
450 float velocityX = (float) Math.cos(direction) * speed;
451 float velocityY = (float) Math.sin(direction) * speed;
671 final float speed = pythag(mVelocityX, mVelocityY);
672 if (speed > maxSpeed) {
673 final float scale = maxSpeed / speed;
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarView.java 82 public static final int TARGET_SPEED = 28; // > this speed means crash
85 * UI constants (i.e. the speed & fuel bars)
154 /** Allowed speed. */
187 /** "Bad" speed-too-high variant of the line color. */
620 * Draws the ship, fuel/speed bars, and background to the provided
636 // Draw the speed gauge, with a two-tone effect
637 double speed = Math.sqrt(mDX * mDX + mDY * mDY); local
638 int speedWidth = (int) (UI_BAR * speed / PHYS_SPEED_MAX);
640 if (speed <= mGoalSpeed) {
744 // figure position based on average speed during the perio
759 double speed = Math.sqrt(mDX * mDX + mDY * mDY); local
    [all...]
  /frameworks/base/media/java/android/media/
RemoteController.java 157 * the playback speed.
164 * and speed are known.
171 * @param speed a value expressed as a ratio of 1x playback: 1.0f is normal playback,
172 * 2.0f is 2x, 0.5f is half-speed, -2.0f is rewind at 2x speed. 0.0f means nothing is
176 long currentPosMs, float speed);
210 * on the current play position at that time and the last known playback speed.
550 long stateChangeTimeMs, long currentPosMs, float speed) {
560 + "ms speed=" + speed);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/location/
location_manager.cc 363 if (position.speed >= 0.)
364 coordinates->speed.reset(new double(position.speed));
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
Cinematic.java 152 public void setSpeed(float speed) {
153 super.setSpeed(speed);
156 ce.setSpeed(speed);
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestExplosionEffect.java 247 time += tpf / speed;
256 if (time > 1f + .05f / speed && state == 1){
263 if (time > 5 / speed && state == 2){
  /external/chromium_org/ash/wm/
lock_state_controller_impl2.cc 621 internal::SessionStateAnimator::AnimationSpeed speed,
628 speed,
634 internal::SessionStateAnimator::AnimationSpeed speed,
641 speed,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 
  /external/qemu/
qemu-char.h 23 int speed; member in struct:__anon27281
  /external/qemu/telephony/
android_modem.h 104 extern ADataNetworkType android_parse_network_type( const char* speed );
  /frameworks/ex/variablespeed/jni/
variablespeed.h 53 void SetVariableSpeed(float speed);
  /hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/
uim.h 81 speed_t c_ispeed; /* input speed */
82 speed_t c_ospeed; /* output speed */
123 uint32_t speed; member in struct:__anon34844
  /hardware/ti/wpan/ti_st/uim-sysfs/
uim.h 80 speed_t c_ispeed; /* input speed */
81 speed_t c_ospeed; /* output speed */
122 uint32_t speed; member in struct:__anon34854

Completed in 2244 milliseconds

1 2 3 4 5 6 78 91011>>