Searched defs:magnitude (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DComplex.h39 inline Complex complexFromMagnitudePhase(double magnitude, double phase) argument
41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
/external/replicaisland/src/com/replica/replicaisland/
H A DInputButton.java26 public void press(float currentTime, float magnitude) { argument
31 mMagnitude = magnitude;
56 float magnitude = 0.0f;
58 magnitude = mMagnitude;
60 return magnitude;
63 public final void setMagnitude(float magnitude) { argument
64 mMagnitude = magnitude;
H A DSleeperComponent.java106 public void setSlam(float duration, float magnitude) { argument
108 mSlamMagnitude = magnitude;
H A DVector2.java55 public final void multiply(float magnitude) { argument
56 x *= magnitude;
57 y *= magnitude;
65 public final void divide(float magnitude) { argument
66 if (magnitude != 0.0f) {
67 x /= magnitude;
68 y /= magnitude;
101 final float magnitude = length();
104 if (magnitude != 0.0f) {
105 x /= magnitude;
[all...]
H A DLauncherComponent.java137 public void setup(float angle, float magnitude, float launchDelay, float postLaunchDelay, boolean driveActions) { argument
139 mLaunchMagnitude = magnitude;
H A DCameraSystem.java89 void shake(float duration, float magnitude) { argument
91 mShakeMagnitude = magnitude;
H A DInputGameInterface.java104 final float magnitude = magnitudeRamp * Utils.sign(offset) * SLIDER_FILTER * mMovementSensitivity;
106 mDirectionalPad.press(gameTime, magnitude, 0.0f);
259 private float filterOrientationForMovement(float magnitude) { argument
260 float scaledMagnitude = magnitude * mOrientationSensitivityFactor;
265 private float deadZoneFilter(float magnitude, float min, float max, float scale) { argument
266 float smoothedMagnatude = magnitude;
267 if (Math.abs(magnitude) < min) {
269 } else if (Math.abs(magnitude) < max) {
H A DHitReactionComponent.java277 public void setBounceMagnitude(float magnitude) { argument
278 mBounceMagnitude = magnitude;
/external/chromium_org/content/browser/gamepad/
H A Dxbox_data_fetcher_mac.cc140 // Clip the magnitude at its expected maximum value.
141 float magnitude = std::min(32767.0f, real_magnitude); local
143 // Adjust magnitude relative to the end of the dead zone.
144 magnitude -= deadzone;
146 // Normalize the magnitude with respect to its expected range giving a
147 // magnitude value of 0.0 to 1.0
148 float ratio = (magnitude / (32767 - deadzone)) / real_magnitude;
155 // If the controller is in the deadzone zero out the magnitude.
/external/libvpx/libvpx/vpx/src/
H A Dsvc_encodeframe.c97 uint32_t magnitude; member in struct:Superframe
190 // Choose the magnitude
192 if (sf->magnitude < mask) break;
923 superframe.magnitude |= frame_pkt_size;
/external/opencv/cv/include/
H A Dcvcompat.h256 float* magnitude, float* angle, int len )
264 mm.data.fl = (float*)magnitude;
255 cvbCartToPolar( const float* y, const float* x, float* magnitude, float* angle, int len ) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/kernel-headers/original/uapi/linux/
H A Dinput.h1072 * @magnitude: peak value
1089 __s16 magnitude; member in struct:ff_periodic_effect
1101 * @strong_magnitude: magnitude of the heavy motor
1102 * @weak_magnitude: magnitude of the light one
1105 * represents the magnitude of the vibration generated by the heavy one.
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 710 milliseconds