HomeSort by relevance Sort by last modified time
    Searched refs:dstHeight (Results 26 - 50 of 71) sorted by null

12 3

  /hardware/qcom/media/libc2dcolorconvert/
C2DColorConverter.cpp 54 C2DColorConverter(size_t srcWidth, size_t srcHeight, size_t dstWidth, size_t dstHeight, ColorConvertFormat srcFormat, ColorConvertFormat dstFormat, int32_t flags,size_t srcStride);
109 C2DColorConverter::C2DColorConverter(size_t srcWidth, size_t srcHeight, size_t dstWidth, size_t dstHeight, ColorConvertFormat srcFormat, ColorConvertFormat dstFormat, int32_t flags, size_t srcStride)
141 mDstHeight = dstHeight;
145 mDstSize = calcSize(dstFormat, dstWidth, dstHeight);
147 mDstYSize = calcYSize(dstFormat, dstWidth, dstHeight);
152 mDstSurfaceDef = getDummySurfaceDef(dstFormat, dstWidth, dstHeight, false);
162 mBlit.target_rect.height = dstHeight << 16;
705 extern "C" C2DColorConverterBase* createC2DColorConverter(size_t srcWidth, size_t srcHeight, size_t dstWidth, size_t dstHeight, ColorConvertFormat srcFormat, ColorConvertFormat dstFormat, int32_t flags, size_t srcStride)
707 return new C2DColorConverter(srcWidth, srcHeight, dstWidth, dstHeight, srcFormat, dstFormat, flags, srcStride);
  /cts/tests/tests/media/src/android/media/cts/
