HomeSort by relevance Sort by last modified time
    Searched refs:m_width (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/deqp/framework/common/
tcuSurface.cpp 29 : m_width (0)
35 : m_width (width)
54 m_width = width;
tcuRenderTarget.cpp 30 : m_width (0)
40 : m_width (width)
tcuRenderTarget.hpp 46 int getWidth (void) const { return m_width; }
52 int m_width; member in class:tcu::RenderTarget
tcuSurface.hpp 53 int getWidth (void) const { return m_width; }
65 int m_width; member in class:tcu::Surface
72 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
74 const int pixOffset = y*m_width + x;
89 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
91 const int pixOffset = y*m_width + x;
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());
tcuSurfaceAccess.cpp 33 , m_width (width)
43 , m_width (surface.getWidth())
53 , m_width (width)
tcuSurfaceAccess.hpp 57 int getWidth (void) const { return m_width; }
67 int m_width; member in class:tcu::SurfaceAccess
73 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
  /external/pdfium/fxbarcode/common/
BC_CommonByteMatrix.cpp 28 m_width = width;
32 m_bytes = FX_Alloc2D(uint8_t, m_height, m_width);
33 memset(m_bytes, 0xff, m_height * m_width);
42 return m_width;
45 return m_bytes[y * m_width + x];
48 m_bytes[y * m_width + x] = (uint8_t)value;
51 m_bytes[y * m_width + x] = value;
57 for (x = 0; x < m_width; x++) {
58 m_bytes[y * m_width + x] = value;
BC_CommonBitMatrix.h 32 int32_t GetWidth() const { return m_width; }
37 int32_t m_width = 0; member in class:CBC_CommonBitMatrix
BC_CommonByteMatrix.h 31 int32_t m_width; member in class:CBC_CommonByteMatrix
BC_CommonBitMatrix.cpp 32 m_width = dimension;
41 m_width = width;
85 if (m_height < bottom || m_width < right)
  /external/pdfium/third_party/agg23/
agg_rendering_buffer.h 51 m_width(0),
60 m_width(0),
70 m_width = width;
97 return m_width;
139 unsigned m_width; member in class:agg::rendering_buffer
agg_vcgen_stroke.h 66 m_width = w / 2;
83 return m_width * 2;
106 float m_width; member in class:agg::vcgen_stroke
agg_vcgen_stroke.cpp 34 m_width(0.5f),
114 m_width,
127 m_width,
153 m_width,
181 m_width,
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArrayGenerateMipMap.cpp 223 storage_config_1.m_width = 64;
227 storage_config_1.m_levels = getAmountOfLevelsForTexture(storage_config_1.m_width, storage_config_1.m_height);
232 storage_config_2.m_width = 117;
236 storage_config_2.m_levels = getAmountOfLevelsForTexture(storage_config_2.m_width, storage_config_2.m_height);
241 storage_config_3.m_width = 256;
245 storage_config_3.m_levels = getAmountOfLevelsForTexture(storage_config_3.m_width, storage_config_3.m_height);
250 storage_config_4.m_width = 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...]
esextcTextureCubeMapArraySubImage3D.hpp 81 SubImage3DCopyParams(void) : m_xoffset(0), m_yoffset(0), m_zoffset(0), m_width(0), m_height(0), m_depth(0)
92 m_width = width;
100 glw::GLuint m_width; member in struct:glcts::SubImage3DCopyParams
  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 166 m_width = ReadNumber( m_strm, INT_MAX );
177 if( m_width > 0 && m_height > 0 && m_maxval > 0 && m_maxval < (1 << 16))
189 m_width = m_height = -1;
205 int src_pitch = (m_width*m_bpp*m_bit_depth/8 + 7)/8;
207 int width3 = m_width*nch;
242 for( x = 0; x < m_width; x++ )
246 FillColorRow8( data, src, m_width, palette );
248 FillGrayRow8( data, src, m_width, gray_palette );
258 FillColorRow1( data, src, m_width, palette );
260 FillGrayRow1( data, src, m_width, gray_palette )
    [all...]
