Home
last modified time | relevance | path

Searched refs:size_y (Results 1 – 20 of 20) sorted by relevance

/external/pdfium/fpdfsdk/
Dfpdfview.cpp693 int size_y, in FPDF_RenderPage() argument
711 pBitmap->Create(size_x, size_y, FXDIB_Argb); in FPDF_RenderPage()
720 FPDF_RenderPage_Retail(pContext, page, start_x, start_y, size_x, size_y, in FPDF_RenderPage()
728 pDst->Create(size_x, size_y, FXDIB_Rgb32); in FPDF_RenderPage()
729 FXSYS_memset(pDst->GetBuffer(), -1, pitch * size_y); in FPDF_RenderPage()
730 pDst->CompositeBitmap(0, 0, size_x, size_y, pBitmap.get(), 0, 0, in FPDF_RenderPage()
732 WinDC.StretchDIBits(pDst.get(), 0, 0, size_x, size_y); in FPDF_RenderPage()
747 int size_y, in FPDF_RenderPageBitmap() argument
764 FPDF_RenderPage_Retail(pContext, page, start_x, start_y, size_x, size_y, in FPDF_RenderPageBitmap()
815 int size_y) { in FPDF_RenderPageSkp() argument
[all …]
Dfpdf_progressive.cpp36 int size_y, in FPDF_RenderPageBitmap_Start() argument
55 FPDF_RenderPage_Retail(pContext, page, start_x, start_y, size_x, size_y, in FPDF_RenderPageBitmap_Start()
Dfpdfformfill.cpp78 int size_y, in FFLCommon() argument
102 pPage->GetDisplayMatrix(start_x, start_y, size_x, size_y, rotate); in FFLCommon()
103 FX_RECT clip(start_x, start_y, start_x + size_x, start_y + size_y); in FFLCommon()
398 int size_y, in FPDF_FFLDraw() argument
401 FFLCommon(hHandle, bitmap, nullptr, page, start_x, start_y, size_x, size_y, in FPDF_FFLDraw()
412 int size_y, in FPDF_FFLRecord() argument
415 FFLCommon(hHandle, nullptr, recorder, page, start_x, start_y, size_x, size_y, in FPDF_FFLRecord()
Dfsdk_define.h72 int size_y,
/external/skia/experimental/tools/
Dmskp_parser.py41 offset, size_x, size_y =struct.unpack('Qff', src.read(16)) variable
45 size_x, size_y =struct.unpack('ff', src.read(8)) variable
46 print('size = (%r,%r)' % (size_x, size_y))
/external/pdfium/fpdfsdk/fpdfxfa/
Dcpdfxfa_page.cpp148 int size_y, in DeviceToPage() argument
159 GetDisplayMatrix(start_x, start_y, size_x, size_y, rotate)); in DeviceToPage()
171 int size_y, in PageToDevice() argument
181 GetDisplayMatrix(start_x, start_y, size_x, size_y, rotate); in PageToDevice()
Dcpdfxfa_page.h47 int size_y,
56 int size_y,
/external/pdfium/public/
Dfpdfview.h591 int size_y,
626 int size_y,
655 int size_y);
718 int size_y,
754 int size_y,
Dfpdf_progressive.h85 int size_y,
Dfpdf_formfill.h1529 int size_y,
1540 int size_y,
/external/llvm/test/CodeGen/Mips/
Dcmplarge.ll12 …%size_y = getelementptr inbounds %struct.StorablePicture, %struct.StorablePicture* %s, i32 0, i32 1
13 %0 = load i32, i32* %size_y, align 4
23 %1 = load i32, i32* %size_y, align 4
/external/mesa3d/src/compiler/nir/
Dnir_lower_system_values.c92 nir_ssa_def *size_y = in convert_block() local
96 nir_imul(b, size_x, size_y)); in convert_block()
/external/autotest/client/deps/glbench/src/
Dutils.cc206 GLfloat size_x, GLfloat size_y, int width, int height) in CreateLattice() argument
210 GLfloat shift_y = size_y * height; in CreateLattice()
214 *vptr++ = 2 * j * size_y - shift_y; in CreateLattice()
Dutils.h37 GLfloat size_x, GLfloat size_y, int width, int height);
/external/pdfium/core/fxge/
Dcfx_fxgedevice.h32 SkPictureRecorder* CreateRecorder(int size_x, int size_y);
/external/webrtc/webrtc/common_video/libyuv/
Dscaler_unittest.cc361 int size_y = src_width * src_height; in ScaleSequence() local
371 frame_buffer.get() + size_y, in ScaleSequence()
372 frame_buffer.get() + size_y + size_uv, in ScaleSequence()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.h33 CFX_SkiaDeviceDriver(int size_x, int size_y);
Dfx_skia_device.cpp1247 CFX_SkiaDeviceDriver::CFX_SkiaDeviceDriver(int size_x, int size_y) in CFX_SkiaDeviceDriver() argument
1253 m_pRecorder->beginRecording(SkIntToScalar(size_x), SkIntToScalar(size_y)); in CFX_SkiaDeviceDriver()
2189 SkPictureRecorder* CFX_FxgeDevice::CreateRecorder(int size_x, int size_y) { in CreateRecorder() argument
2190 CFX_SkiaDeviceDriver* skDriver = new CFX_SkiaDeviceDriver(size_x, size_y); in CreateRecorder()
/external/pdfium/core/fxcodec/codec/
Dccodec_progressivedecoder.h65 int size_y,
Dfx_codec_progress.cpp1842 int size_y, in StartDecode() argument
1855 if (size_x <= 0 || size_x > 65535 || size_y <= 0 || size_y > 65535) in StartDecode()
1859 FX_RECT(start_x, start_y, start_x + size_x, start_y + size_y); in StartDecode()
1883 FX_FLOAT scaleY = (FX_FLOAT)m_clipBox.Height() / (FX_FLOAT)size_y; in StartDecode()