HomeSort by relevance Sort by last modified time
    Searched refs:rotation (Results 1 - 25 of 780) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/include/gpxe/
rotate.h 13 static inline uint32_t rol32 ( uint32_t data, unsigned int rotation ) {
14 return ( ( data << rotation ) | ( data >> ( 32 - rotation ) ) );
17 static inline uint32_t ror32 ( uint32_t data, unsigned int rotation ) {
18 return ( ( data >> rotation ) | ( data << ( 32 - rotation ) ) );
21 static inline uint64_t rol64 ( uint64_t data, unsigned int rotation ) {
22 return ( ( data << rotation ) | ( data >> ( 64 - rotation ) ) );
25 static inline uint64_t ror64 ( uint64_t data, unsigned int rotation ) {
    [all...]
  /external/valgrind/memcheck/tests/
bug287260.c 5 signed int rotation : 10; member in struct:__anon42937
13 r.rotation = 45;
14 fprintf (stderr, "%d\n", r.rotation);
  /frameworks/base/core/java/android/view/
IRotationWatcher.aidl 24 void onRotationChanged(int rotation);
  /external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_cvo.h 13 #include "webrtc/common_video/rotation.h"
18 // 12.07.00_60/ts_126114v120700p.pdf Section 7.4.5. The rotation of a frame is
21 inline uint8_t ConvertVideoRotationToCVOByte(VideoRotation rotation) {
22 switch (rotation) {
36 inline VideoRotation ConvertCVOByteToVideoRotation(uint8_t rotation) {
37 switch (rotation) {
  /external/opencv/cv/src/
cvposit.cpp 114 CvMatr32f rotation, CvVect32f translation )
135 if( !rotation )
165 float tmp = objectVectors[i] * rotation[6] /*[2][0]*/ +
166 objectVectors[N + i] * rotation[7] /*[2][1]*/ +
167 objectVectors[2 * N + i] * rotation[8] /*[2][2]*/;
189 rotation[3*i+j] /*[i][j]*/ = 0;
192 rotation[3*i+j] /*[i][j]*/ += invMatrix[j * N + k] * imgVectors[i * N + k];
197 inorm = rotation[0] /*[0][0]*/ * rotation[0] /*[0][0]*/ +
198 rotation[1] /*[0][1]*/ * rotation[1] /*[0][1]*/ +
    [all...]
  /external/webrtc/webrtc/test/
fake_texture_frame.cc 21 VideoRotation rotation) {
24 timestamp, render_time_ms, rotation);
  /frameworks/base/services/core/java/com/android/server/wm/utils/
RotationCache.java 24 * Caches the result of a rotation-dependent computation.
44 * @param t a parameter to the rotation-dependent computation.
45 * @param rotation the rotation for which to perform the rotation-dependent computation.
46 * @return the result of the rotation-dependent computation.
48 public R getOrCompute(T t, int rotation) {
53 final int idx = mCache.indexOfKey(rotation);
57 final R result = mComputation.compute(t, rotation);
58 mCache.put(rotation, result)
    [all...]
CoordinateTransforms.java 26 import android.view.Surface.Rotation;
34 * Sets a matrix such that given a rotation, it transforms physical display
35 * coordinates to that rotation's logical coordinates.
37 * @param rotation the rotation to which the matrix should transform
40 public static void transformPhysicalToLogicalCoordinates(@Rotation int rotation,
42 switch (rotation) {
59 throw new IllegalArgumentException("Unknown rotation: " + rotation);
    [all...]
  /external/deqp/scripts/
build_android_mustpass.py 61 rotation = "unspecified", variable
68 rotation = "unspecified", variable
78 rotation = "unspecified", variable
85 rotation = "unspecified", variable
96 rotation = "unspecified", variable
104 rotation = "unspecified", variable
112 rotation = "unspecified", variable
118 rotation = "0", variable
120 filters = [include("gles3-master.txt"), include("gles3-rotation.txt")]),
123 rotation = "90" variable
128 rotation = "180", variable
133 rotation = "270", variable
140 rotation = "unspecified", variable
149 rotation = "unspecified", variable
159 rotation = "unspecified", variable
166 rotation = "0", variable
171 rotation = "90", variable
176 rotation = "180", variable
181 rotation = "270", variable
188 rotation = "unspecified", variable
195 rotation = "unspecified", variable
207 rotation = "unspecified", variable
220 rotation = "unspecified", variable
233 rotation = "unspecified", variable
240 rotation = "0", variable
246 rotation = "90", variable
252 rotation = "180", variable
258 rotation = "270", variable
266 rotation = "unspecified", variable
274 rotation = "unspecified", variable
287 rotation = "unspecified", variable
295 rotation = "0", variable
301 rotation = "90", variable
307 rotation = "180", variable
313 rotation = "270", variable
321 rotation = "unspecified", variable
329 rotation = "unspecified", variable
355 rotation = "unspecified", variable
372 rotation = "unspecified", variable
380 rotation = "unspecified", variable
398 rotation = "unspecified", variable
406 rotation = "unspecified", variable
413 rotation = "0", variable
419 rotation = "90", variable
425 rotation = "180", variable
431 rotation = "270", variable
439 rotation = "unspecified", variable
448 rotation = "unspecified", variable
467 rotation = "unspecified", variable
475 rotation = "unspecified", variable
483 rotation = "0", variable
489 rotation = "90", variable
495 rotation = "180", variable
501 rotation = "270", variable
509 rotation = "unspecified", variable
517 rotation = "unspecified", variable
    [all...]
  /developers/build/prebuilts/gradle/RuntimePermissionsBasic/kotlinApp/Application/src/main/java/com/example/android/basicpermissions/util/
CameraExt.kt 22 fun Camera.CameraInfo.calculatePreviewOrientation(rotation: Int): Int {
23 val degrees = when (rotation) {
  /developers/samples/android/system/RuntimePermissionsBasic/kotlinApp/Application/src/main/java/com/example/android/basicpermissions/util/
CameraExt.kt 22 fun Camera.CameraInfo.calculatePreviewOrientation(rotation: Int): Int {
23 val degrees = when (rotation) {
  /hardware/intel/img/psb_video/src/android/
psb_android_glue.h 41 int psb_android_surfaceflinger_status(void** surface, int *sf_compostion, int *rotation, int *widi);
46 int psb_android_surfaceflinger_rotate(void* window, int *rotation);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Transition3d.java 81 * Setup a new 3D rotation on the container view.
84 * @param start the start angle at which the rotation must begin
85 * @param end the end angle of the rotation
92 // Create a new 3D rotation with the supplied parameter
94 final Rotate3dAnimation rotation = local
96 rotation.setDuration(500);
97 rotation.setFillAfter(true);
98 rotation.setInterpolator(new AccelerateInterpolator());
99 rotation.setAnimationListener(new DisplayNextView(position));
101 mContainer.startAnimation(rotation);
151 Rotate3dAnimation rotation; local
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
InCallOrientationEventListener.java 60 * our threshold is x degrees. We will only notify UI when our current rotation is within x
66 // Rotation threshold is 10 degrees. So if the rotation angle is within 10 degrees of any of
70 /** Cache the current rotation of the device. */
103 * <p>Note that this API receives sensor rotation in degrees as a param and we convert that to one
107 * @param rotation The new device sensor rotation in degrees
110 public void onOrientationChanged(int rotation) {
111 if (rotation == OrientationEventListener.ORIENTATION_UNKNOWN) {
115 final int orientation = toScreenOrientation(rotation);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/PoseProvider/
PoseData.java 26 /** Index of the quaternion X-value in the rotation array. */
28 /** Index of the quaternion Y-value in the rotation array. */
30 /** Index of the quaternion Z-value in the rotation array. */
32 /** Index of the quaternion W-value in the rotation array. */
70 public PoseData(float[] translation, float[] rotation, long timestamp){
72 mRotation[0] = rotation[0];
73 mRotation[1] = rotation[1];
74 mRotation[2] = rotation[2];
75 mRotation[3] = rotation[3];
82 * Convenience function to get the rotation casted as an array of floats
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
VideoTrackDecoder.java 43 public void grabFrame(FrameImage2D outputVideoFrame, int rotation) {
51 copyFrameDataTo(outputVideoFrame, rotation);
87 protected static boolean needSwapDimension(int rotation) {
88 switch(rotation) {
96 throw new IllegalArgumentException("Unsupported rotation angle.");
104 * @param rotation The desired rotation of the frame
106 protected abstract void copyFrameDataTo(FrameImage2D outputVideoFrame, int rotation);
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
RotationWatcher.java 33 public void onRotationChanged(int rotation) {
34 RotationWatcher.this.onRotationChanged(rotation);
45 protected abstract void onRotationChanged(int rotation);
54 Log.w(TAG, "Failed to set rotation watcher", e);
65 Log.w(TAG, "Failed to remove rotation watcher", e);
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.css 25 -webkit-animation: rotation .6s infinite linear;
26 animation: rotation .6s infinite linear;
39 @-webkit-keyframes rotation {
  /developers/build/prebuilts/gradle/RuntimePermissions/kotlinApp/app/src/main/java/com/example/android/system/runtimepermissions/extensions/
CameraExts.kt 28 fun Camera.CameraInfo.calculatePreviewOrientation(rotation: Int): Int {
30 val degrees = when (rotation) {
  /developers/samples/android/system/RuntimePermissions/kotlinApp/app/src/main/java/com/example/android/system/runtimepermissions/extensions/
CameraExts.kt 28 fun Camera.CameraInfo.calculatePreviewOrientation(rotation: Int): Int {
30 val degrees = when (rotation) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
RotationLockController.java 27 void setRotationLockedAtAngle(boolean locked, int rotation);
  /packages/apps/Gallery/src/com/android/camera/
RotateBitmap.java 32 public RotateBitmap(Bitmap bitmap, int rotation) {
34 mRotation = rotation % 360;
37 public void setRotation(int rotation) {
38 mRotation = rotation;
57 // We want to do the rotation at origin, but since the bounding
58 // rectangle will be changed after rotation, so the delta values
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDisplay.java 25 private int rotation = Surface.ROTATION_0; field in class:ShadowDisplay
61 return rotation;
125 public void setRotation(int rotation) {
126 this.rotation = rotation;
  /external/webrtc/webrtc/
video_frame.h 17 #include "webrtc/common_video/rotation.h"
28 VideoRotation rotation);
65 VideoRotation rotation);
74 VideoRotation rotation);
122 // "pending rotation" or "pending" = a frame that has a VideoRotation > 0.
126 // "apply rotation" = modify a frame from being "pending" to being "not
127 // pending" rotation (a no-op for "unrotated").
129 VideoRotation rotation() const { return rotation_; } function in class:webrtc::VideoFrame
130 void set_rotation(VideoRotation rotation) {
131 rotation_ = rotation;
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/PathUtilityClasses/
Ring.java 39 * @param rotation the orientation of the ring
44 float[] rotation, ArrayList<float[]> rectangleHitBox) {
48 mRotation = rotation;

Completed in 864 milliseconds

1 2 3 4 5 6 7 8 91011>>