Home
last modified time | relevance | path

Searched refs:m_height (Results 1 – 25 of 60) sorted by relevance

123

/external/pdfium/xfa/fxbarcode/common/
DBC_CommonBitMatrix.cpp29 m_height = 0; in CBC_CommonBitMatrix()
35 m_height = dimension; in Init()
36 int32_t rowSize = (m_height + 31) >> 5; in Init()
38 m_bits = FX_Alloc2D(int32_t, m_rowSize, m_height); in Init()
39 FXSYS_memset(m_bits, 0, m_rowSize * m_height * sizeof(int32_t)); in Init()
43 m_height = height; in Init()
46 m_bits = FX_Alloc2D(int32_t, m_rowSize, m_height); in Init()
47 FXSYS_memset(m_bits, 0, m_rowSize * m_height * sizeof(int32_t)); in Init()
54 if (offset >= m_rowSize * m_height || offset < 0) { in Get()
64 if (offset >= m_rowSize * m_height || offset < 0) { in Set()
[all …]
DBC_CommonByteMatrix.cpp27 m_height = height; in CBC_CommonByteMatrix()
32 m_bytes = FX_Alloc2D(uint8_t, m_height, m_width); in Init()
33 FXSYS_memset(m_bytes, 0xff, m_height * m_width); in Init()
39 return m_height; in GetHeight()
55 for (y = 0; y < m_height; y++) { in clear()
/external/deqp/modules/gles3/functional/
Des3fFboDepthbufferTests.cpp56 , m_height (height) in BasicFboDepthCase()
89 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height); in render()
92 glRenderbufferStorage(GL_RENDERBUFFER, m_format, m_width, m_height); in render()
100 glViewport(0, 0, m_width, m_height); in render()
132 …readPixels(dst, 0, 0, m_width, m_height, glu::mapGLInternalFormat(colorFormat), Vec4(1.0f), Vec4(0… in render()
138 int m_height; member in deqp::gles3::Functional::BasicFboDepthCase
148 , m_height (height) in DepthWriteClampCase()
179 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height); in render()
182 …glTexImage2D(GL_TEXTURE_2D, 0, m_format, m_width, m_height, 0, transferFmt.format, transferFmt.dat… in render()
192 glViewport(0, 0, m_width, m_height); in render()
[all …]
Des3fTextureFormatTests.cpp86 int m_height; member in deqp::gles3::Functional::Texture2DFormatCase
98 , m_height (height) in Texture2DFormatCase()
110 , m_height (height) in Texture2DFormatCase()
133 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height in init()
138 …? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal fo… in init()
139 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format. in init()
158 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in iterate()
244 int m_height; member in deqp::gles3::Functional::TextureCubeFormatCase
259 , m_height (height) in TextureCubeFormatCase()
273 , m_height (height) in TextureCubeFormatCase()
[all …]
Des3fReadPixelsTests.cpp86 const int m_height; member in deqp::gles3::Functional::__anone93a89a60111::ReadPixelsTest
104 , m_height (13) in ReadPixelsTest()
233 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32UI, m_width, m_height)); in clearColor()
239 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32I, m_width, m_height)); in clearColor()
316 pixelData.resize(rowPitch * (m_height + m_skipRows), 0); in clearColor()
318 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0]))); in clearColor()
335 tcu::Texture2D reference(format, m_width, m_height); in iterate()
350 GLU_CHECK_CALL(glViewport(0, 0, m_width, m_height)); in iterate()
357 …ufferAccess resultAccess = tcu::ConstPixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, … in iterate()
369 … (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_width, m_height); in iterate()
[all …]
Des3fTextureSizeTests.cpp71 int m_height; member in deqp::gles3::Functional::Texture2DSizeCase
84 , m_height (height) in Texture2DSizeCase()
99 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
101 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; in init()
188 int m_height; member in deqp::gles3::Functional::TextureCubeSizeCase
204 , m_height (height) in TextureCubeSizeCase()
221 DE_ASSERT(m_width == m_height); in init()
234 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; in init()
Des3fTextureSpecificationTests.cpp261 int m_height; member in deqp::gles3::Functional::Texture2DSpecCase
270 , m_height (height) in Texture2DSpecCase()
304 int levelH = de::max(1, m_height >> levelNdx); in verifyTexture()
443 int m_height; member in deqp::gles3::Functional::Texture2DArraySpecCase
453 , m_height (height) in Texture2DArraySpecCase()
495 int levelH = de::max(1, m_height >> levelNdx); in verifyTexture()
543 int m_height; member in deqp::gles3::Functional::Texture3DSpecCase
553 , m_height (height) in Texture3DSpecCase()
589 int levelH = de::max(1, m_height >> levelNdx); in verifyTexture()
671 int levelH = de::max(1, m_height >> ndx); in createTexture()
[all …]
Des3fTextureWrapTests.cpp120 int m_height; member in deqp::gles3::Functional::TextureWrapCase
142 , m_height (height) in TextureWrapCase()
161 , m_height (0) in TextureWrapCase()
181 , m_height (height) in TextureWrapCase()
202 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE); in init()
206 m_height = m_texture->getRefTexture().getHeight(); in init()
218 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height); in init()
249 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height); in init()
266 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
/external/deqp/framework/common/
DtcuSurface.hpp54 int getHeight (void) const { return m_height; } in getHeight()
66 int m_height; member in tcu::Surface
72 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height)); in setPixel()
89 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height)); in getPixel()
107 …TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empt… in getAccess()
113 …TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empt… in getAccess()
DtcuSurface.cpp30 , m_height (0) in Surface()
36 , m_height (height) in Surface()
55 m_height = height; in setSize()
DtcuSurfaceAccess.cpp34 , m_height (height) in SurfaceAccess()
44 , m_height (surface.getHeight()) in SurfaceAccess()
54 , m_height (height) in SurfaceAccess()
DtcuSurfaceAccess.hpp58 int getHeight (void) const { return m_height; } in getHeight()
68 int m_height; member in tcu::SurfaceAccess
73 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height)); in setPixel()
DtcuRenderTarget.cpp31 , m_height (0) in RenderTarget()
41 , m_height (height) in RenderTarget()
DtcuRenderTarget.hpp47 int getHeight (void) const { return m_height; } in getHeight()
53 int m_height; member in tcu::RenderTarget
/external/pdfium/xfa/fxbarcode/
DBC_Dimension.cpp32 m_height = height; in CBC_Dimension()
39 return m_height; in getHeight()
42 return m_width * 32713 + m_height; in hashCode()
45 return (FX_WCHAR)(m_width + (FX_WCHAR)'x' + m_height); in toString()
/external/pdfium/third_party/agg23/
Dagg_rendering_buffer.h52 m_height(0), in rendering_buffer()
61 m_height(0), in rendering_buffer()
71 m_height = height; in attach()
101 return m_height; in height()
140 unsigned m_height; variable
/external/deqp/modules/gles2/functional/
Des2fTextureSpecificationTests.cpp368 const int m_height; member in deqp::gles2::Functional::TextureSpecCase
398 , m_height (height) in TextureSpecCase()
418 DE_ASSERT(m_width <= 256 && m_height <= 256); in iterate()
419 if (renderTarget.getWidth() < m_width || renderTarget.getHeight() < m_height) in iterate()
482 …int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 :… in verifyTex2D()
489 int levelH = de::max(1, m_height >> levelNdx); in verifyTex2D()
520 …int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 :… in verifyTexCube()
527 int levelH = de::max(1, m_height >> levelNdx); in verifyTexCube()
627 …int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))… in createTexture()
639 int levelH = de::max(1, m_height >> ndx); in createTexture()
[all …]
Des2fTextureSizeTests.cpp70 int m_height; member in deqp::gles2::Functional::Texture2DSizeCase
83 , m_height (height) in Texture2DSizeCase()
98 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
100 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; in init()
187 int m_height; member in deqp::gles2::Functional::TextureCubeSizeCase
203 , m_height (height) in TextureCubeSizeCase()
220 DE_ASSERT(m_width == m_height); in init()
233 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; in init()
Des2fTextureWrapTests.cpp83 int m_height; member in deqp::gles2::Functional::TextureWrapCase
101 , m_height (height) in TextureWrapCase()
118 , m_height (0) in TextureWrapCase()
134 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE); in init()
138 m_height = m_texture->getRefTexture().getHeight(); in init()
142 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
Des2fFboCompletenessTests.cpp202 GLsizei m_height; //< The common height of images member in deqp::gles2::Functional::ES2Checker
208 , m_height (-1) in ES2Checker()
220 m_height = image->height; in check()
222 else if (image->width != m_width || image->height != m_height) in check()
Des2fTextureFormatTests.cpp87 const int m_height; member in deqp::gles2::Functional::Texture2DFormatCase
99 , m_height (height) in Texture2DFormatCase()
119 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height in init()
123 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height); in init()
142 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in iterate()
227 const int m_height; member in deqp::gles2::Functional::TextureCubeFormatCase
243 , m_height (height) in TextureCubeFormatCase()
268 … << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_height in init()
272 DE_ASSERT(m_width == m_height); in init()
318 …RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getNam… in testFace()
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassMultisampleResolveTests.cpp799 const deUint32 m_height; member in vkt::__anon6fc60d300111::MultisampleRenderPassTestInstance
829 , m_height (32u) in MultisampleRenderPassTestInstance()
831 …(), context.getDeviceInterface(), context.getDevice(), m_format, m_sampleCount, m_width, m_height)) in MultisampleRenderPassTestInstance()
835 …tPhysicalDevice(), context.getDeviceInterface(), context.getDevice(), m_format, m_width, m_height)) in MultisampleRenderPassTestInstance()
840 ….getDevice(), *m_renderPass, m_multisampleImageViews, m_singlesampleImageViews, m_width, m_height)) in MultisampleRenderPassTestInstance()
843 …derPass, *m_renderPipelineLayout, context.getBinaryCollection(), m_width, m_height, m_sampleCount)) in MultisampleRenderPassTestInstance()
845 … (createBuffers(context.getDeviceInterface(), context.getDevice(), m_format, m_width, m_height)) in MultisampleRenderPassTestInstance()
849 …m (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::FLOAT), m_width, m_height) in MultisampleRenderPassTestInstance()
889 { m_width, m_height } in submit()
992 { m_width, m_height } in submit()
[all …]
/external/pdfium/core/fxcodec/codec/
Dfx_codec_jbig.cpp32 m_height(0), in CCodec_Jbig2Context()
59 pJbig2Context->m_height = height; in StartDecode()
101 int dword_size = pJbig2Context->m_height * pJbig2Context->m_dest_pitch / 4; in ContinueDecode()
/external/python/cpython2/Lib/lib-tk/
DSimpleDialog.py44 m_height = master.winfo_height()
49 m_height = master.winfo_screenheight()
54 y = m_y + (m_height - w_height) * rely
/external/deqp/modules/gles2/accuracy/
Des2aTextureFilteringTests.cpp81 int m_height; member in deqp::gles2::Accuracy::Texture2DFilteringCase
101 , m_height (height) in Texture2DFilteringCase()
117 , m_height (0) in Texture2DFilteringCase()
142 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height)); in init()
144 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); in init()
145 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; in init()
342 int m_height; member in deqp::gles2::Accuracy::TextureCubeFilteringCase
362 , m_height (height) in TextureCubeFilteringCase()
378 , m_height (0) in TextureCubeFilteringCase()
401 DE_ASSERT(m_width == m_height); in init()
[all …]

123