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

1 2 3

  /external/pdfium/xfa/src/fxbarcode/
BC_Dimension.h 21 int32_t m_width; member in class:CBC_Dimension
BC_LuminanceSource.h 21 int32_t m_width; member in class:CBC_LuminanceSource
  /external/pdfium/xfa/src/fxbarcode/common/
BC_CommonByteMatrix.h 25 int32_t m_width; member in class:CBC_CommonByteMatrix
BC_CommonBitMatrix.h 36 int32_t m_width; member in class:CBC_CommonBitMatrix
BC_WhiteRectangleDetector.h 42 int32_t m_width; member in class:CBC_WhiteRectangleDetector
  /external/opencv3/modules/videoio/src/
cap_dshow.hpp 40 int m_index, m_width, m_height, m_fourcc; member in class:cv::VideoCapture_DShow
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.h 30 int32_t m_width; member in class:CBC_BarcodeMatrix
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRAlignmentPatternFinder.h 17 int32_t m_width; member in class:CBC_QRAlignmentPatternFinder
  /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());
tcuRenderTarget.hpp 46 int getWidth (void) const { return m_width; }
52 int m_width; member in class:tcu::RenderTarget
tcuCompressedTexture.hpp 120 int getWidth (void) const { return m_width; }
132 int m_width; member in class:tcu::CompressedTexture
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
MemoryFlyoutPreferences.java 22 private int m_width; field in class:MemoryFlyoutPreferences
32 m_width = width;
49 return m_width;
61 m_width = width;
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.h 205 int m_width; /**< Screen width */ member in class:upm::GFX
  /external/opencv3/samples/directx/
winapp.hpp 17 m_width = width;
48 RECT rc = { 0, 0, m_width, m_height };
129 int m_width; member in class:WinApp
  /external/vulkan-validation-layers/tests/
vktestframework.h 98 static int m_width; member in class:VkTestFramework
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btHeightfieldTerrainShape.h 83 btScalar m_width; variable
  /external/opencv3/modules/imgcodecs/src/
grfmt_base.hpp 64 int width() const { return m_width; }
81 int m_width; // width of the image ( filled by readHeader ) member in class:cv::BaseImageDecoder
  /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 FX_FLOAT m_width; member in class:agg::vcgen_stroke
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 62 Length m_width; member in struct:rdar11293995::LengthSize
  /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
  /external/deqp/modules/gles2/functional/
es2fFboCompletenessTests.cpp 201 GLsizei m_width; //< The common width of images member in class:deqp::gles2::Functional::ES2Checker
207 , m_width (-1)
217 if (m_width == -1)
219 m_width = image->width;
222 else if (image->width != m_width || image->height != m_height)
es2fTextureFormatTests.cpp 84 const int m_width; member in class:deqp::gles2::Functional::Texture2DFormatCase
96 , m_width (width)
117 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
121 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
140 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
224 const int m_width; member in class:deqp::gles2::Functional::TextureCubeFormatCase
240 , m_width (width)
266 log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_height
270 DE_ASSERT(m_width == m_height);
272 ? new TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format
    [all...]
es2fTextureSizeTests.cpp 68 int m_width; member in class:deqp::gles2::Functional::Texture2DSizeCase
81 , m_width (width)
97 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
99 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
185 int m_width; member in class:deqp::gles2::Functional::TextureCubeSizeCase
201 , m_width (width)
219 DE_ASSERT(m_width == m_height);
220 m_texture = new TextureCube(m_renderCtx, m_format, m_dataType, m_width);
232 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;

Completed in 268 milliseconds

1 2 3