/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Matrix3f.java | 116 public void loadRotate(float rot, float x, float y, float z) { in loadRotate() argument 118 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 119 c = (float)java.lang.Math.cos(rot); in loadRotate() 120 s = (float)java.lang.Math.sin(rot); in loadRotate() 152 public void loadRotate(float rot) { in loadRotate() argument 155 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 156 c = (float)java.lang.Math.cos(rot); in loadRotate() 157 s = (float)java.lang.Math.sin(rot); in loadRotate() 247 public void rotate(float rot, float x, float y, float z) { in rotate() argument 249 tmp.loadRotate(rot, x, y, z); in rotate() [all …]
|
D | Matrix2f.java | 106 public void loadRotate(float rot) { in loadRotate() argument 108 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 109 c = (float)java.lang.Math.cos(rot); in loadRotate() 110 s = (float)java.lang.Math.sin(rot); in loadRotate() 166 public void rotate(float rot) { in rotate() argument 168 tmp.loadRotate(rot); in rotate()
|
D | Matrix4f.java | 152 public void loadRotate(float rot, float x, float y, float z) { in loadRotate() argument 161 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 162 c = (float)java.lang.Math.cos(rot); in loadRotate() 163 s = (float)java.lang.Math.sin(rot); in loadRotate() 371 public void rotate(float rot, float x, float y, float z) { in rotate() argument 373 tmp.loadRotate(rot, x, y, z); in rotate()
|
/frameworks/base/rs/java/android/renderscript/ |
D | Matrix3f.java | 113 public void loadRotate(float rot, float x, float y, float z) { in loadRotate() argument 115 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 116 c = (float)java.lang.Math.cos(rot); in loadRotate() 117 s = (float)java.lang.Math.sin(rot); in loadRotate() 149 public void loadRotate(float rot) { in loadRotate() argument 152 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 153 c = (float)java.lang.Math.cos(rot); in loadRotate() 154 s = (float)java.lang.Math.sin(rot); in loadRotate() 244 public void rotate(float rot, float x, float y, float z) { in rotate() argument 246 tmp.loadRotate(rot, x, y, z); in rotate() [all …]
|
D | Matrix2f.java | 103 public void loadRotate(float rot) { in loadRotate() argument 105 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 106 c = (float)java.lang.Math.cos(rot); in loadRotate() 107 s = (float)java.lang.Math.sin(rot); in loadRotate() 163 public void rotate(float rot) { in rotate() argument 165 tmp.loadRotate(rot); in rotate()
|
D | Matrix4f.java | 151 public void loadRotate(float rot, float x, float y, float z) { in loadRotate() argument 160 rot *= (float)(java.lang.Math.PI / 180.0f); in loadRotate() 161 c = (float)java.lang.Math.cos(rot); in loadRotate() 162 s = (float)java.lang.Math.sin(rot); in loadRotate() 370 public void rotate(float rot, float x, float y, float z) { in rotate() argument 372 tmp.loadRotate(rot, x, y, z); in rotate()
|
/frameworks/rs/ |
D | rsMatrix4x4.h | 42 void loadRotate(float rot, float x, float y, float z); 64 void rotate(float rot, float x, float y, float z) { in rotate() 66 tmp.loadRotate(rot, x, y, z); in rotate()
|
D | rsMatrix4x4.cpp | 200 void Matrix4x4::loadRotate(float rot, float x, float y, float z) { in loadRotate() argument 209 rot *= float(M_PI / 180.0f); in loadRotate() 210 c = cosf(rot); in loadRotate() 211 s = sinf(rot); in loadRotate()
|
D | rsRuntime.h | 187 void rsrMatrixLoadRotate(rs_matrix4x4 *m, float rot, float x, float y, float z); 199 void rsrMatrixRotate(rs_matrix4x4 *m, float rot, float x, float y, float z);
|
/frameworks/rs/cpu_ref/ |
D | rsCpuRuntimeMath.cpp | 58 static void SC_MatrixLoadRotate(Matrix4x4 *m, float rot, float x, float y, float z) { in SC_MatrixLoadRotate() argument 59 m->loadRotate(rot, x, y, z); in SC_MatrixLoadRotate() 67 static void SC_MatrixRotate(Matrix4x4 *m, float rot, float x, float y, float z) { in SC_MatrixRotate() argument 68 m->rotate(rot, x, y, z); in SC_MatrixRotate() 166 float rot, float x, float y, float z) { in rsMatrixLoadRotate() argument 167 SC_MatrixLoadRotate((Matrix4x4 *) m, rot, x, y, z); in rsMatrixLoadRotate() 177 void __attribute__((overloadable)) rsMatrixRotate(rs_matrix4x4 *m, float rot, in rsMatrixRotate() argument 179 SC_MatrixRotate((Matrix4x4 *) m, rot, x, y, z); in rsMatrixRotate()
|
/frameworks/rs/scriptc/ |
D | rs_quaternion.rsh | 84 * @param rot angle to rotate by 90 rsQuaternionLoadRotateUnit(rs_quaternion *q, float rot, float x, float y, float z) { 91 rot *= (float)(M_PI / 180.0f) * 0.5f; 92 float c = cos(rot); 93 float s = sin(rot); 105 * @param rot angle to rotate by 111 rsQuaternionLoadRotate(rs_quaternion *q, float rot, float x, float y, float z) { 119 rsQuaternionLoadRotateUnit(q, rot, x, y, z);
|
D | rs_matrix.rsh | 186 * @param rot How much rotation to do, in degrees. 192 rsMatrixLoadRotate(rs_matrix4x4 *m, float rot, float x, float y, float z); 295 * @param rot How much rotation to do, in degrees. 301 rsMatrixRotate(rs_matrix4x4 *m, float rot, float x, float y, float z);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | DessertCaseView.java | 415 final float rot = (float)irand(0, 4) * 90f; 430 ObjectAnimator.ofFloat(v, View.ROTATION, rot), 446 v.setRotation(rot);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NavigationBarView.java | 424 final int rot = mDisplay.getRotation(); in reorient() local 428 mCurrentView = mRotatedViews[rot]; in reorient()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowManagerService.java | 5939 private static void convertCropForSurfaceFlinger(Rect crop, int rot, int dw, int dh) { in convertCropForSurfaceFlinger() argument 5940 if (rot == Surface.ROTATION_90) { in convertCropForSurfaceFlinger() 5946 } else if (rot == Surface.ROTATION_180) { in convertCropForSurfaceFlinger() 5953 } else if (rot == Surface.ROTATION_270) { in convertCropForSurfaceFlinger() 6003 int rot = Surface.ROTATION_0; in screenshotApplications() local 6136 rot = getDefaultDisplayContentLocked().getDisplay().getRotation(); in screenshotApplications() 6138 if (rot == Surface.ROTATION_90 || rot == Surface.ROTATION_270) { in screenshotApplications() 6139 rot = (rot == Surface.ROTATION_90) ? Surface.ROTATION_270 : Surface.ROTATION_90; in screenshotApplications() 6144 convertCropForSurfaceFlinger(crop, rot, dw, dh); in screenshotApplications() 6165 inRotation, rot); in screenshotApplications()
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | PhoneWindowManager.java | 5207 public void setUserRotationMode(int mode, int rot) { in setUserRotationMode() argument 5214 rot, in setUserRotationMode()
|