Home
last modified time | relevance | path

Searched refs:dstTop (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/libs/hwui/pipeline/skia/
DSkiaRecordingCanvas.cpp211 float srcBottom, float dstLeft, float dstTop, float dstRight, in drawBitmap() argument
214 SkRect dstRect = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom); in drawBitmap()
226 float dstTop, float dstRight, float dstBottom, in drawNinePatch() argument
247 SkRect dst = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom); in drawNinePatch()
DSkiaRecordingCanvas.h51 float srcBottom, float dstLeft, float dstTop, float dstRight,
54 float dstLeft, float dstTop, float dstRight, float dstBottom,
/frameworks/av/media/codec2/components/gav1/
DC2SoftGav1Dec.cpp511 uint32_t *dstTop = (uint32_t *)dst; in convertYUV420Planar16ToY410() local
538 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
539 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
540 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
541 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
557 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
558 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
/frameworks/av/media/codec2/components/aom/
DC2SoftAomDec.cpp541 uint32_t *dstTop = (uint32_t *) dst; in convertYUV420Planar16ToY410() local
563 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
564 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
565 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
566 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
582 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
583 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
/frameworks/layoutlib/bridge/src/android/graphics/
DBaseCanvas_Delegate.java100 float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, in nDrawBitmap() argument
110 (int) srcRight, (int) srcBottom, (int) dstLeft, (int) dstTop, (int) dstRight, in nDrawBitmap()
429 final float dstLeft, final float dstTop, final float dstRight, final float dstBottom, in nDrawNinePatch() argument
443 image.getHeight(), (int) dstLeft, (int) dstTop, (int) dstRight, in nDrawNinePatch()
464 chunkObject.draw(bitmapDelegate.getImage(), graphics, (int) dstLeft, (int) dstTop, in nDrawNinePatch()
465 (int) (dstRight - dstLeft), (int) (dstBottom - dstTop), screenDensity, in nDrawNinePatch()
/frameworks/av/media/libstagefright/
DFrameDecoder.cpp739 int32_t dstLeft, dstTop, dstRight, dstBottom; in onOutputReceived() local
741 dstTop = mTilesDecoded / mGridCols * crop_height; in onOutputReceived()
743 dstBottom = dstTop + crop_height - 1; in onOutputReceived()
752 crop_bottom = crop_top + mHeight - dstTop - 1; in onOutputReceived()
765 dstLeft, dstTop, dstRight, dstBottom); in onOutputReceived()
/frameworks/av/media/codec2/components/vpx/
DC2SoftVpxDec.cpp667 uint32_t *dstTop = (uint32_t *) dst; in convertYUV420Planar16ToY410() local
689 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
690 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
691 *dstTop++ = 3 << 30 | ((y23 & 0x3FF) << 10) | uv1; in convertYUV420Planar16ToY410()
692 *dstTop++ = 3 << 30 | ((y23 >> 16) << 10) | uv1; in convertYUV420Planar16ToY410()
708 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
709 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
/frameworks/base/libs/hwui/hwui/
DCanvas.h258 float srcBottom, float dstLeft, float dstTop, float dstRight,
263 float dstTop, float dstRight, float dstBottom,
/frameworks/base/libs/hwui/
DSkiaCanvas.h127 float srcBottom, float dstLeft, float dstTop, float dstRight,
133 float dstTop, float dstRight, float dstBottom,
DSkiaCanvas.cpp559 float srcBottom, float dstLeft, float dstTop, float dstRight, in drawBitmap() argument
562 SkRect dstRect = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom); in drawBitmap()
656 float dstTop, float dstRight, float dstBottom, in drawNinePatch() argument
677 SkRect dst = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom); in drawNinePatch()
/frameworks/base/core/jni/
Dandroid_graphics_Canvas.cpp476 float dstLeft, float dstTop, float dstRight, float dstBottom, in drawBitmapRect() argument
489 dstLeft, dstTop, dstRight, dstBottom, &filteredPaint); in drawBitmapRect()
492 dstLeft, dstTop, dstRight, dstBottom, paint); in drawBitmapRect()
/frameworks/base/graphics/java/android/graphics/
DBaseCanvas.java669 float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, in nDrawBitmap() argument
723 float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, in nDrawNinePatch() argument
DBaseRecordingCanvas.java587 float dstLeft, float dstTop, float dstRight, float dstBottom, in nDrawBitmap() argument
659 float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, in nDrawNinePatch() argument