Lines Matching refs:n_rows

508 Utils::_variable_type Utils::getDoubleVariableType(glw::GLuint n_columns, glw::GLuint n_rows)
519 type = types[n_columns - 1][n_rows - 1];
759 Utils::_variable_type Utils::getIntVariableType(glw::GLuint n_columns, glw::GLuint n_rows)
772 type = types[n_rows - 1];
1310 Utils::_variable_type Utils::getUintVariableType(glw::GLuint n_columns, glw::GLuint n_rows)
1323 type = types[n_rows - 1];
3372 * @param n_rows Number of rows
3374 GPUShaderFP64Test2::uniformTypeDetails::uniformTypeDetails(glw::GLuint n_columns, glw::GLuint n_rows)
3375 : m_n_columns(n_columns), m_n_rows(n_rows)
3377 Utils::_variable_type type = Utils::getDoubleVariableType(n_columns, n_rows);
4129 const glw::GLuint n_rows = uniform_type.m_n_rows;
4130 const glw::GLuint n_elements = n_columns * n_rows;
4155 const glw::GLuint column = element / n_rows;
4156 const glw::GLuint column_elem = element % n_rows;
4186 m_uniform_types.push_back(uniformTypeDetails(1 /* n_columns */, 1 /* n_rows */));
4187 m_uniform_types.push_back(uniformTypeDetails(1 /* n_columns */, 2 /* n_rows */));
4188 m_uniform_types.push_back(uniformTypeDetails(1 /* n_columns */, 3 /* n_rows */));
4189 m_uniform_types.push_back(uniformTypeDetails(1 /* n_columns */, 4 /* n_rows */));
4190 m_uniform_types.push_back(uniformTypeDetails(2 /* n_columns */, 2 /* n_rows */));
4191 m_uniform_types.push_back(uniformTypeDetails(2 /* n_columns */, 3 /* n_rows */));
4192 m_uniform_types.push_back(uniformTypeDetails(2 /* n_columns */, 4 /* n_rows */));
4193 m_uniform_types.push_back(uniformTypeDetails(3 /* n_columns */, 2 /* n_rows */));
4194 m_uniform_types.push_back(uniformTypeDetails(3 /* n_columns */, 3 /* n_rows */));
4195 m_uniform_types.push_back(uniformTypeDetails(3 /* n_columns */, 4 /* n_rows */));
4196 m_uniform_types.push_back(uniformTypeDetails(4 /* n_columns */, 2 /* n_rows */));
4197 m_uniform_types.push_back(uniformTypeDetails(4 /* n_columns */, 3 /* n_rows */));
4198 m_uniform_types.push_back(uniformTypeDetails(4 /* n_columns */, 4 /* n_rows */));
4212 const glw::GLuint n_rows = uniform_type.m_n_rows;
4213 const glw::GLuint n_elements = n_columns * n_rows;
12754 glw::GLuint n_rows;
12888 typeDetails(glw::GLuint n_columns, glw::GLuint n_rows);
13538 typeDetails type(m_typeDefinition.n_columns, m_typeDefinition.n_rows);
13773 * @param n_rows Number of rows
13775 BuiltinFunctionTest::typeDetails::typeDetails(glw::GLuint n_columns, glw::GLuint n_rows)
13776 : m_n_columns(n_columns), m_n_rows(n_rows)
13778 Utils::_variable_type type = Utils::getDoubleVariableType(n_columns, n_rows);
13909 const glw::GLuint n_rows = type.m_n_rows;
13911 const Utils::_variable_type variable_type = Utils::getDoubleVariableType(n_columns, n_rows);
13912 const Utils::_variable_type uint_type = Utils::getUintVariableType(1, n_rows);
13913 const Utils::_variable_type int_type = Utils::getIntVariableType(1, n_rows);