/external/deqp/modules/gles2/functional/ |
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;
|
es2fTextureWrapTests.cpp | 81 int m_width; member in class:deqp::gles2::Functional::TextureWrapCase 99 , m_width (width) 116 , m_width (0) 133 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE); 136 m_width = m_texture->getRefTexture().getWidth(); 141 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, 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...] |
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)
|
es2fTextureFilteringTests.cpp | 85 const int m_width; member in class:deqp::gles2::Functional::Texture2DFilteringCase 127 , m_width (width) 144 , m_width (0) 171 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height)); 173 bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); 174 int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; 348 const int m_width; member in class:deqp::gles2::Functional::TextureCubeFilteringCase 390 , m_width (width) 407 , m_width (0) 431 DE_ASSERT(m_width == m_height) [all...] |
/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;
|
es3fTextureFormatTests.cpp | 84 int m_width; member in class:deqp::gles3::Functional::Texture2DFormatCase 96 , m_width (width) 108 , m_width (width) 132 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height 137 ? new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height) // Implicit internal format. 138 : new glu::Texture2D(m_renderCtx, m_format, m_width, m_height); // Explicit internal format. 157 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName())); 242 int m_width; member in class:deqp::gles3::Functional::TextureCubeFormatCase 257 , m_width (width) 271 , m_width (width 437 int m_width; member in class:deqp::gles3::Functional::Texture2DArrayFormatCase 589 int m_width; member in class:deqp::gles3::Functional::Texture3DFormatCase 749 int m_width; member in class:deqp::gles3::Functional::Compressed2DFormatCase 887 int m_width; member in class:deqp::gles3::Functional::CompressedCubeFormatCase [all...] |
es3fReadPixelsTests.cpp | 85 const int m_width; member in class:deqp::gles3::Functional::__anon10312::ReadPixelsTest 103 , m_width (13) 233 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32UI, m_width, m_height)); 239 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32I, m_width, m_height)); 313 const int rowWidth = (m_rowLength == 0 ? m_width : m_rowLength) + m_skipPixels; 318 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0]))); 335 tcu::Texture2D reference(format, m_width, m_height); 350 GLU_CHECK_CALL(glViewport(0, 0, m_width, m_height)); 355 const int rowWidth = (m_rowLength == 0 ? m_width : m_rowLength); 357 const tcu::ConstPixelBufferAccess resultAccess = tcu::ConstPixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[pixelSize * m_skipPixels + m_skipRows * rowPitch])) 369 tcu::Texture2D referenceRGBA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_width, m_height); local 370 tcu::Texture2D resultRGBA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_width, m_height); local [all...] |
es3fTextureSpecificationTests.cpp | 260 int m_width; member in class:deqp::gles3::Functional::Texture2DSpecCase 269 , m_width (width) 303 int levelW = de::max(1, m_width >> levelNdx); 442 int m_width; member in class:deqp::gles3::Functional::Texture2DArraySpecCase 452 , m_width (width) 494 int levelW = de::max(1, m_width >> levelNdx); 542 int m_width; member in class:deqp::gles3::Functional::Texture3DSpecCase 552 , m_width (width) 588 int levelW = de::max(1, m_width >> levelNdx); 670 int levelW = de::max(1, m_width >> ndx) [all...] |
es3fTextureWrapTests.cpp | 118 int m_width; member in class:deqp::gles3::Functional::TextureWrapCase 140 , m_width (width) 159 , m_width (0) 179 , m_width (width) 201 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE); 204 m_width = m_texture->getRefTexture().getWidth(); 217 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height); 248 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height); 265 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
|
es3fTextureFilteringTests.cpp | 87 const int m_width; member in class:deqp::gles3::Functional::Texture2DFilteringCase 128 , m_width (width) 144 , m_width (0) 171 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_internalFormat, m_width, m_height)); 174 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; 364 const int m_width; member in class:deqp::gles3::Functional::TextureCubeFilteringCase 406 , m_width (width) 423 , m_width (0) 447 DE_ASSERT(m_width == m_height); 450 m_textures.push_back(new glu::TextureCube(m_renderCtx, m_internalFormat, m_width)); 675 const int m_width; member in class:deqp::gles3::Functional::Texture2DArrayFilteringCase 941 const int m_width; member in class:deqp::gles3::Functional::Texture3DFilteringCase [all...] |
/external/deqp/framework/common/ |
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/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_tiff.cpp | 144 m_width = wdth; 210 if( m_tif && m_width && m_height ) 213 uint32 tile_width0 = m_width, tile_height0 = 0; 244 tile_width0 = m_width; 265 for( x = 0; x < m_width; x += tile_width0, tileidx++ ) 269 if( x + tile_width > m_width ) 270 tile_width = m_width - x; 443 int size = 3 * m_width * m_height * sizeof (float); 444 tstrip_t strip_size = 3 * m_width * rows_per_strip;
|
/external/clang/test/SemaCXX/ |
invalid-member-expr.cpp | 62 Length m_width; member in struct:rdar11293995::LengthSize
|
/hardware/bsp/intel/peripheral/libupm/src/st7735/ |
st7735.cxx | 50 m_width = 128; 158 int fragmentSize = m_height * m_width * 2 / 20; 184 setAddrWindow (0, 0, m_width - 1, m_height - 1);
|
/external/deqp/modules/gles2/accuracy/ |
es2aTextureFilteringTests.cpp | 78 int m_width; member in class:deqp::gles2::Accuracy::Texture2DFilteringCase 98 , m_width (width) 114 , m_width (0) 140 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height)); 142 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); 143 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1; 339 int m_width; member in class:deqp::gles2::Accuracy::TextureCubeFilteringCase 359 , m_width (width) 375 , m_width (0) 399 DE_ASSERT(m_width == m_height) [all...] |
/external/pdfium/core/src/fxcodec/codec/ |
codec_int.h | 72 return width == m_Width && height == m_Height; 78 const int m_Width; 375 FX_DWORD m_width; member in class:CCodec_Jbig2Context
|
fx_codec_jbig.cpp | 73 m_pJbig2Context->m_width = width;
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page_image.cpp | 95 m_Width = pDict->GetInteger("Width");
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417BarcodeMatrix.cpp | 32 m_width = width * 17;
|
/external/deqp/modules/gles3/accuracy/ |
es3aTextureFilteringTests.cpp | 73 int m_width; member in class:deqp::gles3::Accuracy::Texture2DFilteringCase 91 , m_width (width) 106 , m_width (0) 132 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_internalFormat, m_width, m_height)); 134 const int numLevels = deLog2Floor32(de::max(m_width, m_height))+1; 328 int m_width; member in class:deqp::gles3::Accuracy::TextureCubeFilteringCase 347 , m_width (width) 363 , m_width (0) 387 DE_ASSERT(m_width == m_height); 389 m_textures.push_back(new glu::TextureCube(m_renderCtx, m_internalFormat, m_width)); [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_base.cpp | 52 m_width = m_height = 0; 68 m_width = m_height = 0;
|