/external/pdfium/xfa/src/fxbarcode/common/ |
BC_CommonByteMatrix.cpp | 27 m_width = width;
31 m_bytes = FX_Alloc2D(uint8_t, m_height, m_width);
32 FXSYS_memset(m_bytes, 0xff, m_height * m_width);
44 return m_width;
47 return m_bytes[y * m_width + x];
50 m_bytes[y * m_width + x] = (uint8_t)value;
53 m_bytes[y * m_width + x] = value;
59 for (x = 0; x < m_width; x++) {
60 m_bytes[y * m_width + x] = value;
|
BC_CommonBitMatrix.cpp | 27 m_width = 0;
33 m_width = dimension;
41 m_width = width;
53 m_height = m_width = m_rowSize = 0;
94 if (m_height < bottom || m_width < right) {
110 if (row == NULL || row->GetSize() < m_width) {
111 rowArray = new CBC_CommonBitArray(m_width);
135 return m_width;
144 if (m_width != m_height) {
148 return m_width;
[all...] |
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
|
/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;
|
/external/pdfium/xfa/src/fxbarcode/ |
BC_Dimension.cpp | 31 m_width = width;
36 return m_width;
42 return m_width * 32713 + m_height;
45 return (FX_WCHAR)(m_width + (FX_WCHAR)'x' + m_height);
|
BC_Dimension.h | 21 int32_t m_width;
member in class:CBC_Dimension
|
BC_BufferedImageLuminanceSource.cpp | 90 m_width = 0;
104 m_width = m_pBitmap->GetWidth();
105 m_rgbData.SetSize(m_height * m_width);
106 m_bytesPerLine = m_width * 4;
116 m_width = m_pBitmap->GetWidth();
117 m_rgbData.SetSize(m_height * m_width);
118 m_bytesPerLine = m_width * 4;
133 int32_t width = m_width;
157 int32_t offset = y * m_width;
159 for (x = 0; x < m_width; x++) { [all...] |
BC_TwoDimWriter.cpp | 30 path.AppendRect(0, 0, (FX_FLOAT)m_Width, (FX_FLOAT)m_Height);
36 leftPos = (m_Width - m_output->GetWidth()) / 2;
40 if (m_Width < m_output->GetWidth() && m_Height < m_output->GetHeight()) {
42 (FX_FLOAT)m_Width / (FX_FLOAT)m_output->GetWidth(), 0.0, 0.0,
63 pOutBitmap = CreateDIBitmap(m_Width, m_Height);
75 leftPos = (m_Width - m_output->GetWidth()) / 2;
86 CFX_DIBitmap* pStretchBitmap = pOutBitmap->StretchTo(m_Width, m_Height);
112 if (m_Width < outputWidth || m_Height < outputHeight) {
117 if (m_Width > outputWidth || m_Height > outputHeight) {
119 ceil((FX_FLOAT)m_Width / (FX_FLOAT)outputWidth)); [all...] |
BC_LuminanceSource.h | 21 int32_t m_width;
member in class:CBC_LuminanceSource
|
BC_LuminanceSource.cpp | 26 : m_width(width), m_height(height) {}
29 return m_width;
|
BC_Writer.cpp | 14 m_Width = 640;
43 m_Width = width;
|
BC_Writer.h | 32 int32_t m_Width;
|
/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_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...] |
/external/opencv3/modules/imgcodecs/src/ |
grfmt_sunras.cpp | 84 m_width = m_strm.getDWord(); 94 if( m_width > 0 && m_height > 0 && 148 m_width = m_height = -1; 162 int src_pitch = ((m_width*m_bpp + 7)/8 + 1) & -2; 164 int width3 = m_width*nch; 172 AutoBuffer<uchar> _bgr(m_width*3 + 32); 192 FillColorRow1( data, src, m_width, m_palette ); 194 FillGrayRow1( data, src, m_width, gray_palette ); 200 uchar* line_end = src + (m_width*m_bpp + 7)/8; 241 FillColorRow1( data, src, m_width, m_palette ) [all...] |
grfmt_bmp.cpp | 98 m_width = m_strm.getDWord(); 106 if( m_width > 0 && m_height != 0 && 141 m_width = m_strm.getWord(); 146 if( m_width > 0 && m_height != 0 && 177 m_width = m_height = -1; 191 int src_pitch = ((m_width*(m_bpp != 15 ? m_bpp : 16) + 7)/8 + 3) & -4; 193 int y, width3 = m_width*nch; 213 _bgr.allocate(m_width*3 + 32); 228 FillColorRow1( color ? data : bgr, src, m_width, m_palette ); 230 icvCvt_BGR2Gray_8u_C3C1R( bgr, 0, data, 0, cvSize(m_width,1) ) [all...] |
grfmt_pxm.cpp | 158 m_width = ReadNumber( m_strm, INT_MAX ); 169 if( m_width > 0 && m_height > 0 && m_maxval > 0 && m_maxval < (1 << 16)) 182 m_width = m_height = -1; 197 int src_pitch = (m_width*m_bpp*bit_depth/8 + 7)/8; 199 int width3 = m_width*nch; 234 for( x = 0; x < m_width; x++ ) 238 FillColorRow8( data, src, m_width, palette ); 240 FillGrayRow8( data, src, m_width, gray_palette ); 250 FillColorRow1( data, src, m_width, palette ); 252 FillGrayRow1( data, src, m_width, gray_palette ) [all...] |
/external/pdfium/core/src/fxge/dib/ |
fx_dib_main.cpp | 48 m_Width = m_Height = 0; 71 m_Width = m_Height = m_Pitch = 0; 99 m_Width = width; 109 m_Width = m_Height = m_Pitch = 0; 151 m_Width = pSrcBitmap->m_Width; 156 FX_RECT rect(0, 0, m_Width, m_Height); 226 if (!m_pAlphaMask->Create(m_Width, m_Height, FXDIB_8bppMask)) { 309 for (int col = 0; col < m_Width; col++) { 323 for (int i = 0; i < m_Width; i++) [all...] |
/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());
|
/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/opencv3/modules/videoio/src/ |
cap_dshow.hpp | 40 int m_index, m_width, m_height, m_fourcc; member in class:cv::VideoCapture_DShow
|