Searched refs:m_height (Results 1 - 25 of 105) sorted by relevance

12345

/external/deqp/framework/common/
H A DtcuSurface.cpp30 , m_height (0)
36 , m_height (height)
55 m_height = height;
H A DtcuRenderTarget.cpp31 , m_height (0)
41 , m_height (height)
H A DtcuRenderTarget.hpp47 int getHeight (void) const { return m_height; }
53 int m_height; member in class:tcu::RenderTarget
H A DtcuSurfaceAccess.cpp34 , m_height (height)
44 , m_height (surface.getHeight())
54 , m_height (height)
H A DtcuSurface.hpp54 int getHeight (void) const { return m_height; }
66 int m_height; member in class:tcu::Surface
72 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
89 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
107 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : m_pixels.getPtr());
113 return PixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : m_pixels.getPtr());
H A DtcuSurfaceAccess.hpp58 int getHeight (void) const { return m_height; }
68 int m_height; member in class:tcu::SurfaceAccess
73 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
H A DtcuCompressedTexture.hpp121 int getHeight (void) const { return m_height; }
133 int m_height; member in class:tcu::CompressedTexture
/external/pdfium/fxbarcode/common/
H A DBC_CommonBitMatrix.cpp33 m_height = dimension;
34 int32_t rowSize = (m_height + 31) >> 5;
36 m_bits = FX_Alloc2D(int32_t, m_rowSize, m_height);
37 memset(m_bits, 0, m_rowSize * m_height * sizeof(int32_t));
42 m_height = height;
45 m_bits = FX_Alloc2D(int32_t, m_rowSize, m_height);
46 memset(m_bits, 0, m_rowSize * m_height * sizeof(int32_t));
55 if (offset >= m_rowSize * m_height || offset < 0)
62 if (offset >= m_rowSize * m_height || offset < 0)
73 memset(m_bits, 0, m_rowSize * m_height * sizeo
[all...]
H A DBC_CommonByteMatrix.cpp27 m_height = height;
32 m_bytes = FX_Alloc2D(uint8_t, m_height, m_width);
33 memset(m_bytes, 0xff, m_height * m_width);
39 return m_height;
55 for (y = 0; y < m_height; y++) {
H A DBC_CommonBitMatrix.h33 int32_t GetHeight() const { return m_height; }
38 int32_t m_height = 0; member in class:CBC_CommonBitMatrix
H A DBC_CommonByteMatrix.h32 int32_t m_height; member in class:CBC_CommonByteMatrix
/external/pdfium/third_party/agg23/
H A Dagg_rendering_buffer.h52 m_height(0),
61 m_height(0),
71 m_height = height;
101 return m_height;
140 unsigned m_height; member in class:agg::rendering_buffer
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArrayGenerateMipMap.cpp224 storage_config_1.m_height = 64;
227 storage_config_1.m_levels = getAmountOfLevelsForTexture(storage_config_1.m_width, storage_config_1.m_height);
233 storage_config_2.m_height = 117;
236 storage_config_2.m_levels = getAmountOfLevelsForTexture(storage_config_2.m_width, storage_config_2.m_height);
242 storage_config_3.m_height = 256;
245 storage_config_3.m_levels = getAmountOfLevelsForTexture(storage_config_3.m_width, storage_config_3.m_height);
251 storage_config_4.m_height = 173;
254 storage_config_4.m_levels = getAmountOfLevelsForTexture(storage_config_4.m_width, storage_config_4.m_height);
279 GL_RGBA8, config.m_width, config.m_height, config.m_depth, 0, /* border */
288 gl.texStorage3D(GL_TEXTURE_CUBE_MAP_ARRAY, config.m_levels, GL_RGBA8, config.m_width, config.m_height,
[all...]
H A DesextcTextureCubeMapArraySubImage3D.hpp81 SubImage3DCopyParams(void) : m_xoffset(0), m_yoffset(0), m_zoffset(0), m_width(0), m_height(0), m_depth(0)
93 m_height = height;
101 glw::GLuint m_height; member in struct:glcts::SubImage3DCopyParams
/external/opencv/otherlibs/highgui/
H A Dgrfmt_bmp.cpp109 m_height = m_strm.GetDWord();
116 if( m_width > 0 && m_height > 0 &&
152 m_height = m_strm.GetWord();
156 if( m_width > 0 && m_height > 0 &&
180 m_width = m_height = -1;
204 data += (m_height - 1)*step;
227 for( y = 0; y < m_height; y++, data += step )
241 for( y = 0; y < m_height; y++, data += step )
296 int y_shift = m_height - y;
308 y, m_height, x_shift
[all...]
H A Dgrfmt_sunras.cpp104 m_height = m_strm.GetDWord();
113 if( m_width > 0 && m_height > 0 &&
166 m_width = m_height = -1;
209 for( y = 0; y < m_height; y++, data += step )
266 if( ++y >= m_height ) break;
278 for( y = 0; y < m_height; y++, data += step )
329 y, m_height, len,
333 y, m_height, len,
335 if( y >= m_height )
345 if( ++y >= m_height ) brea
[all...]
H A Dgrfmt_base.h71 int GetHeight() { return m_height; };
85 int m_height; // height of the image ( filled by ReadHeader ) member in class:GrFmtReader
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderLayeredRenderingFBONoAttachment.cpp107 const glw::GLint GeometryShaderLayeredRenderingFBONoAttachment::m_height = 128; member in class:glcts::GeometryShaderLayeredRenderingFBONoAttachment
262 gl.framebufferParameteri(GL_DRAW_FRAMEBUFFER, GL_FRAMEBUFFER_DEFAULT_HEIGHT, m_height);
267 if (m_width != width || m_height != height)
270 << "\\" << m_height << " but is " << width << "\\" << height << tcu::TestLog::EndMessage;
290 m_all_layers_data = new glw::GLint[m_n_layers * m_width * m_height * m_n_texture_components];
292 for (int n = 0; n < m_n_layers * m_width * m_height; ++n)
302 gl.texStorage3D(GL_TEXTURE_2D_ARRAY, 1 /* levels */, GL_RGBA32I, m_width, m_height, m_n_layers);
323 gl.viewport(0 /* x */, 0 /* y */, m_width /* width */, m_height /* height */);
334 m_layer_data = new glw::GLint[m_width * m_height * m_n_texture_components];
345 m_width, m_height, m_n_layer
[all...]
H A DesextcGeometryShaderLayeredRenderingFBONoAttachment.hpp126 static const glw::GLint m_height; member in class:glcts::GeometryShaderLayeredRenderingFBONoAttachment
/external/deqp/modules/gles3/functional/
H A Des3fFboDepthbufferTests.cpp56 , m_height (height)
89 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
92 glRenderbufferStorage(GL_RENDERBUFFER, m_format, m_width, m_height);
100 glViewport(0, 0, m_width, m_height);
132 readPixels(dst, 0, 0, m_width, m_height, glu::mapGLInternalFormat(colorFormat), Vec4(1.0f), Vec4(0.0f));
138 int m_height; member in class:deqp::gles3::Functional::BasicFboDepthCase
148 , m_height (height)
179 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
182 glTexImage2D(GL_TEXTURE_2D, 0, m_format, m_width, m_height, 0, transferFmt.format, transferFmt.dataType, DE_NULL);
192 glViewport(0, 0, m_width, m_height);
224 const int m_height; member in class:deqp::gles3::Functional::DepthWriteClampCase
304 const int m_height; member in class:deqp::gles3::Functional::DepthTestClampCase
[all...]
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_jbig.cpp32 m_height(0),
58 pJbig2Context->m_height = height;
89 int dword_size = pJbig2Context->m_height * pJbig2Context->m_dest_pitch / 4;
H A Dccodec_jbig2module.h27 uint32_t m_height; member in class:CCodec_Jbig2Context
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp63 Length m_height; member in struct:rdar11293995::LengthSize
/external/pdfium/fxbarcode/pdf417/
H A DBC_PDF417BarcodeMatrix.h35 int32_t m_height; member in class:CBC_BarcodeMatrix
H A DBC_PDF417BarcodeMatrix.cpp33 m_height = height + 2;
58 size_t yMax = m_height * yScale;

Completed in 543 milliseconds

12345