Vp8CodecTestBase.java 386 byte[] dst, int dstByteOffset, int dstWidth, int dstHeight) {
387 for (int i = 0; i < dstHeight/2 - 1; i++) {
412 int dstOffset0 = (dstHeight - 2) * dstWidth + dstByteOffset;
414 int srcOffset0 = (dstHeight/2 - 1) * srcStride + srcByteOffset;
439 int dstWidth, int dstHeight) throws Exception {
441 int dstYSize = dstWidth * dstHeight;
443 if (dstWidth == 2 * srcWidth && dstHeight <= 2 * srcHeight) {
445 dst = new byte[dstWidth * dstHeight * 3 / 2];
447 dst, 0, dstWidth, dstHeight); // Y
449 dst, dstYSize, dstWidth / 2, dstHeight / 2); //
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
filter.js 154 var dstHeight = dst.height;
161 offsetY < 0 || offsetY + dstHeight > srcHeight)
165 for (var y = 0; y != dstHeight; y++) {
224 var dstHeight = dst.height;
234 offsetY < 0 || offsetY + dstHeight > srcHeight)
248 var endY = Math.min(dstHeight, srcHeight - margin - offsetY);
374 var dstHeight = dst.height;
381 offsetY < 0 || offsetY + dstHeight > srcHeight)
390 for (var y = 0; y != dstHeight; y++) {
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blit.c 118 const GLint dstHeight = ABS(dstY1 - dstY0);
258 dstWidth, dstHeight,
280 for (dstRow = 0; dstRow < dstHeight; dstRow++) {
281 GLint srcRow = (dstRow * srcHeight) / dstHeight;
498 const GLint dstHeight = ABS(dstY1 - dstY0);
499 const GLfloat dstHeightF = (GLfloat) dstHeight;
607 for (dstRow = 0; dstRow < dstHeight; dstRow++) {
  /external/mesa3d/src/mesa/swrast/
s_blit.c 118 const GLint dstHeight = ABS(dstY1 - dstY0);
258 dstWidth, dstHeight,
280 for (dstRow = 0; dstRow < dstHeight; dstRow++) {
281 GLint srcRow = (dstRow * srcHeight) / dstHeight;
498 const GLint dstHeight = ABS(dstY1 - dstY0);
499 const GLfloat dstHeightF = (GLfloat) dstHeight;
607 for (dstRow = 0; dstRow < dstHeight; dstRow++) {
  /frameworks/av/media/libstagefright/omx/
SoftVideoDecoderOMXComponent.cpp 235 size_t dstHeight = outputBufferHeight();
244 dst = dstStart + dstYStride * dstHeight;
251 dst = dstStart + (5 * dstYStride * dstHeight) / 4;
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ShadowPainter.java 82 int dstHeight = image.getHeight();
89 int yStop = dstHeight - right;
103 for (int y = 0, bufferOffset = 0; y < dstHeight; y++, bufferOffset = y * dstWidth) {
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusBrush.h 305 IN REAL dstHeight)
315 dstHeight,
331 IN INT dstHeight)
341 dstHeight,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusbrush.h 460 REAL dstX, REAL dstY, REAL dstWidth, REAL dstHeight)
465 wrapMode, dstX, dstY, dstWidth, dstHeight,
470 INT dstX, INT dstY, INT dstWidth, INT dstHeight)
475 wrapMode, dstX, dstY, dstWidth, dstHeight,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
MockTvInputService.java 202 int dstHeight = c.getHeight();
205 new Rect(10, 10, dstWidth - 10, dstHeight - 10), null);
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 358 final int dstHeight = (int) (sBallDiameter * mMetersToPixelsY + 0.5f);
359 mBitmap = Bitmap.createScaledBitmap(ball, dstWidth, dstHeight, true);
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMask.cpp 786 int dstHeight = dst->fBounds.height();
792 SkAutoTMalloc<uint8_t> verticalScanline(dstHeight);
795 ComputeBlurredScanline(verticalScanline, profile, dstHeight, sigma);
797 for (int y = 0 ; y < dstHeight ; ++y) {
825 for (int y = pad ; y < dstHeight-pad ; y++) {
830 for (int y = pad ; y < dstHeight-pad ; y++) {
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 786 int dstHeight = dst->fBounds.height();
792 SkAutoTMalloc<uint8_t> verticalScanline(dstHeight);
795 ComputeBlurredScanline(verticalScanline, profile, dstHeight, sigma);
797 for (int y = 0 ; y < dstHeight ; ++y) {
825 for (int y = pad ; y < dstHeight-pad ; y++) {
830 for (int y = pad ; y < dstHeight-pad ; y++) {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java 231 float dstHeight = drawRect.bottom - drawRect.top + 1;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_reg.h 810 uint32 dstHeight;
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_reg.h 810 uint32 dstHeight;
    [all...]
  /hardware/intel/img/hwcomposer/ips/anniedale/
AnnOverlayPlane.cpp 405 uint32_t dstHeight = h;
420 dstWidth, dstHeight,
433 if (srcWidth == dstWidth && srcHeight == dstHeight) {
438 yscaleFract = ((srcHeight - 1) << 12) / (dstHeight * deinterlace_factor);
  /hardware/intel/img/hwcomposer/ips/common/
OverlayPlaneBase.cpp 1009 uint32_t dstHeight = h;
1013 dstWidth, dstHeight);
1016 if (srcWidth == dstWidth && srcHeight == dstHeight) {
1021 yscaleFract = ((srcHeight - 1) << 12) / (dstHeight * deinterlace_factor);
    [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 85 size_t dstWidth, size_t dstHeight,
99 dstWidth, dstHeight,
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 573 * @param dstHeight The new bitmap's desired height.
578 public static Bitmap createScaledBitmap(Bitmap src, int dstWidth, int dstHeight,
594 final float sy = dstHeight / (float)height;
    [all...]
  /hardware/intel/common/utils/ISV/base/
isv_worker.cpp 331 mFilterParam.dstHeight = filterParam->dstHeight;
753 dst_region.height = mFilterParam.dstHeight;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 365 int dstHeight = image.getHeight();
372 int yStop = dstHeight - right;
386 for (int y = 0, bufferOffset = 0; y < dstHeight; y++, bufferOffset = y * dstWidth) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_gen_mipmap.c     [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c     [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.cpp 607 int dstHeight = ctx->dpyAttr[dpy].yres;;
613 getAspectRatioPosition(dstWidth, dstHeight, srcWidth,
623 displayFrame.bottom = dstHeight;
834 int dstHeight = ctx->dpyAttr[dpy].yres;
838 hwc_rect outRect = {0, 0, dstWidth, dstHeight};
845 getAspectRatioPosition(dstWidth, dstHeight, srcWidth,
    [all...]

Completed in 1442 milliseconds

12 3