Searched refs:x2 (Results 51 - 75 of 241) sorted by relevance

12345678910

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/shadowutil/
H A DShadowBuffer.java170 private int min(int x1, int x2, int x3) { argument
171 return (x1 > x2) ? ((x2 > x3) ? x3 : x2) : ((x1 > x3) ? x3 : x1);
174 private int max(int x1, int x2, int x3) { argument
175 return (x1 < x2) ? ((x2 < x3) ? x3 : x2) : ((x1 < x3) ? x3 : x1);
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A Dgrain.rs46 uint32_t x2 = (x+1) & gWMask;
52 uint p02 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y1);
55 uint p12 = 114 * rsGetElementAt_uchar(gBlendSource, x2, y);
58 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A Dgrain.rs46 uint32_t x2 = (x+1) & gWMask;
52 uint p02 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y1);
55 uint p12 = 114 * rsGetElementAt_uchar(gBlendSource, x2, y);
58 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A Dgrain.rs46 uint32_t x2 = (x+1) & gWMask;
52 uint p02 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y1);
55 uint p12 = 114 * rsGetElementAt_uchar(gBlendSource, x2, y);
58 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_comp.cpp1126 ULong x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
1152 x2 = *((ULong*)(prev + lx)); /* load b3 b2 b1 b0, another line */
1157 x2m = (x2 >> 2) & mask;
1159 x2 = x2 ^(x2m << 2);
1161 x1 += x2;
1163 /* x2m, x2 free */
1172 /* x2m, x2 free */
1173 x2 = *((ULong*)(prev += 4)); /* a11 a10 a9 a8 */
1175 x2m = (x2 >>
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_advsimd_3DLUT.S105 * size_t count, // x2
127 subs x2, x2, #8
129 cmn x2, #8 // same as cmp x2, #-8
137 * x2 = count
206 subs x2, x2, #8
211 cmn x2, #8 // same as cmp x2, #
[all...]
H A DrsCpuIntrinsicLUT.cpp58 uint32_t x2 = xend; local
65 while (x1 < x2) {
H A DrsCpuIntrinsicResize.cpp336 uint32_t x2 = xend; local
339 if (gArchUseSIMD && x2 > x1 && cp->scaleX < 4.0f) {
346 int len = x2 - x1;
365 while(x1 < x2) {
403 uint32_t x2 = xend; local
406 if (gArchUseSIMD && x2 > x1 && cp->scaleX < 4.0f) {
413 int len = x2 - x1;
432 while(x1 < x2) {
470 uint32_t x2 = xend; local
473 if (gArchUseSIMD && x2 > x
537 uint32_t x2 = xend; local
577 uint32_t x2 = xend; local
617 uint32_t x2 = xend; local
[all...]
H A DrsCpuIntrinsics_advsimd_Blend.S441 subs x2, x2, #64
468 subs x2, x2, #64
476 adds x2, x2, #64
495 tbz x2, #5, 1f
498 1: tbz x2, #4, 1f
501 1: tbz x2, #3, 1f
504 1: tbz x2, #
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmotion_comp.h36 #define CBP_MASK_CHROMA_BLK4 0x2
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A DomxVCM4P10_TransformDequantLumaDCFromPair_s.S60 VMOV.I32 q3,#0x2
61 VMOV.I32 q4,#0x2
62 VMOV.I32 q5,#0x2
63 VMOV.I32 q6,#0x2
/frameworks/base/media/java/android/media/
H A DAudioPortConfig.java43 static final int CHANNEL_MASK = 0x2;
/frameworks/base/core/java/android/transition/
H A DCircularPropagation.java100 private static double distance(float x1, float y1, float x2, float y2) { argument
101 double x = x2 - x1;
/frameworks/support/transition/src/android/support/transition/
H A DCircularPropagation.java100 private static float distance(float x1, float y1, float x2, float y2) { argument
101 float x = x2 - x1;
/frameworks/native/include/media/openmax/
H A DOMX_VideoExt.h155 OMX_VIDEO_VP9Profile1 = 0x2,
169 OMX_VIDEO_VP9Level2 = 0x2,
209 OMX_VIDEO_HEVCProfileMain10 = 0x2,
219 OMX_VIDEO_HEVCHighTierLevel1 = 0x2,
286 OMX_VIDEO_DolbyVisionProfileDvavPen = 0x2,
300 OMX_VIDEO_DolbyVisionLevelHd30 = 0x2,
/frameworks/base/graphics/java/android/graphics/
H A DPath.java382 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
387 * @param x2 The x-coordinate of the end point on a quadratic curve
390 public void quadTo(float x1, float y1, float x2, float y2) { argument
392 nQuadTo(mNativePath, x1, y1, x2, y2);
416 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
421 * @param x2 The x-coordinate of the 2nd control point on a cubic curve
426 public void cubicTo(float x1, float y1, float x2, float y2, argument
429 nCubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
437 public void rCubicTo(float x1, float y1, float x2, float y2, argument
440 nRCubicTo(mNativePath, x1, y1, x2, y
831 nQuadTo(long nPath, float x1, float y1, float x2, float y2) argument
833 nCubicTo(long nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
835 nRCubicTo(long nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
[all...]
/frameworks/native/include/android/
H A Dconfiguration.h264 ACONFIGURATION_SCREENLONG_YES = 0x2,
268 ACONFIGURATION_SCREENROUND_YES = 0x2,
283 ACONFIGURATION_WIDE_COLOR_GAMUT_YES = 0x2,
298 ACONFIGURATION_HDR_YES = 0x2,
350 ACONFIGURATION_UI_MODE_NIGHT_YES = 0x2,
/frameworks/base/libs/hwui/
H A DShadowTessellator.cpp132 double x2 = poly[p2].x; local
134 double a = (x1 * y2 - x2 * y1);
135 sumx += (x1 + x2) * a;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNoisyVelocityTracker.java42 public MotionEventCopy(float x2, float y2, long eventTime) { argument
43 this.x = x2;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java81 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
83 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint); argument
85 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
87 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint); argument
/frameworks/av/include/ndk/
H A DNdkImage.h94 AIMAGE_FORMAT_RGBX_8888 = 0x2,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A Domxtypes_s.h77 OMX_VC_LEFT EQU 0x2 ;// Used by the PredictIntra functions variable
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A Domxtypes_s.h77 OMX_VC_LEFT EQU 0x2 ;// Used by the PredictIntra functions variable
/frameworks/av/services/audioflinger/
H A DAudioHwDevice.h37 AHWD_CAN_SET_MASTER_MUTE = 0x2,
/frameworks/base/core/java/android/util/
H A DMathUtils.java93 public static float dist(float x1, float y1, float x2, float y2) { argument
94 final float x = (x2 - x1);
99 public static float dist(float x1, float y1, float z1, float x2, float y2, float z2) { argument
100 final float x = (x2 - x1);

Completed in 2036 milliseconds

12345678910