Searched defs:transpose (Results 1 - 25 of 83) sorted by relevance

1234

/external/ceres-solver/internal/ceres/
H A Dblas.cc52 bool transpose,
60 char trans = transpose ? 'T' : 'N';
61 int n = transpose ? num_cols : num_rows;
62 int k = transpose ? num_rows : num_cols;
49 SymmetricRankKUpdate(int num_rows, int num_cols, const double* a, bool transpose, double alpha, double beta, double* c) argument
H A Dcompressed_row_sparse_matrix.cc358 CompressedRowSparseMatrix* transpose = local
361 int* transpose_rows = transpose->mutable_rows();
362 int* transpose_cols = transpose->mutable_cols();
363 double* transpose_values = transpose->mutable_values();
369 for (int i = 1; i < transpose->num_rows() + 1; ++i) {
382 for (int i = transpose->num_rows() - 1; i > 0 ; --i) {
387 *(transpose->mutable_row_blocks()) = col_blocks_;
388 *(transpose->mutable_col_blocks()) = row_blocks_;
390 return transpose;
H A Dcovariance_impl.cc129 const bool transpose = parameter_block1 > parameter_block2; local
130 if (transpose) {
177 if (transpose) {
179 cov.block(0, offset, block1_size, block2_size).transpose();
223 if (transpose) {
226 cov.block(0, offset, block1_local_size, block2_local_size).transpose() *
227 block1_jacobian.transpose();
232 block2_jacobian.transpose();
637 svd.matrixV().transpose();
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat2.js94 mat2.transpose = function(out, a) {
H A Dmat3.js134 mat3.transpose = function(out, a) {
H A Dmat4.js142 mat4.transpose = function(out, a) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_idct.h55 struct pipe_sampler_view *transpose; member in struct:vl_idct
73 struct pipe_sampler_view *intermediate, *transpose; member in struct:vl_idct_buffer::__anon13792::__anon13793
96 struct pipe_sampler_view *transpose);
/external/eigen/Eigen/src/Core/products/
H A DParallelizer.h86 void parallelize_gemm(const Functor& func, Index rows, Index cols, bool transpose) argument
91 // FIXME the transpose variable is only needed to properly split
95 EIGEN_UNUSED_VARIABLE(transpose);
110 Index size = transpose ? cols : rows;
125 if(transpose)
145 if(transpose)
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h59 JacobiRotation transpose() const { using numext::conj; return JacobiRotation(m_c, -conj(m_s)); } function in class:Eigen::JacobiRotation
296 internal::apply_rotation_in_the_plane(x, y, j.transpose());
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_idct.h55 struct pipe_sampler_view *transpose; member in struct:vl_idct
73 struct pipe_sampler_view *intermediate, *transpose; member in struct:vl_idct_buffer::__anon27203::__anon27204
96 struct pipe_sampler_view *transpose);
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
H A Dobject.js492 * @param {Object} obj The object to transpose.
495 goog.object.transpose = function(obj) {
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dcontext.cc102 void Context::UniformMatrix4fv(GLint location, GLboolean transpose, argument
104 glUniformMatrix4fv(location, 1, transpose,
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A DMatrix.cpp131 Matrix4 Matrix4::transpose(const Matrix4 &mat) function in class:Matrix4
/external/eigen/Eigen/src/Core/
H A DTranspositions.h140 inline Transpose<TranspositionsBase> transpose() const function in class:Eigen::TranspositionsBase
H A DPermutationMatrix.h207 inline Transpose<PermutationBase> transpose() const function in class:Eigen::PermutationBase
H A DTranspose.h19 * \brief Expression of the transpose of a matrix
21 * \param MatrixType the type of the object of which we are taking the transpose
23 * This class represents an expression of the transpose of a matrix.
24 * It is the return type of MatrixBase::transpose() and MatrixBase::adjoint()
27 * \sa MatrixBase::transpose(), MatrixBase::adjoint()
178 /** \returns an expression of the transpose of *this.
183 * \warning If you want to replace a matrix by its own transpose, do \b NOT do this:
185 * m = m.transpose(); // bug!!! caused by aliasing effect
193 * m = m.transpose().eval();
199 DenseBase<Derived>::transpose() function in class:Eigen::DenseBase
211 DenseBase<Derived>::transpose() const function in class:Eigen::DenseBase
[all...]
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
98 return Block<const VectorsType,1,Dynamic>(h.m_vectors, k, start, 1, h.rows()-start).transpose();
203 HouseholderSequence transpose() const function in class:Eigen::HouseholderSequence
217 /** \brief Adjoint (conjugate transpose) of the Householder sequence. */
377 /** \brief Sets the transpose flag.
378 * \param [in] trans New value of the transpose flag.
380 * By default, the transpose flag is not set. If the transpose flag is set, then this object represents
391 bool trans() const { return m_trans; } /**< \brief Returns the transpose flag. */
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp672 // * glUniformMatrix2fv(GLint location, GLboolean transpose, Array data);
673 // * glUniformMatrix2fv(GLint location, GLboolean transpose, Float32Array data);
674 // * glUniformMatrix3fv(GLint location, GLboolean transpose, Array data);
675 // * glUniformMatrix3fv(GLint location, GLboolean transpose, Float32Array data);
676 // * glUniformMatrix4fv(GLint location, GLboolean transpose, Array data);
677 // * glUniformMatrix4fv(GLint location, GLboolean transpose, Float32Array data);
696 bool transpose = info[1]->BooleanValue(); local
702 case 2: context->uniformMatrix2fv(location, transpose, array); break;
703 case 3: context->uniformMatrix3fv(location, transpose, array); break;
704 case 4: context->uniformMatrix4fv(location, transpose, arra
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniform_query.cpp387 bool transpose,
398 "transpose = %s) to: ",
400 transpose ? "true" : "false");
831 GLboolean transpose, const GLfloat *values)
865 /* GL_INVALID_VALUE is generated if `transpose' is not GL_FALSE.
868 if (transpose) {
870 "glUniformMatrix(matrix transpose is not GL_FALSE)");
877 bool(transpose), shProg, location, uni);
901 if (!transpose) {
905 /* Copy and transpose th
385 log_uniform(const void *values, enum glsl_base_type basicType, unsigned rows, unsigned cols, unsigned count, bool transpose, const struct gl_shader_program *shProg, GLint location, const struct gl_uniform_storage *uni) argument
828 _mesa_uniform_matrix(struct gl_context *ctx, struct gl_shader_program *shProg, GLuint cols, GLuint rows, GLint location, GLsizei count, GLboolean transpose, const GLfloat *values) argument
[all...]
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h46 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
151 y = matrixQ().transpose() * b;
242 SPQR_QProduct(const SPQRType& spqr, const Derived& other, bool transpose) : m_spqr(spqr),m_other(other),m_transpose(transpose) {} argument
277 // To use for operations with the transpose of Q
278 SPQRMatrixQTransposeReturnType<SPQRType> transpose() const function in struct:Eigen::SPQRMatrixQReturnType
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h204 const bool transpose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit); local
206 if ((!transpose) && other.isRValue())
233 //const bool transpose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit);
236 "the transpose operation is supposed to be handled in SparseMatrix::operator=");
241 //typedef typename internal::conditional<transpose, LinkedVectorMatrix<Scalar,Flags&RowMajorBit>, Derived>::type TempType;
395 Transpose<Derived> transpose() { return derived(); } function in class:Eigen::SparseMatrixBase
396 const Transpose<const Derived> transpose() const { return derived(); } function in class:Eigen::SparseMatrixBase
397 const AdjointReturnType adjoint() const { return transpose(); }
/external/guava/guava/src/com/google/common/collect/
H A DTables.java136 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) { method in class:Tables
207 original.putAll(transpose(table));
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp387 bool transpose,
398 "transpose = %s) to: ",
400 transpose ? "true" : "false");
831 GLboolean transpose, const GLfloat *values)
865 /* GL_INVALID_VALUE is generated if `transpose' is not GL_FALSE.
868 if (transpose) {
870 "glUniformMatrix(matrix transpose is not GL_FALSE)");
877 bool(transpose), shProg, location, uni);
901 if (!transpose) {
905 /* Copy and transpose th
385 log_uniform(const void *values, enum glsl_base_type basicType, unsigned rows, unsigned cols, unsigned count, bool transpose, const struct gl_shader_program *shProg, GLint location, const struct gl_uniform_storage *uni) argument
828 _mesa_uniform_matrix(struct gl_context *ctx, struct gl_shader_program *shProg, GLuint cols, GLuint rows, GLint location, GLsizei count, GLboolean transpose, const GLfloat *values) argument
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Djet_data.h111 EAS_I8 transpose; member in struct:s_jet_segment_tag
/external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
H A Dgl-matrix.js1652 mat2.transpose = function(out, a) {
2186 mat3.transpose = function(out, a) {
2625 mat4.transpose = function(out, a) {

Completed in 411 milliseconds

1234