Home
last modified time | relevance | path

Searched refs:GetHeight (Results 1 – 25 of 97) sorted by relevance

1234

/external/pdfium/xfa/fxbarcode/
DBC_TwoDimWriter.cpp33 topPos = (m_Height - m_output->GetHeight()) / 2; in RenderDeviceResult()
36 if (m_Width < m_output->GetWidth() && m_Height < m_output->GetHeight()) { in RenderDeviceResult()
39 (FX_FLOAT)m_Height / (FX_FLOAT)m_output->GetHeight(), 0.0, 0.0); in RenderDeviceResult()
44 for (int32_t y = 0; y < m_output->GetHeight(); y++) { in RenderDeviceResult()
65 pOutBitmap = CreateDIBitmap(m_output->GetWidth(), m_output->GetHeight()); in RenderBitmapResult()
76 topPos = (m_Height - m_output->GetHeight()) / 2; in RenderBitmapResult()
79 for (int32_t y = 0; y < m_output->GetHeight(); y++) { in RenderBitmapResult()
/external/webrtc/talk/media/base/
Dvideoframe.cc58 const size_t height = GetHeight(); in Write()
86 const size_t y_size = GetHeight() * GetYPitch(); in CopyToBuffer()
108 int32_t src_height = static_cast<int>(GetHeight()); in CopyToPlanes()
132 const size_t needed = std::abs(stride_rgb) * GetHeight(); in ConvertToRgbBuffer()
141 static_cast<int>(GetHeight()), to_fourcc)) { in ConvertToRgbBuffer()
165 size_t src_height = GetHeight(); in StretchToPlanes()
187 static_cast<int32_t>((GetHeight() - src_height) >> 2); in StretchToPlanes()
212 dst->GetWidth(), dst->GetHeight(), in StretchToFrame()
237 static_cast<int>(GetHeight()), in SetToBlack()
Dcapturerenderadapter.cc117 iter->render_height != frame->GetHeight(); in MaybeSetRenderingSize()
120 static_cast<int>(frame->GetHeight()), 0)) { in MaybeSetRenderingSize()
122 iter->render_height = frame->GetHeight(); in MaybeSetRenderingSize()
125 frame->GetWidth() << " x " << frame->GetHeight(); in MaybeSetRenderingSize()
Dfakevideorenderer.h67 frame->GetHeight() != static_cast<size_t>(height_)) { in RenderFrame()
73 << frame->GetWidth() << "x" << frame->GetHeight(); in RenderFrame()
121 size_t y_height = frame->GetHeight(); in CheckFrameColorYuv()
Dvideoframe.h68 virtual size_t GetHeight() const = 0;
71 size_t GetChromaHeight() const { return (GetHeight() + 1) / 2; } in GetChromaHeight()
/external/pdfium/xfa/fxbarcode/qrcode/
DBC_QRCoderMatrixUtil.cpp160 int32_t y2 = matrix->GetHeight() - 7 + (i - 8); in EmbedTypeInfo()
187 matrix->Set(i, matrix->GetHeight() - 11 + j, bit); in MaybeEmbedVersionInfo()
188 matrix->Set(matrix->GetHeight() - 11 + j, i, bit); in MaybeEmbedVersionInfo()
203 int32_t y = matrix->GetHeight() - 1; in EmbedDataBits()
208 while (y >= 0 && y < matrix->GetHeight()) { in EmbedDataBits()
347 if (matrix->Get(8, matrix->GetHeight() - 8) == 0) { in EmbedDarkDotAtLeftBottomCorner()
351 matrix->Set(8, matrix->GetHeight() - 8, 1); in EmbedDarkDotAtLeftBottomCorner()
458 EmbedVerticalSeparationPattern(matrix->GetHeight() - vspSize - 1, 0, matrix, in EmbedPositionDetectionPatternsAndSeparators()
462 EmbedVerticalSeparationPattern(vspSize, matrix->GetHeight() - vspSize, matrix, in EmbedPositionDetectionPatternsAndSeparators()
DBC_QRCoderMaskUtil.cpp42 int32_t height = matrix->GetHeight(); in ApplyMaskPenaltyRule2()
61 int32_t height = matrix->GetHeight(); in ApplyMaskPenaltyRule3()
113 int32_t height = matrix->GetHeight(); in ApplyMaskPenaltyRule4()
121 int32_t numTotalCells = matrix->GetHeight() * matrix->GetWidth(); in ApplyMaskPenaltyRule4()
176 int32_t height = matrix->GetHeight(); in ApplyMaskPenaltyRule1Internal()
/external/webrtc/talk/media/devices/
Dgtkvideorenderer.cc108 if (!SetSize(frame->GetWidth(), frame->GetHeight(), 0)) { in RenderFrame()
115 frame->GetWidth() * frame->GetHeight() * 4, in RenderFrame()
130 frame->GetHeight(), in RenderFrame()
Dcarbonvideorenderer.cc131 if (!SetSize(frame->GetWidth(), frame->GetHeight(), 0)) { in RenderFrame()
139 frame->GetWidth() * frame->GetHeight() * 4, in RenderFrame()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoframefactory_unittest.cc68 EXPECT_EQ(dest_frame->GetHeight(), src_height); in VerifyFrame()
74 EXPECT_EQ(dest_frame->GetHeight(), src_width); in VerifyFrame()
77 EXPECT_EQ(dest_frame->GetHeight(), src_height); in VerifyFrame()
Dwebrtcvideoframe_unittest.cc99 EXPECT_EQ(static_cast<size_t>(cropped_width), frame.GetHeight()); in TestInit()
103 EXPECT_EQ(static_cast<size_t>(cropped_height), frame.GetHeight()); in TestInit()
305 EXPECT_EQ(480u, frame.GetHeight()); in TEST_F()
321 EXPECT_EQ(frame1.GetHeight(), frame2->GetHeight()); in TEST_F()
/external/libyuv/files/source/
Dmjpeg_decoder.cc173 int MJpegDecoder::GetHeight() { in GetHeight() function in libyuv::MJpegDecoder
221 return DivideAndRoundUp(GetHeight(), vs); in GetComponentHeight()
249 if (dst_width != GetWidth() || dst_height > GetHeight()) { in DecodeToBuffers()
269 int skip = (GetHeight() - dst_height) / 2; in DecodeToBuffers()
339 if (dst_width != GetWidth() || dst_height > GetHeight()) { in DecodeToCallback()
357 int skip = (GetHeight() - dst_height) / 2; in DecodeToCallback()
Dconvert_jpeg.cc97 *height = mjpeg_decoder.GetHeight(); in MJPGSize()
127 (mjpeg_decoder.GetWidth() != w || mjpeg_decoder.GetHeight() != h)) { in MJPGToI420()
255 (mjpeg_decoder.GetWidth() != w || mjpeg_decoder.GetHeight() != h)) { in MJPGToARGB()
/external/libvpx/libvpx/third_party/libyuv/source/
Dmjpeg_decoder.cc173 int MJpegDecoder::GetHeight() { in GetHeight() function in libyuv::MJpegDecoder
223 return DivideAndRoundUp(GetHeight(), vs); in GetComponentHeight()
251 dst_height > GetHeight()) { in DecodeToBuffers()
271 int skip = (GetHeight() - dst_height) / 2; in DecodeToBuffers()
343 dst_height > GetHeight()) { in DecodeToCallback()
361 int skip = (GetHeight() - dst_height) / 2; in DecodeToCallback()
/external/pdfium/core/fxge/apple/
Dfx_apple_platform.cpp136 pClipMask->GetPitch() * pClipMask->GetHeight(), DoNothing); in DrawDeviceText()
139 pClipMask->GetWidth(), pClipMask->GetHeight(), 8, 8, in DrawDeviceText()
144 rect_cg = CGRectMake(0, 0, m_pBitmap->GetWidth(), m_pBitmap->GetHeight()); in DrawDeviceText()
/external/pdfium/testing/libfuzzer/
Dxfa_codec_fuzzer.h36 bitmap->Create(decoder->GetWidth(), decoder->GetHeight(), FXDIB_Argb); in Fuzz()
44 bitmap->GetHeight()); in Fuzz()
/external/pdfium/core/fpdfapi/render/
Dcpdf_devicebuffer.cpp70 m_pBitmap->GetHeight()); in OutputToDevice()
72 buffer.CompositeBitmap(0, 0, buffer.GetWidth(), buffer.GetHeight(), in OutputToDevice()
Dcpdf_type3cache.cpp55 int height = pBitmap->GetHeight(); in DetectFirstLastScan()
136 if (top_line == 0 && bottom_line == pBitmap->GetHeight() - 1) { in RenderGlyph()
/external/pdfium/core/fxge/dib/
Dfx_dib_main.cpp134 if (!Create(pSrc->GetWidth(), pSrc->GetHeight(), pSrc->GetFormat())) in Copy()
139 for (int row = 0; row < pSrc->GetHeight(); row++) in Copy()
253 m_pAlphaMask->GetHeight() * m_pAlphaMask->GetPitch()); in BuildAlphaMask()
415 pSrcBitmap->GetHeight(), src_left, src_top, nullptr); in TransferBitmap()
484 pMask->GetHeight(), src_left, src_top, nullptr); in TransferMask()
730 pSrcClone->GetHeight() != m_Height) { in LoadChannel()
740 pSrcClone->GetHeight() != m_Height) { in LoadChannel()
813 m_pAlphaMask->GetHeight() * m_pAlphaMask->GetPitch()); in LoadChannel()
840 pSrcBitmap->GetHeight() != m_Height) { in MultiplyAlpha()
1420 if (!m_pBitmap->Create(pSrc->GetWidth(), pSrc->GetHeight(), in CFX_DIBExtractor()
[all …]
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp802 dst_rect.Intersect(0, 0, pBitmap->GetWidth(), pBitmap->GetHeight()); in GDI_SetDIBits()
819 pBitmap->GetHeight() - pSrcRect->bottom, 0, in GDI_SetDIBits()
820 pBitmap->GetHeight(), pBuffer, in GDI_SetDIBits()
841 (int64_t)pBitmap1->GetWidth() * pBitmap1->GetHeight() * 4 || in GDI_StretchDIBits()
849 ((int64_t)pBitmap->GetWidth() * pBitmap->GetHeight() > in GDI_StretchDIBits()
856 pToStrechBitmap->GetWidth(), pToStrechBitmap->GetHeight(), in GDI_StretchDIBits()
874 int width = pBitmap->GetWidth(), height = pBitmap->GetHeight(); in GDI_StretchBitMask()
1174 int height = pBitmap->GetHeight(); in GetDIBits()
1217 int width = pSource->GetWidth(), height = pSource->GetHeight(); in SetDIBits()
1279 FX_RECT src_rect(0, 0, pStretched->GetWidth(), pStretched->GetHeight()); in UseFoxitStretchEngine()
/external/pdfium/xfa/fxbarcode/common/
DBC_CommonByteMatrix.h19 int32_t GetHeight();
/external/skia/experimental/SkV8Example/
DDrawingMethods.cpp134 void DrawingMethods::GetHeight(v8::Local<v8::String> name, in GetHeight() function in DrawingMethods
162 GetHeight); in addAttributesAndMethods()
/external/pdfium/core/fxcodec/codec/
Dccodec_scanlinedecoder.h30 int GetHeight() { return m_OutputHeight; } in GetHeight() function
/external/pdfium/xfa/fde/
Dfde_gedevice.cpp41 int32_t CFDE_RenderDevice::GetHeight() const { in GetHeight() function in CFDE_RenderDevice
42 return m_pDevice->GetHeight(); in GetHeight()
95 static_cast<FX_FLOAT>(pDib->GetHeight())); in DrawImage()
/external/lzma/CPP/Windows/Control/
DReBar.h24 UINT GetHeight() in GetHeight() function

1234