Home | History | Annotate | Download | only in dbregtest

Lines Matching refs:m_h

23 m_w(0),m_h(0),m_colors(255),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256)
30 m_colors(255),m_w(w),m_h(h),m_format(format),m_over_allocation(256)
36 m_colors(255),m_w(w),m_h(h),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256)
42 m_colors(255),m_w(w),m_h(h),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256)
52 m_colors(255),m_w(0),m_h(0),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256)
70 dst.m_h = src.m_h;
90 m_data.resize(m_w*m_h+m_over_allocation);
93 m_data.resize(m_w*m_h*3+m_over_allocation);
104 m_data.resize(m_w*m_h+m_over_allocation);
105 memcpy(&m_data[0],data,m_w*m_h);
122 s >> format_header >> m_w >> m_h >> m_colors;
139 s >> m_w >> m_h >> m_colors;
160 m_data.resize(m_w*m_h+m_over_allocation);
164 m_data.resize(m_w*m_h*3+m_over_allocation);
196 out << format_header << "# " << comment << '\n' << m_w << " " << m_h << '\n' << m_colors << '\n';
208 m_rows.resize(m_h);
213 for(i=0;i<m_h;i++)
219 for(i=0;i<m_h;i++)
232 for ( int i = 0; i < m_w*m_h; ++i )
235 m_data.resize(m_w*m_h+m_over_allocation);
244 o << "Size: " << im.m_w << " x " << im.m_h << "\n";