Searched defs:src_top (Results 1 - 7 of 7) sorted by relevance

/external/pdfium/core/src/fxge/apple/
H A Dfx_quartz_device.cpp567 CGFloat src_left, src_top, src_width, src_height; local
570 src_top = srcRect->top;
574 src_left = src_top = 0;
582 src_top /= scale_y;
591 rect_usr = CGRectOffset(rect_usr, -src_left, -src_top);
/external/pdfium/core/src/fxge/dib/
H A Dfx_dib_convert.cpp295 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top)
303 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row);
314 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top)
318 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row) + src_left;
324 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform)
366 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row);
377 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform)
412 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row) + src_left;
420 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform)
428 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top
294 _ConvertBuffer_1bppMask2Gray(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top) argument
313 _ConvertBuffer_8bppMask2Gray(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top) argument
323 _ConvertBuffer_1bppPlt2Gray(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
376 _ConvertBuffer_8bppPlt2Gray(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
419 _ConvertBuffer_RgbOrCmyk2Gray(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
467 _ConvertBuffer_IndexCopy(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top) argument
490 _ConvertBuffer_Plt2PltRgb8(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, FX_DWORD* dst_plt, void* pIccTransform) argument
531 _ConvertBuffer_Rgb2PltRgb8_NoTransform(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, FX_DWORD* dst_plt) argument
587 _ConvertBuffer_Rgb2PltRgb8(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, FX_DWORD* dst_plt, void* pIccTransform) argument
606 _ConvertBuffer_1bppMask2Rgb(FXDIB_Format dst_format, FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top) argument
631 _ConvertBuffer_8bppMask2Rgb(FXDIB_Format dst_format, FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top) argument
649 _ConvertBuffer_1bppPlt2Rgb(FXDIB_Format dst_format, FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
696 _ConvertBuffer_8bppPlt2Rgb(FXDIB_Format dst_format, FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
742 _ConvertBuffer_24bppRgb2Rgb24(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
761 _ConvertBuffer_32bppRgb2Rgb24(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
783 _ConvertBuffer_Rgb2Rgb32(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
813 _ConvertBuffer_32bppCmyk2Rgb32(FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
841 ConvertBuffer(FXDIB_Format dest_format, FX_LPBYTE dest_buf, int dest_pitch, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, FX_DWORD*& d_pal, void* pIccTransform) argument
[all...]
H A Dfx_dib_engine.cpp239 double src_top = FXSYS_Mul(scale_y, (FX_FLOAT)(clip_rect.top) + base_y); local
246 if (src_top > src_bottom) {
247 double temp = src_top;
248 src_top = src_bottom;
253 m_SrcClip.top = (int)FXSYS_floor((FX_FLOAT)src_top);
H A Dfx_dib_composite.cpp4122 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top,
4134 src_left, src_top, pClipRgn);
4164 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row) + src_left * src_Bpp;
4165 FX_LPCBYTE src_scan_extra_alpha = pSrcAlphaMask ? pSrcAlphaMask->GetScanline(src_top + row) + src_left : NULL;
4180 const CFX_DIBSource* pMask, FX_DWORD color, int src_left, int src_top,
4191 GetOverlapRect(dest_left, dest_top, width, height, pMask->GetWidth(), pMask->GetHeight(), src_left, src_top, pClipRgn);
4214 FX_LPCBYTE src_scan = pMask->GetScanline(src_top + row);
4121 CompositeBitmap(int dest_left, int dest_top, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, int blend_type, const CFX_ClipRgn* pClipRgn, FX_BOOL bRgbByteOrder, void* pIccTransform) argument
4179 CompositeMask(int dest_left, int dest_top, int width, int height, const CFX_DIBSource* pMask, FX_DWORD color, int src_left, int src_top, int blend_type, const CFX_ClipRgn* pClipRgn, FX_BOOL bRgbByteOrder, int alpha_flag, void* pIccTransform) argument
H A Dfx_dib_main.cpp13 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, FX_DWORD*& pal, void* pIccTransform);
356 int src_width, int src_height, int& src_left, int& src_top,
369 int y_offset = dest_top - src_top;
370 FX_RECT src_rect(src_left, src_top, src_left + width, src_top + height);
383 src_top = dest_top - y_offset;
388 const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform)
393 GetOverlapRect(dest_left, dest_top, width, height, pSrcBitmap->GetWidth(), pSrcBitmap->GetHeight(), src_left, src_top, NULL);
403 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row);
416 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top
355 GetOverlapRect(int& dest_left, int& dest_top, int& width, int& height, int src_width, int src_height, int& src_left, int& src_top, const CFX_ClipRgn* pClipRgn) argument
387 TransferBitmap(int dest_left, int dest_top, int width, int height, const CFX_DIBSource* pSrcBitmap, int src_left, int src_top, void* pIccTransform) argument
436 TransferMask(int dest_left, int dest_top, int width, int height, const CFX_DIBSource* pMask, FX_DWORD color, int src_left, int src_top, int alpha_flag, void* pIccTransform) argument
[all...]
/external/pixman/pixman/
H A Dpixman-mmx.c3551 __m64 t = ldq_u ((__m64 *)&src_top [pixman_fixed_to_int (vx)]); \
3608 const uint32_t * src_top,
3651 const uint32_t * src_top,
3701 const uint32_t * src_top,
3606 scaled_bilinear_scanline_mmx_8888_8888_SRC(uint32_t * dst, const uint32_t * mask, const uint32_t * src_top, const uint32_t * src_bottom, int32_t w, int wt, int wb, pixman_fixed_t vx, pixman_fixed_t unit_x, pixman_fixed_t max_vx, pixman_bool_t zero_src) argument
3649 scaled_bilinear_scanline_mmx_8888_8888_OVER(uint32_t * dst, const uint32_t * mask, const uint32_t * src_top, const uint32_t * src_bottom, int32_t w, int wt, int wb, pixman_fixed_t vx, pixman_fixed_t unit_x, pixman_fixed_t max_vx, pixman_bool_t zero_src) argument
3699 scaled_bilinear_scanline_mmx_8888_8_8888_OVER(uint32_t * dst, const uint8_t * mask, const uint32_t * src_top, const uint32_t * src_bottom, int32_t w, int wt, int wb, pixman_fixed_t vx, pixman_fixed_t unit_x, pixman_fixed_t max_vx, pixman_bool_t zero_src) argument
H A Dpixman-sse2.c5584 (__m128i *)&src_top[pixman_fixed_to_int (vx)]); \
5631 const uint32_t * src_top,
5692 const uint32_t * src_top,
5792 const uint32_t * src_top,
5956 const uint32_t * src_top,
5629 scaled_bilinear_scanline_sse2_8888_8888_SRC(uint32_t * dst, const uint32_t * mask, const uint32_t * src_top, const uint32_t * src_bottom, int32_t w, int wt, int wb, pixman_fixed_t vx, pixman_fixed_t unit_x, pixman_fixed_t max_vx, pixman_bool_t zero_src) argument
5690 scaled_bilinear_scanline_sse2_8888_8888_OVER(uint32_t * dst, const uint32_t * mask, const uint32_t * src_top, const uint32_t * src_bottom, int32_t w, int wt, int wb, pixman_fixed_t vx, pixman_fixed_t unit_x, pixman_fixed_t max_vx, pixman_bool_t zero_src) argument
5790 scaled_bilinear_scanline_sse2_8888_8_8888_OVER(uint32_t * dst, const uint8_t * mask, const uint32_t * src_top, const uint32_t * src_bottom, int32_t w, int wt, int wb, pixman_fixed_t vx, pixman_fixed_t unit_x, pixman_fixed_t max_vx, pixman_bool_t zero_src) argument
5954 scaled_bilinear_scanline_sse2_8888_n_8888_OVER(uint32_t * dst, const uint32_t * mask, const uint32_t * src_top, const uint32_t * src_bottom, int32_t w, int wt, int wb, pixman_fixed_t vx, pixman_fixed_t unit_x, pixman_fixed_t max_vx, pixman_bool_t zero_src) argument

Completed in 116 milliseconds