Lines Matching defs:column
3508 /** Get size used for each member of a uniform array of a given type in a std140 column-major layout
4155 const glw::GLuint column = element / n_rows;
4158 const glw::GLuint value_offset = static_cast<glw::GLuint>(array_entry_offset + column * matrix_stride +
5187 const glw::GLuint column = element / column_length;
5191 static_cast<glw::GLuint>(uniform_offset + column * matrix_stride + column_elem * sizeof(glw::GLdouble));
9527 const unsigned int column = n_component % n_columns;
9530 result_sstream << "[" << column << "]"
9544 const unsigned int column = n_component % n_columns;
9547 result_sstream << "[" << column << "]"
9933 const unsigned int column = n_component % n_columns;
9936 result_sstream << "[" << (column) << "]"
12164 glw::GLuint column, glw::GLuint row);
12212 static glw::GLdouble minor_impl(const tcu::Matrix<glw::GLdouble, Size, Size>& matrix, glw::GLuint column,
12353 glw::GLuint column, glw::GLuint row)
12361 const glw::GLint eCol = static_cast<glw::GLint>(column);
12368 /* Skip eliminated column */
12498 static glw::GLdouble minor_impl(const tcu::Matrix<glw::GLdouble, Size, Size>& matrix, glw::GLuint column,
12501 tcu::Matrix<glw::GLdouble, Size - 1, Size - 1> eliminated = eliminate(matrix, column, row);
12507 glw::GLdouble minor_impl<2>(const tcu::Matrix<glw::GLdouble, 2, 2>& matrix, glw::GLuint column, glw::GLuint row)
12510 const glw::GLuint c = (0 == column) ? 1 : 0;
13020 for (glw::GLint column = 0; column < Cols; ++column)
13024 glw::GLint index = column * Rows + row;
13026 data[index] = in(row, column);
13060 for (glw::GLint column = 0; column < Cols; ++column)
13064 glw::GLint index = column * Rows + row;
13066 out(row, column) = data[index];