Lines Matching refs:height
49 inline void shift_left2D(__m128i* X, unsigned height, unsigned size_sse_row) { in shift_left2D() argument
50 for (unsigned row = 0; row < height; ++row) { in shift_left2D()
72 inline void shift_right2D(__m128i* X, unsigned height, unsigned size_sse_row) { in shift_right2D() argument
73 for (unsigned row = 0; row < height; ++row) { in shift_right2D()
127 unsigned height = end - begin; in UpdateState() local
129 for (unsigned row = 0; row < height; ++row) { in UpdateState()
137 src = &mas[(m_matrix->height - 1) * width]; in UpdateState()
146 if (end == m_matrix->height) { in UpdateState()
152 dst = (unsigned*)&X[(height + 1) * size_sse_row]; in UpdateState()
165 height = end - begin + 2; in UpdateState()
166 shift_left2D(X, height, size_sse_row); in UpdateState()
175 height = end - begin + 2; in UpdateState()
176 shift_left2D(X, height, size_sse_row); in UpdateState()
188 height = end - begin + 2; in UpdateState()
189 shift_right2D(X, height, size_sse_row); in UpdateState()
201 height = end - begin; in UpdateState()
203 for (unsigned row = 0; row < height; ++row) { in UpdateState()
336 total += GetAdjacentCellState(source, m_matrix->width, m_matrix->height, cellNumber, i); in CheckCell()