Searched defs:transpose (Results 26 - 50 of 83) sorted by relevance

1234

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_idct.c733 // 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);
758 vl_idct_init(struct vl_idct *idct, struct pipe_context *pipe, unsigned buffer_width, unsigned buffer_height, unsigned nr_of_render_targets, struct pipe_sampler_view *matrix, struct pipe_sampler_view *transpose) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniforms.c340 _mesa_UniformMatrix2fvARB(GLint location, GLsizei count, GLboolean transpose, argument
345 2, 2, location, count, transpose, value);
349 _mesa_UniformMatrix3fvARB(GLint location, GLsizei count, GLboolean transpose, argument
354 3, 3, location, count, transpose, value);
358 _mesa_UniformMatrix4fvARB(GLint location, GLsizei count, GLboolean transpose, argument
363 4, 4, location, count, transpose, value);
371 _mesa_UniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, argument
376 2, 3, location, count, transpose, value);
380 _mesa_UniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, argument
385 3, 2, location, count, transpose, valu
389 _mesa_UniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
398 _mesa_UniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
407 _mesa_UniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
416 _mesa_UniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
[all...]
H A Dget.c2055 static const int transpose[] = { variable
2134 params[i] = FLOAT_TO_BOOLEAN(m->m[transpose[i]]);
2223 params[i] = m->m[transpose[i]];
2318 params[i] = FLOAT_TO_INT(m->m[transpose[i]]);
2414 params[i] = FLOAT_TO_INT64(m->m[transpose[i]]);
2504 params[i] = m->m[transpose[i]];
2800 params[i] = FLOAT_TO_FIXED(m->m[transpose[i]]);
/external/eigen/Eigen/src/Core/
H A DTriangularMatrix.h267 /** \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();
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h51 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
174 y = this->matrixQ().transpose() * B;
581 SparseQR_QProduct(const SparseQRType& qr, const Derived& other, bool transpose) : argument
582 m_qr(qr),m_other(other),m_transpose(transpose) {}
650 // To use for operations with the transpose of Q
651 SparseQRMatrixQTransposeReturnType<SparseQRType> transpose() const function in struct:Eigen::SparseQRMatrixQReturnType
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_idct.c733 // 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);
758 vl_idct_init(struct vl_idct *idct, struct pipe_context *pipe, unsigned buffer_width, unsigned buffer_height, unsigned nr_of_render_targets, struct pipe_sampler_view *matrix, struct pipe_sampler_view *transpose) argument
/external/mesa3d/src/mesa/main/
H A Duniforms.c340 _mesa_UniformMatrix2fvARB(GLint location, GLsizei count, GLboolean transpose, argument
345 2, 2, location, count, transpose, value);
349 _mesa_UniformMatrix3fvARB(GLint location, GLsizei count, GLboolean transpose, argument
354 3, 3, location, count, transpose, value);
358 _mesa_UniformMatrix4fvARB(GLint location, GLsizei count, GLboolean transpose, argument
363 4, 4, location, count, transpose, value);
371 _mesa_UniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, argument
376 2, 3, location, count, transpose, value);
380 _mesa_UniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, argument
385 3, 2, location, count, transpose, valu
389 _mesa_UniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
398 _mesa_UniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
407 _mesa_UniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
416 _mesa_UniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) argument
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Djet.c191 if (p->transpose)
193 result = EAS_SetTransposition(easHandle, p->streamHandle, p->transpose);
599 EAS_PUBLIC EAS_RESULT JET_QueueSegment (EAS_DATA_HANDLE easHandle, EAS_INT segmentNum, EAS_INT libNum, EAS_INT repeatCount, EAS_INT transpose, EAS_U32 muteFlags, EAS_U8 userID) argument
623 p->transpose = (EAS_I8) transpose;
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromePageScript.js27 goog.object.clone=function(a){var b={},c;for(c in a)b[c]=a[c];return b};goog.object.unsafeClone=function(a){var b=goog.typeOf(a);if("object"==b||"array"==b){if(a.clone)return a.clone();var b="array"==b?[]:{},c;for(c in a)b[c]=goog.object.unsafeClone(a[c]);return b}return a};goog.object.transpose=function(a){var b={},c;for(c in a)b[a[c]]=c;return b};goog.object.PROTOTYPE_FIELDS_="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c301 const char *format, boolean transpose)
312 if (transpose)
492 const char *format, boolean transpose)
504 if (transpose)
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, const char *format, boolean transpose) argument
491 emit_d(struct ppc_function *p, uint op, uint rt, uint ra, int si, const char *format, boolean transpose) argument
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMask.cpp37 * "transpose" parameter is true, it will transpose the pixels on write,
81 bool transpose)
88 int dst_x_stride = transpose ? height : 1;
89 int dst_y_stride = transpose ? 1 : new_width;
283 bool transpose, uint8_t outer_weight)
295 int dst_x_stride = transpose ? height : 1;
296 int dst_y_stride = transpose ? 1 : new_width;
556 // Do three X blurs, with a transpose on the final one.
560 // Do three Y blurs, with a transpose o
79 boxBlur(const uint8_t* src, int src_y_stride, uint8_t* dst, int leftRadius, int rightRadius, int width, int height, bool transpose) argument
281 boxBlurInterp(const uint8_t* src, int src_y_stride, uint8_t* dst, int radius, int width, int height, bool transpose, uint8_t outer_weight) argument
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkMatrix44.cpp648 void SkMatrix44::transpose() { function in class:SkMatrix44
/external/deqp/modules/gles2/functional/
H A Des2fShaderStateQueryTests.cpp458 void verifyUniformMatrixValues (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, const GLfloat* values, bool transpose) argument
472 const int stateIndex = transpose ? (x*N + y) : (y*N + x);
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c301 const char *format, boolean transpose)
312 if (transpose)
492 const char *format, boolean transpose)
504 if (transpose)
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, const char *format, boolean transpose) argument
491 emit_d(struct ppc_function *p, uint op, uint rt, uint ra, int si, const char *format, boolean transpose) argument
/external/skia/src/effects/
H A DSkBlurMask.cpp37 * "transpose" parameter is true, it will transpose the pixels on write,
81 bool transpose)
88 int dst_x_stride = transpose ? height : 1;
89 int dst_y_stride = transpose ? 1 : new_width;
283 bool transpose, uint8_t outer_weight)
295 int dst_x_stride = transpose ? height : 1;
296 int dst_y_stride = transpose ? 1 : new_width;
556 // Do three X blurs, with a transpose on the final one.
560 // Do three Y blurs, with a transpose o
79 boxBlur(const uint8_t* src, int src_y_stride, uint8_t* dst, int leftRadius, int rightRadius, int width, int height, bool transpose) argument
281 boxBlurInterp(const uint8_t* src, int src_y_stride, uint8_t* dst, int radius, int width, int height, bool transpose, uint8_t outer_weight) argument
[all...]
/external/skia/src/utils/
H A DSkMatrix44.cpp648 void SkMatrix44::transpose() { function in class:SkMatrix44
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_implementation_impl_autogen.h1481 GLboolean transpose,
1486 << GLES2Util::GetStringBool(transpose) << ", "
1499 if (transpose != false) {
1501 GL_INVALID_VALUE, "glUniformMatrix2fv", "transpose GL_INVALID_VALUE");
1510 GLboolean transpose,
1515 << GLES2Util::GetStringBool(transpose) << ", "
1531 if (transpose != false) {
1533 GL_INVALID_VALUE, "glUniformMatrix3fv", "transpose GL_INVALID_VALUE");
1542 GLboolean transpose,
1547 << GLES2Util::GetStringBool(transpose) << ", "
1479 UniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
1508 UniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
1540 UniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
[all...]
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dppb_opengles2_thunk.cc1234 GLboolean transpose,
1238 glUniformMatrix2fv(location, count, transpose, value);
1245 GLboolean transpose,
1249 glUniformMatrix3fv(location, count, transpose, value);
1256 GLboolean transpose,
1260 glUniformMatrix4fv(location, count, transpose, value);
1231 UniformMatrix2fv(PP_Resource context_id, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
1242 UniformMatrix3fv(PP_Resource context_id, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
1253 UniformMatrix4fv(PP_Resource context_id, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditor.cpp1021 void Editor::transpose() function in class:blink::Editor
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DvalidationES.cpp1112 GLboolean transpose)
1123 if (transpose != GL_FALSE && context->getClientVersion() < 3)
1111 ValidateUniformMatrix(gl::Context *context, GLenum matrixType, GLint location, GLsizei count, GLboolean transpose) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_loopfilter_intrin_sse2.c1395 static INLINE void transpose(unsigned char *src[], int in_p, function
1480 transpose(src, 16, dst, p, 2);
1496 transpose(src, p, dst, 8, 1);
1505 transpose(src, 8, dst, p, 1);
1531 transpose(src, 16, dst, p, 2);
1548 transpose(src, p, dst, 8, 2);
1559 transpose(src, 8, dst, p, 2);
/external/chromium_org/third_party/libwebp/dsp/
H A Denc_neon.c427 // transpose d0=ip[0], d1=ip[4], d2=ip[8], d3=ip[12]
562 // Does a regular 4x4 transpose followed by an adjustment of the upper columns
586 const int16x8x2_t transpose = local
589 const int32x4_t tmp32_1 = vsubl_s16(vget_low_s16(transpose.val[0]),
590 vget_low_s16(transpose.val[1]));
591 const int32x4_t tmp32_2 = vsubl_s16(vget_high_s16(transpose.val[0]),
592 vget_high_s16(transpose.val[1]));
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLNoOpInterface.cpp354 GrGLboolean transpose,
360 GrGLboolean transpose,
366 GrGLboolean transpose,
352 noOpGLUniformMatrix2fv(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value) argument
358 noOpGLUniformMatrix3fv(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value) argument
364 noOpGLUniformMatrix4fv(GrGLint location, GrGLsizei count, GrGLboolean transpose, const GrGLfloat* value) argument
/external/chromium_org/ui/gl/
H A Dgl_bindings_skia_in_process.cc536 GLboolean transpose, const GLfloat* value) {
537 glUniformMatrix2fv(location, count, transpose, value);
541 GLboolean transpose, const GLfloat* value) {
542 glUniformMatrix3fv(location, count, transpose, value);
546 GLboolean transpose, const GLfloat* value) {
547 glUniformMatrix4fv(location, count, transpose, value);
535 StubGLUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
540 StubGLUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
545 StubGLUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) argument
/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp766 void GLContext::uniformMatrix3fv (deInt32 location, deInt32 count, deInt32 transpose, const float *value) argument
768 m_wrapper->glUniformMatrix3fv(location, count, transpose, value);
771 void GLContext::uniformMatrix4fv (deInt32 location, deInt32 count, deInt32 transpose, const float *value) argument
773 m_wrapper->glUniformMatrix4fv(location, count, transpose, value);

Completed in 5590 milliseconds

1234