grfmt_sunras.cpp 103 m_width = m_strm.GetDWord();
113 if( m_width > 0 && m_height > 0 &&
166 m_width = m_height = -1;
182 int src_pitch = ((m_width*m_bpp + 7)/8 + 1) & -2;
184 int width3 = m_width*nch;
193 if( m_width*3 + 32 > buffer_size )
194 bgr = new uchar[m_width*3 + 32];
213 FillColorRow1( data, src, m_width, m_palette );
215 FillGrayRow1( data, src, m_width, gray_palette );
221 uchar* line_end = src + (m_width*m_bpp + 7)/8
    [all...]
grfmt_bmp.cpp 108 m_width = m_strm.GetDWord();
116 if( m_width > 0 && m_height > 0 &&
151 m_width = m_strm.GetWord();
156 if( m_width > 0 && m_height > 0 &&
180 m_width = m_height = -1;
196 int src_pitch = ((m_width*(m_bpp != 15 ? m_bpp : 16) + 7)/8 + 3) & -4;
198 int width3 = m_width*nch;
216 if( m_width*3 + 32 > buffer_size ) bgr = new uchar[m_width*3 + 32];
230 FillColorRow1( color ? data : bgr, src, m_width, m_palette )
    [all...]
grfmt_tiff.cpp 150 m_width = width;
172 if( m_tif && m_width && m_height )
175 int tile_width0 = m_width, tile_height0 = 0;
186 tile_width0 = m_width;
200 for( x = 0; x < m_width; x += tile_width0 )
204 if( x + tile_width > m_width )
205 tile_width = m_width - x;
369 m_width = -1;
411 m_width = value;
501 if( m_width > 0 && m_height > 0 && m_strips > 0 &
    [all...]
grfmt_base.h 70 int GetWidth() { return m_width; };
84 int m_width; // width of the image ( filled by ReadHeader ) member in class:GrFmtReader
grfmt_imageio.cpp 112 m_width = CGImageGetWidth( imageRef );
158 bitmap = (uchar*)malloc( bpp * m_height * m_width );
166 m_width, /* width */
169 bpp * m_width, /* bytes per row */
181 CGRect rect = {{0,0},{m_width,m_height}};
203 for (int x = 0; x < m_width; x++)
220 memcpy (data + y * step, bitmap + y * m_width, m_width);
  /external/deqp/external/openglcts/modules/glesext/geometry_shader/
esextcGeometryShaderLayeredRenderingFBONoAttachment.cpp 108 const glw::GLint GeometryShaderLayeredRenderingFBONoAttachment::m_width = 128; member in class:glcts::GeometryShaderLayeredRenderingFBONoAttachment
258 gl.framebufferParameteri(GL_DRAW_FRAMEBUFFER, GL_FRAMEBUFFER_DEFAULT_WIDTH, m_width);
267 if (m_width != width || m_height != height)
269 m_testCtx.getLog() << tcu::TestLog::Message << "Framebuffer's default width/height is not equal to" << m_width
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_layers, GL_RGBA_INTEGER, GL_INT, m_all_layers_data)
    [all...]
esextcGeometryShaderLayeredRenderingFBONoAttachment.hpp 127 static const glw::GLint m_width; member in class:glcts::GeometryShaderLayeredRenderingFBONoAttachment
  /external/deqp/modules/gles3/functional/
es3fFboDepthbufferTests.cpp 55 , m_width (width)
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));
137 int m_width; member in class:deqp::gles3::Functional::BasicFboDepthCase
147 , m_width (width)
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)
223 const int m_width; member in class:deqp::gles3::Functional::DepthWriteClampCase
303 const int m_width; member in class:deqp::gles3::Functional::DepthTestClampCase
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cTextureBarrierTests.cpp 121 , m_width(0)
152 m_width = renderTarget.getWidth();
156 m_width = m_width >= 16383 ? 16382 : m_width;
167 gl.texStorage2D(GL_TEXTURE_2D, 1, GL_R32UI, m_width, m_height);
170 m_reference[i] = new GLuint[m_width * m_height];
172 m_actual = new GLuint[m_width * m_height];
344 if ((static_cast<GLint>(x) < 0) || (x >= m_width) || (static_cast<GLint>(y) < 0) || (y >= m_height))
350 return image[x + y * m_width];
495 GLuint m_width, m_height; member in class:gl4cts::TextureBarrierBasicOutline
    [all...]

Completed in 893 milliseconds

1 2 3 4 5 6