Searched refs:inR (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/hardware/ |
D | SensorManager.java | 1277 public static boolean remapCoordinateSystem(float[] inR, int X, int Y, in remapCoordinateSystem() argument 1280 if (inR == outR) { in remapCoordinateSystem() 1284 if (remapCoordinateSystemImpl(inR, X, Y, temp)) { in remapCoordinateSystem() 1292 return remapCoordinateSystemImpl(inR, X, Y, outR); in remapCoordinateSystem() 1295 private static boolean remapCoordinateSystemImpl(float[] inR, int X, int Y, in remapCoordinateSystemImpl() argument 1310 if (inR.length != length) in remapCoordinateSystemImpl() 1344 if (x==i) outR[offset+i] = sx ? -inR[offset+0] : inR[offset+0]; in remapCoordinateSystemImpl() 1345 if (y==i) outR[offset+i] = sy ? -inR[offset+1] : inR[offset+1]; in remapCoordinateSystemImpl() 1346 if (z==i) outR[offset+i] = sz ? -inR[offset+2] : inR[offset+2]; in remapCoordinateSystemImpl()
|