HomeSort by relevance Sort by last modified time
    Searched refs:dest_height (Results 1 - 25 of 40) sorted by null

1 2

  /external/skia/src/core/
SkBitmapScaler.h 85 float dest_width, float dest_height,
90 float dest_width, float dest_height,
  /external/libvpx/libvpx/vpx_scale/generic/
vpx_scale.c 215 * unsigned int dest_height : Height of destination image.
245 unsigned int dest_height,
346 if (source_height == dest_height) {
348 for (k = 0; k < (int)dest_height; k++) {
364 for (k = 0; k < (int)(dest_height + dest_band_height - 1) / dest_band_height; k++) {
402 if (source_height == dest_height) {
404 for (k = 0; k < (int)dest_height; k++) {
413 if (dest_height > source_height) {
415 source_band_height = dest_band_height * source_height / dest_height;
425 bands = (dest_height + dest_band_height - 1) / dest_band_height
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
vpx_scale.c 215 * unsigned int dest_height : Height of destination image.
245 unsigned int dest_height,
346 if (source_height == dest_height) {
348 for (k = 0; k < (int)dest_height; k++) {
364 for (k = 0; k < (int)(dest_height + dest_band_height - 1) / dest_band_height; k++) {
402 if (source_height == dest_height) {
404 for (k = 0; k < (int)dest_height; k++) {
413 if (dest_height > source_height) {
415 source_band_height = dest_band_height * source_height / dest_height;
425 bands = (dest_height + dest_band_height - 1) / dest_band_height
    [all...]
  /external/pdfium/core/src/fxge/win32/
win32_int.h 21 int dest_width, int dest_height, FX_DWORD argb, const FX_RECT* pClipRect, int flags);
23 int dest_width, int dest_height, const FX_RECT* pClipRect, int flags);
120 int dest_width, int dest_height, FX_DWORD flags,
123 int dest_width, int dest_height, FX_DWORD bitmap_color, FX_DWORD flags,
140 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
149 int dest_width, int dest_height, const FX_RECT* pClipRect, int render_flags,
161 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
221 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
fx_win32_print.cpp 54 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
62 if (dest_width < 0 || dest_height < 0) {
63 CFX_DIBitmap* pFlipped = pSource->FlipImage(dest_width < 0, dest_height < 0);
70 if (dest_height < 0) {
71 dest_top += dest_height;
73 FX_BOOL ret = GDI_StretchBitMask(pFlipped, dest_left, dest_top, abs(dest_width), abs(dest_height), color, flags, alpha_flag, pIccTransform);
82 return GDI_StretchBitMask(pBitmap, dest_left, dest_top, dest_width, dest_height, color, flags, alpha_flag, pIccTransform);
88 if (dest_width < 0 || dest_height < 0) {
89 CFX_DIBitmap* pFlipped = pSource->FlipImage(dest_width < 0, dest_height < 0);
96 if (dest_height < 0)
    [all...]
fx_win32_gdipext.cpp 291 static CFX_DIBitmap* _StretchMonoToGray(int dest_width, int dest_height,
298 FX_BOOL bFlipY = dest_height < 0;
300 dest_height = -dest_height;
314 int dest_count = dest_width * dest_height;
316 int y_unit = src_height / dest_height;
323 int src_y_start = bFlipY ? (dest_height - 1 - dest_y - pClipRect->top) : (dest_y + pClipRect->top);
324 src_y_start = src_y_start * src_height / dest_height;
346 int dest_width, int dest_height, FX_ARGB argb, const FX_RECT* pClipRect)
363 if (dest_height < 0)
    [all...]
fx_win32_device.cpp 510 int dest_width, int dest_height, FX_DWORD flags, void* pIccTransform)
513 if (pBitmap == NULL || dest_width == 0 || dest_height == 0) {
521 if ((FX_INT64)abs(dest_width) * abs(dest_height) < (FX_INT64)pBitmap1->GetWidth() * pBitmap1->GetHeight() * 4 ||
529 if (m_DeviceClass == FXDC_PRINTER && ((FX_INT64)pBitmap->GetWidth() * pBitmap->GetHeight() > (FX_INT64)abs(dest_width) * abs(dest_height))) {
530 pToStrechBitmap = pBitmap->StretchTo(dest_width, dest_height);
534 ::StretchDIBits(m_hDC, dest_left, dest_top, dest_width, dest_height,
543 int dest_width, int dest_height, FX_DWORD bitmap_color, FX_DWORD flags,
547 if (pBitmap == NULL || dest_width == 0 || dest_height == 0) {
588 ::StretchDIBits(m_hDC, dest_left, dest_top, dest_width, dest_height,
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec.cpp 106 void CCodec_ScanlineDecoder::DownScale(int dest_width, int dest_height)
111 if (dest_height < 0) {
112 dest_height = -dest_height;
114 v_DownScale(dest_width, dest_height);
258 virtual void v_DownScale(int dest_width, int dest_height) {}
codec_int.h 45 virtual void DownScale(int dest_width, int dest_height);
109 virtual void v_DownScale(int dest_width, int dest_height) = 0;
  /external/pdfium/core/include/fxcodec/
fx_codec_provider.h 20 virtual void DownScale(void* pDecoder, int dest_width, int dest_height) = 0;
  /external/mesa3d/src/gallium/state_trackers/va/
va_image.c 145 int dest_x, int dest_y, unsigned int dest_width, unsigned int dest_height)
va_subpicture.c 126 unsigned short dest_height,
va_private.h 124 unsigned int dest_height);
142 unsigned short dest_height,
  /external/pdfium/core/src/fxge/dib/
dib_int.h 63 int dest_width, int dest_height, const FX_RECT& clip_rect,
fx_dib_transform.cpp 182 CFX_DIBitmap* CFX_DIBSource::StretchTo(int dest_width, int dest_height, FX_DWORD flags, const FX_RECT* pClip) const
184 FX_RECT clip_rect(0, 0, FXSYS_abs(dest_width), FXSYS_abs(dest_height));
191 if (dest_width == m_Width && dest_height == m_Height) {
196 if (stretcher.Start(&storer, this, dest_width, dest_height, clip_rect, flags)) {
230 int dest_height = result_rect.Height(); local
232 result_clip = _FXDIB_SwapClipBox(result_clip, dest_width, dest_height, pDestMatrix->c > 0, pDestMatrix->b < 0);
233 m_Stretcher.Start(&m_Storer, pSrc, dest_height, dest_width, result_clip, flags);
239 int dest_height = pDestMatrix->d > 0 ? (int) - FXSYS_ceil(pDestMatrix->d) : (int) - FXSYS_floor(pDestMatrix->d); local
241 m_Stretcher.Start(&m_Storer, pSrc, dest_width, dest_height, result_clip, flags);
    [all...]
fx_dib_main.cpp 1559 int dest_height = image_rect.Height(); local
1580 int dest_height = image_rect.Height(); local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_image.cpp 320 int dest_height = image_rect.Height(); local
325 dest_height = -dest_height;
328 m_pRenderStatus->m_GroupFamily, m_pRenderStatus->m_bLoadMask, m_pRenderStatus, dest_width, dest_height)) {
669 int dest_height = image_rect.Height(); local
687 dest_height = -dest_height;
691 dest_top = dest_height > 0 ? image_rect.top : image_rect.bottom;
694 dest_width, dest_height, m_Flags, NULL, m_BlendType)) {
702 if (m_pRenderStatus->m_pDevice->StretchBitMask(m_pDIBSource, dest_left, dest_top, dest_width, dest_height, m_FillArgb, m_Flags))
746 int dest_height = m_ImageMatrix.d > 0 ? -image_rect.Height() : image_rect.Height(); local
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_device.cpp 366 int dest_width, int dest_height, FX_DWORD flags,
369 FX_RECT dest_rect(left, top, left + dest_width, top + dest_height);
375 return m_pDeviceDriver->StretchDIBits(pBitmap, 0, left, top, dest_width, dest_height, &clip_box, flags, 0, pIccTransform, blend_mode);
384 int dest_width, int dest_height, FX_DWORD argb, FX_DWORD flags,
387 FX_RECT dest_rect(left, top, left + dest_width, top + dest_height);
390 return m_pDeviceDriver->StretchDIBits(pBitmap, argb, left, top, dest_width, dest_height, &clip_box, flags, alpha_flag, pIccTransform);
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.h 66 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
  /external/pdfium/core/src/fxge/apple/
apple_int.h 141 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
174 void CG_SetImageTransform(int dest_left, int dest_top, int dest_width, int dest_height, CGRect* rect = NULL);
fx_quartz_device.cpp 693 int dest_height,
708 CGRect rect = CGRectMake(dest_left, dest_top, dest_width, dest_height);
717 CG_SetImageTransform(dest_left, dest_top, dest_width, dest_height);
    [all...]
  /hardware/intel/common/libva/va/
va_backend.h 275 unsigned int dest_height
328 unsigned short dest_height,
  /hardware/intel/img/psb_video/src/
psb_output.h 287 unsigned int dest_height
341 unsigned short dest_height,
  /external/pdfium/core/include/fxge/
fx_ge.h 416 FX_BOOL StretchDIBits(const CFX_DIBSource* pBitmap, int left, int top, int dest_width, int dest_height,
422 FX_BOOL StretchBitMask(const CFX_DIBSource* pBitmap, int left, int top, int dest_width, int dest_height,
600 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
688 int dest_width, int dest_height, FX_DWORD flags,
  /external/pdfium/core/src/fxge/agg/include/
fx_agg_driver.h 85 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,

Completed in 517 milliseconds

1 2