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

1 2 3 4

  /external/pdfium/fxbarcode/common/
BC_CommonByteMatrix.h 31 int32_t m_width; member in class:CBC_CommonByteMatrix
BC_CommonBitMatrix.h 32 int32_t GetWidth() const { return m_width; }
37 int32_t m_width = 0; member in class:CBC_CommonBitMatrix
  /external/pdfium/core/fxcodec/codec/
ccodec_jbig2module.h 26 uint32_t m_width; member in class:CCodec_Jbig2Context
  /external/deqp/framework/common/
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.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));
tcuRenderTarget.hpp 46 int getWidth (void) const { return m_width; }
52 int m_width; member in class:tcu::RenderTarget
  /external/pdfium/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.h 36 int32_t m_width; member in class:CBC_BarcodeMatrix
  /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
esextcGeometryShaderLayeredRenderingBoundaryCondition.cpp 37 const glw::GLint GeometryShaderLayeredRenderingBoundaryCondition::m_width = 4; member in class:glcts::GeometryShaderLayeredRenderingBoundaryCondition
323 unsigned char buffer[m_width * m_height * m_max_depth * m_texture_components];
330 gl.texStorage3D(m_textures_info[i].m_texture_target, 1, GL_RGBA8, m_width, m_height,
332 gl.texSubImage3D(m_textures_info[i].m_texture_target, 0, 0, 0, 0, m_width, m_height, m_textures_info[i].m_depth,
384 gl.viewport(0, 0, m_width, m_height);
441 gl.viewport(0, 0, m_width, m_height);
444 gl.readPixels(0 /* x */, 0 /* y */, m_width /* width */, m_height /* height */, GL_RGBA, GL_UNSIGNED_BYTE,
455 if (!comparePixels(m_width, m_height, m_texture_components, buffer, expectedData, nTexture, nLayer))
esextcGeometryShaderLayeredRenderingBoundaryCondition.hpp 83 static const glw::GLint m_width; member in class:glcts::GeometryShaderLayeredRenderingBoundaryCondition
  /external/vulkan-validation-layers/tests/
vktestframework.h 89 static int m_width; member in class:VkTestFramework
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
vktestframework.h 90 static int m_width; member in class:VkTestFramework
  /external/deqp/external/openglcts/modules/gl/
gl4cStencilTexturingTests.hpp 98 static const glw::GLuint m_width; member in class:gl4cts::StencilTexturing::FunctionalTest
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArrayGenerateMipMap.hpp 44 glw::GLuint m_width; member in struct:glcts::StorageConfig
esextcTextureCubeMapArrayGetterCalls.cpp 43 const glw::GLsizei TextureCubeMapArrayGetterCalls::m_width = 64; member in class:glcts::TextureCubeMapArrayGetterCalls
253 glw::GLubyte texture_data_ubyte[m_width * m_height * m_depth * m_n_components];
254 memset(texture_data_ubyte, 0, m_width * m_height * m_depth * m_n_components * sizeof(glw::GLubyte));
260 m_width, /* width */
272 m_width, /* width */
346 m_width, /* width */
656 expected_property_int_value = m_width;
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
esextcTextureCubeMapArrayGetterCalls.hpp 90 static const glw::GLsizei m_width; member in class:glcts::TextureCubeMapArrayGetterCalls
esextcTextureCubeMapArrayStencilAttachments.hpp 59 return m_width;
70 glw::GLuint m_width; member in class:glcts::CubeMapArrayDataStorage
  /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
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 62 Length m_width; member in struct:rdar11293995::LengthSize
  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderPrimitiveCoverage.cpp 182 const glw::GLuint TessellationShaderPrimitiveCoverage::m_width = member in class:glcts::TessellationShaderPrimitiveCoverage
186 const glw::GLuint TessellationShaderPrimitiveCoverage::m_rendered_data_buffer_size = m_width /* width */
392 gl.viewport(0 /* x */, 0 /* y */, m_width, m_height);
481 gl.renderbufferStorage(GL_RENDERBUFFER, GL_RGBA8, m_width, m_height);
495 gl.renderbufferStorage(GL_RENDERBUFFER, GL_STENCIL_INDEX8, m_width, m_height);
685 m_height, m_width, GL_RGBA, /* format */
esextcTessellationShaderPrimitiveCoverage.hpp 107 static const glw::GLuint m_width; /* width of the rendering area */ member in class:glcts::TessellationShaderPrimitiveCoverage
  /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/opencv/otherlibs/highgui/
grfmt_base.h 70 int GetWidth() { return m_width; };
84 int m_width; // width of the image ( filled by ReadHeader ) member in class:GrFmtReader

Completed in 618 milliseconds

1 2 3 4