HomeSort by relevance Sort by last modified time
    Searched refs:degrees (Results 126 - 150 of 286) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/rs/script_api/
rs_math.spec 237 To get an inverse cosine measured in degrees, use <code>acospi(a) * 180.f</code>.
308 To get an inverse sine measured in degrees, use <code>asinpi(a) * 180.f</code>.
382 To get an inverse tangent measured in degrees, use <code>atan2pi(n, d) * 180.f</code>.
431 To get an inverse tangent measured in degrees, use <code>atanpi(a) * 180.f</code>.
666 To get the cosine of a value measured in degrees, call <code>cospi(v / 180.f)</code>.
680 function: degrees
687 summary: Converts radians into degrees
689 Converts from radians to degrees.
692 function: degrees
1864 To get an inverse cosine measured in degrees, use <code>acospi(a) * 180.f</code>
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 535 status_t StagefrightRecorder::setParamVideoRotation(int32_t degrees) {
536 ALOGV("setParamVideoRotation: %d", degrees);
537 if (degrees < 0 || degrees % 90 != 0) {
538 ALOGE("Unsupported video rotation angle: %d", degrees);
541 mRotationDegrees = degrees % 360;
808 } else if (key == "video-param-rotation-angle-degrees") {
809 int32_t degrees; local
810 if (safe_strtoi32(value.string(), &degrees)) {
811 return setParamVideoRotation(degrees);
    [all...]
StagefrightRecorder.h 182 status_t setParamVideoRotation(int32_t degrees);
  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraZslImpl.java 613 int degrees = CameraUtil.getJpegRotation(captureParams.orientation, mCharacteristics); local
619 degrees);
640 acquireJpegBytes(image, degrees),
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 482 void SkMatrix::setRotate(SkScalar degrees, SkScalar px, SkScalar py) {
484 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
488 void SkMatrix::setRotate(SkScalar degrees) {
490 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
494 void SkMatrix::preRotate(SkScalar degrees, SkScalar px, SkScalar py) {
496 m.setRotate(degrees, px, py);
500 void SkMatrix::preRotate(SkScalar degrees) {
502 m.setRotate(degrees);
506 void SkMatrix::postRotate(SkScalar degrees, SkScalar px, SkScalar py) {
508 m.setRotate(degrees, px, py)
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 342 public void setOrientationHint(int degrees) {
350 if (mLogVerbose) Log.v(TAG, "Setting orientation hint to: " + degrees);
351 mOrientationHint = degrees;
    [all...]
  /external/ImageMagick/www/api/
distort.php 163 Image *RotateImage(const Image *image,const double degrees,
172 <dt>degrees</dt>
173 <p>Specifies the number of degrees to rotate the image.</p>
  /external/skia/include/core/
SkMatrix44.h 357 SkMScalar degrees) {
358 this->setRotateAbout(x, y, z, degrees * SK_MScalarPI / 180);
442 degrees into a perpendicular plane collapses a square to a line, but
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskCompressImageToJpeg.java 86 Rect crop, int degrees) {
87 return JpegUtilNative.compressJpegFromYUV420Image(img, outBuf, quality, crop, degrees);
431 * @param orientation the rotation to apply, in degrees.
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 276 public void rotate(int degrees) {
280 int rotation = (this.rotation + degrees) % 360;
LocalVideo.java 197 public void rotate(int degrees) {
  /external/autotest/client/cros/
ec.py 141 @returns integer of temperature reading in degrees Kelvin.
  /frameworks/av/media/libstagefright/include/media/stagefright/
MPEG4Writer.h 223 void writeCompositionMatrix(int32_t degrees);
  /frameworks/av/services/camera/libcameraservice/api1/
Camera2Client.h 174 status_t commandSetDisplayOrientationL(int degrees);
  /frameworks/base/libs/hwui/
SkiaCanvas.h 90 virtual void rotate(float degrees) override;
RecordingCanvas.h 124 virtual void rotate(float degrees) override;
  /frameworks/base/libs/hwui/hwui/
Canvas.h 190 virtual void rotate(float degrees) = 0;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 160 /** The current rotation amount, in degrees */
662 * Rotates the image 90 degrees, clockwise.
669 * Rotates the image 90 degrees, counter clockwise.
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/beam/
SendUi.java 548 * @return the current display rotation in degrees
607 float degrees = getDegreesForRotation(mDisplay.getRotation()); local
620 boolean requiresRotation = (degrees > 0);
624 mDisplayMatrix.preRotate(-degrees);
642 c.rotate(360f - degrees);
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java 454 int degrees = 0; local
456 case Surface.ROTATION_0: degrees = 0; break;
457 case Surface.ROTATION_90: degrees = 90; break;
458 case Surface.ROTATION_180: degrees = 180; break;
459 case Surface.ROTATION_270: degrees = 270; break;
464 result = (info.orientation + degrees) % 360;
467 result = (info.orientation - degrees + 360) % 360;
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 942 extern float __attribute__((overloadable)) degrees(float radians) { function
945 extern float2 __attribute__((overloadable)) degrees(float2 radians) { function
948 extern float3 __attribute__((overloadable)) degrees(float3 radians) { function
951 extern float4 __attribute__((overloadable)) degrees(float4 radians) { function
1920 HN_FUNC_HN(degrees); variable
    [all...]
  /external/ImageMagick/MagickCore/
draw.c 5350 degrees; local
5841 degrees, local
    [all...]
  /external/skia/src/c/
sk_surface.cpp 343 void sk_canvas_rotate_degress(sk_canvas_t* ccanvas, float degrees) {
344 AsCanvas(ccanvas)->rotate(degrees);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.h 340 static int degToTransform(int degrees, bool mirror);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 543 * @return the current display rotation in degrees
566 float degrees = getDegreesForRotation(mDisplay.getRotation()); local
567 boolean requiresRotation = (degrees > 0);
571 mDisplayMatrix.preRotate(-degrees);
593 c.rotate(degrees);
    [all...]

Completed in 1658 milliseconds

1 2 3 4 56 7 8 91011>>