Searched refs:y0 (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java899 float x0, x1, y0, y1;
905 x0 = r.left; y0 = r.top;
909 x0 = r.right; y0 = r.top;
913 x0 = r.right; y0 = r.top;
914 x1 = level * r.left; y1 = y0;
917 x0 = r.right; y0 = r.bottom;
921 x0 = r.left; y0 = r.bottom;
925 x0 = r.left; y0 = r.bottom;
929 x0 = r.left; y0 = r.top;
930 x1 = level * r.right; y1 = y0;
[all...]
/frameworks/minikin/include/minikin/
H A DLayout.h81 void draw(Bitmap*, int x0, int y0, float size) const;
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp259 float y0 = *pSrc++; local
260 float y1 = y0;
276 if (y < y0) {
277 y0 = y;
298 float dy = y1 - y0;
301 *pSphere++ = y0 + dy * 0.5f;
315 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) { argument
316 return x0 * x1 + y0 * y1 + z0 * z1;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DShaderProgram.java265 public native boolean setSourceRegion(float x0, float y0, float x1, float y1, argument
268 private native boolean setTargetRegion(float x0, float y0, float x1, float y1, argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_ver_quarter.s41 y0 RN 3 label
99 CMP y0, #0
100 BLT do_fill ;// (y0 < 0)
102 ADD tmp6, y0, partH ;// (y0+partHeight)
103 ADD tmp6, tmp6, #5 ;// (y0+partH+5)
124 STR x0,[sp,#0x1f0] ;// y0 = 0
131 LDR y0 ,[sp,#0x1f0] ;// y0
133 MLA tmp6, width, y0, x
[all...]
H A Dh264bsd_interpolate_hor_ver_quarter.s42 y0 RN 3 label
107 CMP y0, #0
108 BLT do_fill ;// (y0 < 0)
111 ADD tmp5, y0, partH ;// (y0+partHeight)
112 ADD tmp5, tmp5, #5 ;// (y0+partH+5)
133 STR x0,[sp,#0x1f0] ;// y0 = 0
140 LDR y0 ,[sp,#0x1f0] ;// y0
144 MLA tmp5, width, y0, x
[all...]
/frameworks/base/core/java/android/util/
H A DPathParser.java546 float y0,
560 /* Transform (x0, y0) and (x1, y1) into unit space */
562 double x0p = (x0 * cosTheta + y0 * sinTheta) / a;
563 double y0p = (-x0 * sinTheta + y0 * cosTheta) / b;
582 drawArc(p, x0, y0, x1, y1, a * adjust,
618 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep);
544 drawArc(Path p, float x0, float y0, float x1, float y1, float a, float b, float theta, boolean isMoreThanHalf, boolean isPositiveArc) argument
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_x86.c80 const void *y0, const void *y1, const void *y2,
100 p0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y0)), _mm_setzero_si128());
101 p1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y0+1)), _mm_setzero_si128());
102 p2 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y0+2)), _mm_setzero_si128());
103 p3 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y0+3)), _mm_setzero_si128());
135 y0 = (const char *)y0 + 8;
596 void rsdIntrinsicConvolve5x5_K(void *dst, const void *y0, const void *y1, argument
640 p0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*(int32_t *)y0), _mm_setzero_si128());
641 p1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y0
79 rsdIntrinsicConvolve3x3_K(void *dst, const void *y0, const void *y1, const void *y2, const short *coef, uint32_t count) argument
[all...]
H A DrsCpuIntrinsicConvolve3x3.cpp87 extern "C" void rsdIntrinsicConvolve3x3_K(void *dst, const void *y0, const void *y1,
/frameworks/base/core/jni/android/graphics/
H A DNinePatchImpl.cpp177 const int32_t y0 = yDivs[0]; local
187 bool yIsStretchable = (y0 == 0);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
H A DQuad.java326 private Quad(float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3) { argument
327 mTopLeft = new PointF(x0, y0);
/frameworks/minikin/libs/minikin/
H A DLayout.cpp244 int y0 = std::max(0, y); local
246 const unsigned char* src = bitmap.buffer + (y0 - y) * bmw + (x0 - x);
247 uint8_t* dst = buf + y0 * width;
248 for (int yy = y0; yy < y1; yy++) {
807 void Layout::draw(Bitmap* surface, int x0, int y0, float size) const { argument
828 x0 + int(floor(glyph.x + 0.5)), y0 + int(floor(glyph.y + 0.5)));
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.cpp490 int64_t CameraDeviceClient::euclidDistSquare(int32_t x0, int32_t y0, int32_t x1, int32_t y1) { argument
492 int64_t d1 = y0 - y1;

Completed in 486 milliseconds

12