HomeSort by relevance Sort by last modified time
    Searched full:transpose (Results 1 - 25 of 244) sorted by null

1 2 3 4 5 6 7 8 910

  /external/mesa3d/src/glsl/builtins/tools/
generate_transposeGLSL.py 9 print trantype + " transpose(" + origtype + " m)\n{"
12 # The obvious implementation of transpose
  /external/sonivox/jet_tools/JetCreator/
JetDebug.py 40 print("transpose: %d" % queueSeg.transpose)
53 print("transpose: %d" % segment.transpose)
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_bundle.h 34 Solve for update dx such that diagmult(1+lambda,transpose(J)%J)%dx= -Jtf
51 Solve for update dx such that diagmult(1+lambda,transpose(J)%J)%dx= -Jtf
  /external/jpeg/
jpegtran.1 89 .B \-transpose
90 Transpose image (across UL-to-LR axis).
93 Transverse transpose (across UR-to-LL axis).
95 The transpose transformation has no restrictions regarding image dimensions.
103 transformation set. As stated, transpose is able to flip the entire image
108 of transpose and flip operations; for consistency, their actions on edge
110 transpose-and-flip sequence.
transupp.h 44 JXFORM_TRANSPOSE, /* transpose across UL-to-LR axis */
45 JXFORM_TRANSVERSE, /* transpose across UR-to-LL axis */
64 * Transpose is the only transformation that can handle partial iMCUs at the
  /cts/tests/tests/media/src/android/media/cts/
JetPlayerTest.java 250 int transpose = 0; local
252 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
261 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, repeatCount, transpose,
275 int transpose = 0; local
277 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
281 transpose = -1;
282 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
285 transpose = 0;
286 mJetPlayer.queueJetSegment(segmentNum, libNum, repeatCount, transpose, muteFlags, userID);
  /external/mesa3d/src/glsl/builtins/profiles/
120.frag 246 mat2 transpose(mat2 m);
247 mat3 transpose(mat3 m);
248 mat4 transpose(mat4 m);
250 mat2x3 transpose(mat3x2 m);
251 mat3x2 transpose(mat2x3 m);
253 mat2x4 transpose(mat4x2 m);
254 mat4x2 transpose(mat2x4 m);
256 mat3x4 transpose(mat4x3 m);
257 mat4x3 transpose(mat3x4 m);
120.vert 248 mat2 transpose(mat2 m);
249 mat3 transpose(mat3 m);
250 mat4 transpose(mat4 m);
252 mat2x3 transpose(mat3x2 m);
253 mat3x2 transpose(mat2x3 m);
255 mat2x4 transpose(mat4x2 m);
256 mat4x2 transpose(mat2x4 m);
258 mat3x4 transpose(mat4x3 m);
259 mat4x3 transpose(mat3x4 m);
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_TransformResidual4x4_s.s 101 ;// Transpose the 4x4 matrix *
103 ;// Transpose the 4x4 result matrix *
134 ;// Transpose the resultant matrix
  /external/webkit/Source/WebCore/platform/graphics/gpu/
TexShader.cpp 66 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
70 m_context->uniformMatrix3fv(m_texMatrixLocation, false /*transpose*/, texMatrix, 1 /*count*/);
ConvolutionShader.cpp 104 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
108 m_context->uniformMatrix3fv(m_texMatrixLocation, false /*transpose*/, texMatrix, 1 /*count*/);
LoopBlinnShader.cpp 48 m_context->uniformMatrix4fv(m_worldViewProjectionLocation, false /*transpose*/, matrix, 1 /*count*/);
BicubicShader.cpp 117 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
121 m_context->uniformMatrix3fv(m_texMatrixLocation, false /*transpose*/, texMatrix, 1 /*count*/);
122 m_context->uniformMatrix4fv(m_coefficientsLocation, false /*transpose*/, const_cast<float *>(coefficients), 1 /*count*/);
  /frameworks/base/services/sensorservice/
mat.h 283 // transpose. this handles matrices of matrices
284 inline int PURE transpose(int v) { return v; } function in namespace:android
285 inline float PURE transpose(float v) { return v; } function in namespace:android
286 inline double PURE transpose(double v) { return v; } function in namespace:android
288 // Transpose a matrix
290 mat<TYPE, R, C> PURE transpose(const mat<TYPE, C, R>& m) { function in namespace:android
294 r[i][j] = transpose(m[j][i]);
321 // Transpose a vector
327 mat<TYPE, SIZE, 1> PURE transpose(const VEC<TYPE, SIZE>& v) { function in namespace:android
330 r[i][0] = transpose(v[i])
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_TransformResidual4x4_s.s 59 ;// Transpose for Row operations (Rows to cols)
86 ;// Transpose for colulmn operations
139 ;// Transpose the 4x4 matrix *
141 ;// Transpose the 4x4 result matrix *
155 ;// Transpose the matrix inorder to perform row ops as coloumn ops
240 ;// Transpose the resultant matrix
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 675 // * glUniformMatrix2fv(GLint location, GLboolean transpose, Array data);
676 // * glUniformMatrix2fv(GLint location, GLboolean transpose, Float32Array data);
677 // * glUniformMatrix3fv(GLint location, GLboolean transpose, Array data);
678 // * glUniformMatrix3fv(GLint location, GLboolean transpose, Float32Array data);
679 // * glUniformMatrix4fv(GLint location, GLboolean transpose, Array data);
680 // * glUniformMatrix4fv(GLint location, GLboolean transpose, Float32Array data);
697 bool transpose = args[1]->BooleanValue(); local
703 case 2: context->uniformMatrix2fv(location, transpose, array, ec); break;
704 case 3: context->uniformMatrix3fv(location, transpose, array, ec); break;
705 case 4: context->uniformMatrix4fv(location, transpose, array, ec); break
    [all...]
  /external/libvpx/vp8/encoder/arm/neon/
vp8_shortwalsh4x4_neon.asm 28 ;transpose d2, d3, d4, d5. Then, d2=ip[0], d3=ip[1], d4=ip[2], d5=ip[3]
45 ;transpose d2, d3, d4, d5. Then, d2=ip[0], d3=ip[4], d4=ip[8], d5=ip[12]
fastfdct8x4_neon.asm 39 ;transpose d2, d4, d6, d8. Then, d2=ip[0], d4=ip[1], d6=ip[2], d8=ip[3]
40 ;transpose d3, d5, d7, d9. Then, d3=ip[0], d5=ip[1], d7=ip[2], d9=ip[3]
95 ;transpose d2, d4, d6, d8. Then, d2=ip[0], d4=ip[4], d6=ip[8], d8=ip[12]
96 ;transpose d3, d5, d7, d9. Then, d3=ip[0], d5=ip[4], d7=ip[8], d9=ip[12]
  /external/mksh/src/
emacsfn.h 77 FN(transpose, "transpose-chars", 0)
  /external/bison/src/
relation.h 47 /* Destructively transpose *R_ARG, of size N. */
  /external/libyuv/files/source/
rotate_priv.h 57 // Doing a transpose with reversing the read/write
  /frameworks/base/libs/rs/
rsMatrix2x2.cpp 58 void Matrix2x2::transpose() { function in class:Matrix2x2
rsMatrix2x2.h 42 void transpose();
rsMatrix3x3.h 42 void transpose();
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2Encoder.h 192 static void s_glUniformMatrix2fv(void *self , GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
193 static void s_glUniformMatrix3fv(void *self , GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);
194 static void s_glUniformMatrix4fv(void *self , GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);

Completed in 1193 milliseconds

1 2 3 4 5 6 7 8 910