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

1 2 3 4 5 6 7

  /bootable/recovery/
recovery-persist.cpp 28 // The content is matched and rotated in as need be.
79 static bool rotated = false; variable
103 // already-rotated files? Algorithm thus far is KISS: one file,
107 rotated = true;
161 if (rotated) {
rotate_logs.cpp 92 // Logs should only be rotated once.
93 static bool rotated = false; local
94 if (rotated) {
97 rotated = true;
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417Writer.cpp 74 bool rotated = false; local
77 rotated = true;
94 if (rotated) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 99 public Point rotated(float radians) { method in class:Point
106 return this.minus(center).rotated(radians).plus(center);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 204 float[] rotated = new float[4]; local
205 rotated[0] = rotate[0] * sourceData[0] + rotate[1] * sourceData[2];
206 rotated[1] = rotate[0] * sourceData[1] + rotate[1] * sourceData[3];
207 rotated[2] = rotate[2] * sourceData[0] + rotate[3] * sourceData[2];
208 rotated[3] = rotate[2] * sourceData[1] + rotate[3] * sourceData[3];
212 checkData(m, rotated);
  /packages/apps/Contacts/src/com/android/contacts/util/
BitmapUtil.java 93 * Retrieves a copy of the specified drawable resource, rotated by a specified angle.
98 * @return Rotated drawable.
103 // Get the original drawable and make a copy which will be rotated.
105 Bitmap rotated = Bitmap.createBitmap( local
109 Canvas tempCanvas = new Canvas(rotated);
113 return new BitmapDrawable(resources,rotated);
  /external/boringssl/ios-arm/crypto/fipsmodule/
ghashv8-armx32.S 45 vmov d3,d0 @ Xm is rotated Xl
88 vmov d3,d0 @ Xm is rotated Xl
112 vld1.64 {q0},[r0] @ load [rotated] Xi
113 @ "[rotated]" means that
115 @ to be rotated in order to
133 vld1.64 {q8},[r2]! @ load [rotated] I[0]
141 vld1.64 {q9},[r2],r12 @ load [rotated] I[1]
164 vld1.64 {q8},[r2],r12 @ load [rotated] I[i+2]
173 vld1.64 {q9},[r2],r12 @ load [rotated] I[i+3]
184 vmov d3,d0 @ Xm is rotated X
    [all...]
  /external/boringssl/linux-arm/crypto/fipsmodule/
ghashv8-armx32.S 44 vmov d3,d0 @ Xm is rotated Xl
85 vmov d3,d0 @ Xm is rotated Xl
107 vld1.64 {q0},[r0] @ load [rotated] Xi
108 @ "[rotated]" means that
110 @ to be rotated in order to
128 vld1.64 {q8},[r2]! @ load [rotated] I[0]
136 vld1.64 {q9},[r2],r12 @ load [rotated] I[1]
159 vld1.64 {q8},[r2],r12 @ load [rotated] I[i+2]
168 vld1.64 {q9},[r2],r12 @ load [rotated] I[i+3]
179 vmov d3,d0 @ Xm is rotated X
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java 152 Bitmap rotated = null; local
154 rotated = TransformationUtils.rotateImageExif(downsampled, pool, orientation);
156 if (!downsampled.equals(rotated) && !pool.put(downsampled)) {
161 return rotated;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RotateFilter.java 75 Quad targetQuad = mSourceRect.rotated((float) (mRotateAngle / 180 * Math.PI));
  /external/boringssl/src/crypto/fipsmodule/modes/asm/
ghashv8-armx.pl 126 vmov $Xm#hi,$Xl#lo @ Xm is rotated Xl
175 vmov $Xm#hi,$Xl#lo @ Xm is rotated Xl
211 vld1.64 {$Xl},[$Xi] @ load [rotated] Xi
212 @ "[rotated]" means that
214 @ to be rotated in order to
232 vld1.64 {$t0},[$inp],#16 @ load [rotated] I[0]
248 vld1.64 {$t1},[$inp],$inc @ load [rotated] I[1]
271 vld1.64 {$t0},[$inp],$inc @ load [rotated] I[i+2]
280 vld1.64 {$t1},[$inp],$inc @ load [rotated] I[i+3]
291 vmov $Xm#hi,$Xl#lo @ Xm is rotated X
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
LogicalDisplay.java 330 // is rotated when the contents of the logical display are rendered.
340 // The frame specifies the rotated physical coordinates into which the viewport
344 boolean rotated = (orientation == Surface.ROTATION_90
346 int physWidth = rotated ? displayDeviceInfo.height : displayDeviceInfo.width;
347 int physHeight = rotated ? displayDeviceInfo.width : displayDeviceInfo.height;
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 89 Bitmap rotated = Bitmap.createBitmap(bitmap, 0, 0, local
91 // If the rotated bitmap is the original bitmap, then it
93 if (rotated != bitmap) bitmap.recycle();
94 return rotated;
  /external/freetype/src/truetype/
ttobjs.h 265 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
  /external/pdfium/third_party/freetype/src/truetype/
ttobjs.h 269 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimatorInflaterTest.java 171 boolean rotated = mInstrumentation.getUiAutomation().setRotation(nextRotation);
173 if (!rotated) {
  /external/walt/docs/
ChromeOS.md 32 The first reading `G` is the accelerometer, it should change when WALT is rotated.
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 29 * scaled, rotated and sheared/skewed rectangles. As such, Quads are restricted to the set of
104 * Return a Quad that represents the specified rotated rectangle.
106 * The Quad is rotated counter-clockwise around its centroid.
110 * @return the Quad representing the source rectangle rotated by the given angle.
113 return Quad.fromRect(rect).rotated(angle);
178 * The Quad is rotated counter-clockwise around its centroid.
181 * @return the rotated Quad
183 public Quad rotated(float angle) { method in class:Quad
  /frameworks/base/services/core/java/com/android/server/wm/
DockedStackDividerController.java 163 final boolean rotated = (rotation == ROTATION_90 || rotation == ROTATION_270);
165 rotated ? baseDisplayHeight : baseDisplayWidth,
166 rotated ? baseDisplayWidth : baseDisplayHeight);
222 final boolean rotated = (rotation == ROTATION_90 || rotation == ROTATION_270);
223 final int dw = rotated
226 final int dh = rotated
    [all...]
DisplayContent.java     [all...]
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 139 * Returns "true" if the device is rotated 90 degrees.
220 // case is "all of it". If the app is rotated (so that the width of the
228 ALOGV("using rotated width/height");
240 // post-rotation, so if the display is rotated 90 degrees we need to
274 printf("Rotated content area is %ux%u at offset x=%d y=%d\n",
559 bool rotated = isDeviceRotated(mainDpyInfo.orientation); local
561 gVideoWidth = rotated ? mainDpyInfo.h : mainDpyInfo.w;
564 gVideoHeight = rotated ? mainDpyInfo.w : mainDpyInfo.h;
    [all...]
  /external/mesa3d/docs/specs/OLD/
MESA_sprite_point.spec 73 squares. One could define rotated texture images if desired. A 3D
  /compatibility/cdd/7_hardware-compatibility/
7_5_cameras.md 62 display be rotated via a call to the
67 that the Camera display be rotated via a call to the
78 If device implementations are capable of being rotated by user (such as
  /prebuilts/go/darwin-x86/src/crypto/des/
block.go 191 // creates 16 28-bit blocks rotated according
  /prebuilts/go/linux-x86/src/crypto/des/
block.go 191 // creates 16 28-bit blocks rotated according

Completed in 2153 milliseconds

1 2 3 4 5 6 7