Searched refs:magnitude (Results 1 - 25 of 29) sorted by relevance

12

/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 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 DInputTouchScreen.java64 float magnitude = 0.0f;
66 magnitude = mTouchPoints[index].getX();
68 return magnitude;
72 float magnitude = 0.0f;
74 magnitude = mTouchPoints[index].getY();
76 return 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 DSleeperComponent.java106 public void setSlam(float duration, float magnitude) { argument
108 mSlamMagnitude = magnitude;
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 DHitReactionComponent.java277 public void setBounceMagnitude(float magnitude) { argument
278 mBounceMagnitude = magnitude;
/external/clang/test/Sema/
H A Doverloadable.c58 double magnitude(DoubleVec) __attribute__((__overloadable__));
59 double magnitude(IntVec) __attribute__((__overloadable__));
61 return magnitude(d) * magnitude(d);
/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-raytrace.js237 var m = this.magnitude();
241 magnitude : function() {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-raytrace.js237 var m = this.magnitude();
241 magnitude : function() {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-raytrace.js231 var m = this.magnitude();
235 magnitude : function() {
/external/chromium_org/v8/benchmarks/
H A Draytrace.js236 var m = this.magnitude();
240 magnitude : function() {
/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. ...
/external/libvorbis/doc/
H A D04-codec.tex211 \item the numbers read in the above two steps are channel numbers representing the channel to treat as magnitude and the channel to treat as angle, respectively. If for any coupling step the angle channel number equals the magnitude channel number, the magnitude channel number is greater than \varname{[audio_channels]}-1, or the angle channel is greater than \varname{[audio_channels]}-1, the stream is undecodable.
H A D01-introduction.tex400 coupling is in use, some vectors will correspond to coupled magnitude
423 polar representation (where one vector is magnitude and the second
H A D08-residue.tex11 represent spectral lines, spectral magnitude, spectral phase or
/external/llvm/lib/Support/
H A DAPInt.cpp525 // If magnitude of LHS is less than RHS, return true.
529 // If magnitude of RHS is greather than LHS, return false.
1272 // Determine the magnitude of the value.
1273 unsigned magnitude = getActiveBits();
1277 if (magnitude <= 5) {
1290 // If the magnitude of the value fits in less than 52 bits (the precision of
1294 if (magnitude < 52) {
/external/opencv/cxcore/include/
H A Dcxcore.h629 Either of output components (magnitude or angle) is optional */
631 CvArr* magnitude, CvArr* angle CV_DEFAULT(NULL),
635 Either of output components (magnitude or angle) is optional.
636 If magnitude is missing it is assumed to be all 1's */
637 CVAPI(void) cvPolarToCart( const CvArr* magnitude, const CvArr* angle,
/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/chromium_org/third_party/webrtc/modules/audio_processing/ns/
H A Dnsx_core_neon.S238 @ Last iteration over magnitude spectrum.

Completed in 6188 milliseconds

12