HomeSort by relevance Sort by last modified time
    Searched refs:m_width (Results 26 - 50 of 118) sorted by null

12 3 4 5

  /external/opencv/otherlibs/highgui/
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/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
grfmt_hdr.cpp 74 RGBE_ReadHeader(file, &m_width, &m_height, NULL);
75 if(m_width <= 0 || m_height <= 0) {
85 Mat img(m_height, m_width, CV_32FC3);
grfmt_webp.cpp 141 m_width = features.width;
163 if( m_width > 0 && m_height > 0 )
165 if (img.cols != m_width || img.rows != m_height || img.type() != m_type)
167 img.create(m_height, m_width, m_type);
  /external/pdfium/third_party/agg23/
agg_vcgen_stroke.cpp 35 m_width(0.5f),
116 m_width,
129 m_width,
155 m_width,
183 m_width,
  /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
d3d10_interop.cpp 50 scd.BufferDesc.Width = m_width; // set the back buffer width
90 viewport.Width = m_width;
99 desc.Width = m_width;
149 cv::Mat m(m_height, m_width, CV_8UC4, mappedTex.pData, (int)mappedTex.RowPitch);
196 cv::Mat m(m_height, m_width, CV_8UC4, mappedTex.pData, (int)mappedTex.RowPitch);
267 cv::Mat m(m_height, m_width, CV_8UC4, mappedTex.pData, (int)mappedTex.RowPitch);
d3d11_interop.cpp 50 scd.BufferDesc.Width = m_width; // set the back buffer width
94 viewport.Width = (float)m_width;
103 desc.Width = m_width;
153 cv::Mat m(m_height, m_width, CV_8UC4, mappedTex.pData, (int)mappedTex.RowPitch);
200 cv::Mat m(m_height, m_width, CV_8UC4, mappedTex.pData, (int)mappedTex.RowPitch);
271 cv::Mat m(m_height, m_width, CV_8UC4, mappedTex.pData, (int)mappedTex.RowPitch);
d3d9_interop.cpp 63 d3dpp.BackBufferWidth = m_width;
82 r = m_pD3D9Dev->CreateOffscreenPlainSurface(m_width, m_height, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT, &m_pSurface, NULL);
114 RECT rc = { 0, 0, m_width, m_height };
122 cv::Mat m(m_height, m_width, CV_8UC4, memDesc.pBits, memDesc.Pitch);
165 RECT rc = { 0, 0, m_width, m_height };
173 cv::Mat m(m_height, m_width, CV_8UC4, memDesc.pBits, memDesc.Pitch);
d3d9ex_interop.cpp 63 d3dpp.BackBufferWidth = m_width;
82 r = m_pD3D9DevEx->CreateOffscreenPlainSurface(m_width, m_height, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT, &m_pSurface, NULL);
114 RECT rc = { 0, 0, m_width, m_height };
122 cv::Mat m(m_height, m_width, CV_8UC4, memDesc.pBits, memDesc.Pitch);
165 RECT rc = { 0, 0, m_width, m_height };
173 cv::Mat m(m_height, m_width, CV_8UC4, memDesc.pBits, memDesc.Pitch);
  /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/
tcuCompressedTexture.hpp 120 int getWidth (void) const { return m_width; }
132 int m_width; member in class:tcu::CompressedTexture
  /external/pdfium/xfa/src/fxbarcode/common/
BC_WhiteRectangleDetector.cpp 33 m_width = image->GetWidth();
34 m_leftInit = (m_width - INIT_SIZE) >> 1;
35 m_rightInit = (m_width + INIT_SIZE) >> 1;
41 m_rightInit >= m_width) {
53 m_width = image->GetWidth();
72 while (rightBorderNotWhite && right < m_width) {
79 if (right >= m_width) {
224 if (yi < m_width / 2) {
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.cxx 35 m_width = width;
45 if((x < 0) ||(x >= m_width) || (y < 0) || (y >= m_height)) {
49 int index = ((y * m_width) + x) * sizeof(uint16_t);
58 fillRect(0, 0, m_width, m_height, color);
180 if( (x >= m_width) || // Clip right
225 if (m_wrap && (m_textColor > (m_width - m_textSize * 6))) {
  /external/deqp/modules/gles2/functional/
es2fTextureSpecificationTests.cpp 367 const int m_width; member in class:deqp::gles2::Functional::TextureSpecCase
397 , m_width (width)
418 DE_ASSERT(m_width <= 256 && m_height <= 256);
419 if (renderTarget.getWidth() < m_width || renderTarget.getHeight() < m_height)
482 int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 : 1;
488 int levelW = de::max(1, m_width >> levelNdx);
520 int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 : 1;
526 int levelW = de::max(1, m_width >> levelNdx);
627 int numLevels = (m_flags & MIPMAPS) ? de::max(deLog2Floor32(m_width), deLog2Floor32(m_height))+1 : 1;
638 int levelW = de::max(1, m_width >> ndx)
    [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;
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)
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btHeightfieldTerrainShape.cpp 76 m_width = (btScalar) (heightStickWidth - 1);
93 m_localAabbMax.setValue(m_maxHeight, m_width, m_length);
99 m_localAabbMax.setValue(m_width, m_maxHeight, m_length);
105 m_localAabbMax.setValue(m_width, m_length, m_maxHeight);
202 (-m_width/btScalar(2.0)) + x,
210 (-m_width/btScalar(2.0)) + x,
219 (-m_width/btScalar(2.0)) + x,
  /external/deqp/modules/gles3/functional/
es3fTextureSizeTests.cpp 68 int m_width; member in class:deqp::gles3::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::gles3::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;
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
SimpleDialog.py 43 m_width = master.winfo_width()
48 m_width = master.winfo_screenwidth()
53 x = m_x + (m_width - w_width) * relx
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
SimpleDialog.py 43 m_width = master.winfo_width()
48 m_width = master.winfo_screenwidth()
53 x = m_x + (m_width - w_width) * relx
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 43 m_width = master.winfo_width()
48 m_width = master.winfo_screenwidth()
53 x = m_x + (m_width - w_width) * relx
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 43 m_width = master.winfo_width()
48 m_width = master.winfo_screenwidth()
53 x = m_x + (m_width - w_width) * relx
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 62 Length m_width; member in struct:rdar11293995::LengthSize

Completed in 688 milliseconds

12 3 4 5