HomeSort by relevance Sort by last modified time
    Searched full:transpose (Results 176 - 200 of 693) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
mat2-spec.js 62 describe("transpose", function() {
64 beforeEach(function() { result = mat2.transpose(out, matA); });
72 beforeEach(function() { result = mat2.transpose(matA, matA); });
mat3-spec.js 82 describe("transpose", function() {
84 beforeEach(function() { result = mat3.transpose(out, matA); });
104 beforeEach(function() { result = mat3.transpose(matA, matA); });
  /external/sonivox/jet_tools/JetCreator/
JetCreatorhlp.dat 21 transpose = Displays the transpose value of the segment. This is pulled in from the segment attributes.
60 transpose = Sets the transposition value for the segment, in semitones (half-steps).
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_api.h 151 void GLTrace_glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
152 void GLTrace_glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
153 void GLTrace_glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
183 void GLTrace_glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
184 void GLTrace_glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
185 void GLTrace_glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
186 void GLTrace_glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
187 void GLTrace_glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
188 void GLTrace_glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
351 void GLTrace_glProgramUniformMatrix2fvEXT(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
    [all...]
  /frameworks/native/opengl/libs/
entries.in 395 GL_ENTRY(void, glProgramUniformMatrix2fvEXT, GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
396 GL_ENTRY(void, glProgramUniformMatrix3fvEXT, GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
397 GL_ENTRY(void, glProgramUniformMatrix4fvEXT, GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES20.spec 129 void glUniformMatrix2fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
130 void glUniformMatrix3fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
131 void glUniformMatrix4fv ( GLint location, GLsizei count, GLboolean transpose, const GLfloat *value )
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 94 m->transpose();
97 m->transpose();
100 m->transpose();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/
entries.in 402 void, glProgramUniformMatrix2fvEXT, GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value
403 void, glProgramUniformMatrix3fvEXT, GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value
404 void, glProgramUniformMatrix4fvEXT, GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value
    [all...]
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 143 const bool transpose = parameter_block1 > parameter_block2; local
144 if (transpose) {
191 if (transpose) {
193 cov.block(0, offset, block1_size, block2_size).transpose();
237 if (transpose) {
240 cov.block(0, offset, block1_local_size, block2_local_size).transpose() *
241 block1_jacobian.transpose();
246 block2_jacobian.transpose();
826 svd.matrixV().transpose();
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_idct.c 733 // transpose and scale
762 struct pipe_sampler_view *transpose)
765 assert(matrix && transpose);
773 pipe_sampler_view_reference(&idct->transpose, transpose);
793 pipe_sampler_view_reference(&idct->transpose, NULL);
808 pipe_sampler_view_reference(&buffer->sampler_views.individual.transpose, idct->transpose);
829 pipe_sampler_view_reference(&buffer->sampler_views.individual.transpose, NULL);
  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 92 X.noalias() = A.transpose()*B.transpose();
96 // X.noalias() = A.transpose()*A;
174 X.noalias() = (A.transpose()*B);
  /external/eigen/doc/
I00_CustomizingEigen.dox 51 inline Transpose<Derived> transposed() {return this->transpose();}
52 inline const Transpose<Derived> transposed() const {return this->transpose();}
  /external/eigen/test/
determinant.cpp 41 VERIFY_IS_APPROX(m2.determinant(), m2.transpose().determinant());
  /external/eigen/test/eigen2/
eigen2_determinant.cpp 40 VERIFY_IS_APPROX(m2.determinant(), m2.transpose().determinant());
  /external/eigen/unsupported/test/
polynomialutils.cpp 45 cerr << evr.transpose() << endl; }
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
shortfdct_neon.asm 43 ; transpose d0=ip[0], d1=ip[1], d2=ip[2], d3=ip[3]
72 ; transpose d0=ip[0], d1=ip[4], d2=ip[8], d3=ip[12]
124 ; transpose q0=ip[0], q1=ip[1], q2=ip[2], q3=ip[3]
165 ; transpose q0=ip[0], q1=ip[4], q2=ip[8], q3=ip[12]
  /external/libyuv/files/include/libyuv/
rotate.h 92 // Doing a transpose with reversing the read/write
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.c 733 // transpose and scale
762 struct pipe_sampler_view *transpose)
765 assert(matrix && transpose);
773 pipe_sampler_view_reference(&idct->transpose, transpose);
793 pipe_sampler_view_reference(&idct->transpose, NULL);
808 pipe_sampler_view_reference(&buffer->sampler_views.individual.transpose, idct->transpose);
829 pipe_sampler_view_reference(&buffer->sampler_views.individual.transpose, NULL);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
pitch_lag_tables.h 111 /* transpose transform matrix */
  /frameworks/av/include/media/
JetPlayer.h 54 int queueSegment(int segmentNum, int libNum, int repeatCount, int transpose,
  /frameworks/native/services/sensorservice/
Fusion.h 46 * Since P01 = transpose(P10), the code below never calculates or
  /frameworks/rs/
rsMatrix3x3.cpp 65 void Matrix3x3::transpose() { function in class:Matrix3x3
rsMatrix4x4.h 55 void transpose();
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContext.h 272 void uniformMatrix2fv(const WebGLUniformLocation*, GC3Dboolean transpose, Float32Array* value);
273 void uniformMatrix2fv(const WebGLUniformLocation*, GC3Dboolean transpose, GC3Dfloat* value, GC3Dsizei);
274 void uniformMatrix3fv(const WebGLUniformLocation*, GC3Dboolean transpose, Float32Array* value);
275 void uniformMatrix3fv(const WebGLUniformLocation*, GC3Dboolean transpose, GC3Dfloat* value, GC3Dsizei);
276 void uniformMatrix4fv(const WebGLUniformLocation*, GC3Dboolean transpose, Float32Array* value);
277 void uniformMatrix4fv(const WebGLUniformLocation*, GC3Dboolean transpose, GC3Dfloat* value, GC3Dsizei);
    [all...]
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 267 /** \sa MatrixBase::transpose() */
268 inline TriangularView<Transpose<MatrixType>,TransposeMode> transpose() function in class:Eigen::TriangularView
271 return m_matrix.const_cast_derived().transpose();
273 /** \sa MatrixBase::transpose() const */
274 inline const TriangularView<Transpose<MatrixType>,TransposeMode> transpose() const function in class:Eigen::TriangularView
276 return m_matrix.transpose();

Completed in 762 milliseconds

1 2 3 4 5 6 78 91011>>