Lines Matching refs:width
25 inline void create_record(char* src, unsigned* dst, unsigned width) { in create_record() argument
26 dst[0] |= src[width - 1]; in create_record()
30 for (unsigned col = 31u; col < width; ++col) in create_record()
99 unsigned size_sse_row = m_matrix->width / 128 + 1; //3 in UpdateState()
128 unsigned width = m_matrix->width; in UpdateState() local
130 char* src = &mas[(row + begin) * width]; in UpdateState()
132 create_record(src, dst, width); in UpdateState()
137 src = &mas[(m_matrix->height - 1) * width]; in UpdateState()
140 src = &mas[(begin - 1) * width]; in UpdateState()
143 create_record(src, dst, width); in UpdateState()
150 src = &mas[end * width]; in UpdateState()
153 create_record(src, dst, width); in UpdateState()
202 width = m_matrix->width; in UpdateState()
204 char* dst = &dest[(row + begin) * width]; in UpdateState()
206 for (unsigned col = 0; col < width; ++col) { in UpdateState()
336 total += GetAdjacentCellState(source, m_matrix->width, m_matrix->height, cellNumber, i); in CheckCell()