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

1 2 3

  /external/chromium_org/skia/ext/
image_operations.h 103 int dest_width, int dest_height,
111 int dest_width, int dest_height,
120 int dest_width, int dest_height,
126 int dest_width, int dest_height,
image_operations.cc 98 int dest_width, int dest_height,
181 int dest_width, int dest_height,
191 float scale_y = static_cast<float>(dest_height) /
342 int dest_width, int dest_height,
346 return ResizeSubpixel(source, dest_width, dest_height,
349 return ResizeBasic(source, method, dest_width, dest_height, dest_subset,
356 int dest_width, int dest_height,
361 "dst_pixels", dest_width*dest_height);
378 h = dest_height < source.height() ? 3 : 1;
384 const int height = dest_height * h
    [all...]
convolver_unittest.cc 100 int dest_height = src_height / 2; local
101 int dest_byte_count = dest_width * dest_height * 4;
113 FillBoxFilter(dest_height, &filter_y);
121 for (int y = 0; y < dest_height; y++) {
218 unsigned int dest_height) {
230 for (unsigned int p = 0; p < dest_height; ++p) {
231 unsigned int offset = source_height * p / dest_height;
241 result_c.allocN32Pixels(dest_width, dest_height);
242 result_sse.allocN32Pixels(dest_width, dest_height);
287 << " to:" << dest_width << "x" << dest_height
326 unsigned int dest_height = dest_sizes[j][1]; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmapScaler.h 85 float dest_width, float dest_height,
90 float dest_width, float dest_height,
  /external/skia/src/core/
SkBitmapScaler.h 85 float dest_width, float dest_height,
  /external/chromium_org/third_party/libvpx/source/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/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 19 int dest_width, int dest_height, FX_DWORD argb, const FX_RECT* pClipRect, int flags);
21 int dest_width, int dest_height, const FX_RECT* pClipRect, int flags);
118 int dest_width, int dest_height, FX_DWORD flags,
121 int dest_width, int dest_height, FX_DWORD bitmap_color, FX_DWORD flags,
138 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
147 int dest_width, int dest_height, const FX_RECT* pClipRect, int render_flags,
159 int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags,
219 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 286 static CFX_DIBitmap* _StretchMonoToGray(int dest_width, int dest_height,
293 FX_BOOL bFlipY = dest_height < 0;
295 dest_height = -dest_height;
312 int dest_count = dest_width * dest_height;
314 int y_unit = src_height / dest_height;
321 int src_y_start = bFlipY ? (dest_height - 1 - dest_y - pClipRect->top) : (dest_y + pClipRect->top);
322 src_y_start = src_y_start * src_height / dest_height;
344 int dest_width, int dest_height, FX_ARGB argb, const FX_RECT* pClipRect)
361 if (dest_height < 0) {
    [all...]
fx_win32_device.cpp 520 int dest_width, int dest_height, FX_DWORD flags, void* pIccTransform)
531 if (abs(dest_width) * abs(dest_height) < pBitmap1->GetWidth() * pBitmap1->GetHeight() * 4 ||
539 if (m_DeviceClass == FXDC_PRINTER && (pBitmap->GetWidth() * pBitmap->GetHeight() > abs(dest_width) * abs(dest_height))) {
540 pToStrechBitmap = pBitmap->StretchTo(dest_width, dest_height);
544 ::StretchDIBits(m_hDC, dest_left, dest_top, dest_width, dest_height,
553 int dest_width, int dest_height, FX_DWORD bitmap_color, FX_DWORD flags,
578 ::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);
259 virtual void v_DownScale(int dest_width, int dest_height) {}
  /external/pdfium/core/include/fxcodec/
fx_codec_provider.h 20 virtual void DownScale(void* pDecoder, int dest_width, int dest_height) = 0;
  /external/chromium_org/third_party/mesa/src/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/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 60 int dest_width, int dest_height, const FX_RECT& clip_rect,
  /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/chromium_org/media/base/
yuv_convert.cc 410 int dest_height,
420 CHECK_LE(dest_height, source_height);
424 DCHECK(dest_rect_top >= 0 && dest_rect_bottom <= dest_height);
430 int y_step = kFractionMax * source_height / dest_height;
yuv_convert.h 116 int dest_height,
  /external/chromium_org/third_party/libva/va/
va_backend.h 276 unsigned int dest_height
329 unsigned short dest_height,

Completed in 943 milliseconds

1 2 3