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

/frameworks/base/core/java/android/hardware/
H A DSensorManager.java1022 * <code>remapCoordinateSystem(inR, AXIS_X, AXIS_Z, outR);</code>
1031 * <code>remapCoordinateSystem(inR, AXIS_Y, AXIS_MINUS_X, outR);</code>
1058 * @param outR
1059 * the transformed rotation matrix. inR and outR can be the same
1064 * axis. Or if inR and outR don't have the same length.
1070 float[] outR)
1072 if (inR == outR) {
1077 final int size = outR.length;
1079 outR[i] = temp[i];
1084 return remapCoordinateSystemImpl(inR, X, Y, outR);
1069 remapCoordinateSystem(float[] inR, int X, int Y, float[] outR) argument
1087 remapCoordinateSystemImpl(float[] inR, int X, int Y, float[] outR) argument
[all...]

Completed in 68 milliseconds