HomeSort by relevance Sort by last modified time
    Searched full:matrix (Results 801 - 825 of 3296) sorted by null

<<31323334353637383940>>

  /external/bison/lib/
bitsetv-print.h 25 /* Dump vector of bitsets as a matrix. */
  /external/ceres-solver/internal/ceres/
block_jacobi_preconditioner.h 48 // of the matrix A^TA.
51 // update the matrix by running Update(A, D). The values of the matrix A are
73 // The block structure of the matrix this preconditioner is for (e.g. J).
lapack.h 44 // lhs is a symmetric positive definite matrix. It is assumed to be
45 // column major and only the lower triangular part of the matrix is
56 // computation. This function given the size of the lhs matrix will
65 // rectangular) matrix with full column rank.
  /external/chromium_org/android_webview/public/browser/
draw_gl.h 35 // Also the transformation matrix will contain at least a translation to the
45 // the provided transformation matrix. Translucency works normally.
50 // Input: current transformation matrix in surface pixels.
51 // Uses the column-based OpenGL matrix format.
  /external/chromium_org/cc/animation/
transform_operation.h 28 gfx::Transform matrix; member in struct:cc::TransformOperation
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
mixer.c 372 float matrix[9]; local
376 matrix[0] = -1.0f; matrix[1] = -1.0f; matrix[2] = -1.0f;
377 matrix[3] = -1.0f; matrix[4] = 8.0f; matrix[5] = -1.0f;
378 matrix[6] = -1.0f; matrix[7] = -1.0f; matrix[8] = -1.0f
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_exa.h 29 /* float[9] projective matrix bound to pictures */
  /external/chromium_org/third_party/skia/include/effects/
SkStippleMaskFilter.h 22 const SkMatrix& matrix,
SkTransparentShader.h 20 const SkMatrix& matrix) SK_OVERRIDE;
  /external/chromium_org/third_party/skia/include/gpu/
GrFontScaler.h 21 * instance is create for a specific font+size+matrix.
  /external/chromium_org/third_party/skia/include/views/animated/
SkImageView.h 51 SkMatrix* fMatrix; // null or copy of caller's matrix ,,,,,
  /external/chromium_org/third_party/skia/src/core/
SkBBoxHierarchyRecord.cpp 69 bool SkBBoxHierarchyRecord::concat(const SkMatrix& matrix) {
70 bool result = INHERITED::concat(matrix);
75 void SkBBoxHierarchyRecord::setMatrix(const SkMatrix& matrix) {
76 INHERITED::setMatrix(matrix);
SkColorFilter.cpp 21 bool SkColorFilter::asColorMatrix(SkScalar matrix[20]) const {
SkDevice.cpp 158 void SkDevice::setMatrixClip(const SkMatrix& matrix, const SkRegion& region,
374 const SkMatrix& matrix, const SkPaint& paint) {
375 draw.drawBitmap(bitmap, matrix, paint);
381 SkMatrix matrix; local
387 // Compute matrix from the two rectangles
393 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
406 matrix.mapRect(&tmpDst, tmpSrc);
419 // Since we did an extract, we need to adjust the matrix accordingly
428 matrix.preTranslate(dx, dy);
440 // matrix with the CTM, and try to call drawSprite if it can. If not
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkEmbossMaskFilter.cpp 69 const SkMatrix& matrix, SkIPoint* margin) const {
70 SkScalar radius = matrix.mapRadius(fBlurRadius);
99 // run the light direction through the matrix...
101 matrix.mapVectors((SkVector*)(void*)light.fDirection,
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkRadialGradient.h 22 SkMatrix* matrix,
SkSweepGradient.h 21 SkMatrix* matrix,
  /external/chromium_org/third_party/skia/src/svg/
SkSVGLinearGradient.cpp 29 parser._addAttribute("matrix", fMatrixID);
SkSVGRadialGradient.cpp 30 parser._addAttribute("matrix", fMatrixID);
  /external/chromium_org/third_party/skia/src/utils/
SkCamera.cpp 301 void SkCamera3D::patchToMatrix(const SkPatch3D& quilt, SkMatrix* matrix) const {
320 matrix->set(SkMatrix::kMScaleX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
321 matrix->set(SkMatrix::kMSkewY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot));
322 matrix->set(SkMatrix::kMPersp0, SkScalarDotDiv(3, patchPtr, 1, mapPtr+6, 1, dot));
325 matrix->set(SkMatrix::kMSkewX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
326 matrix->set(SkMatrix::kMScaleY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot));
327 matrix->set(SkMatrix::kMPersp1, SkScalarDotDiv(3, patchPtr, 1, mapPtr+6, 1, dot));
330 matrix->set(SkMatrix::kMTransX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
331 matrix->set(SkMatrix::kMTransY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot));
332 matrix->set(SkMatrix::kMPersp2, SK_UnitScalar1)
421 SkMatrix matrix; local
    [all...]
  /external/eigen/Eigen/
LU 9 * This module includes %LU decomposition and related notions such as matrix inversion and determinant.
  /external/eigen/Eigen/src/Core/
Stride.h 25 * row-major matrix or within a given column of a column-major matrix.
27 * The outer stride is the pointer increment between two consecutive rows of a row-major matrix or
28 * between two consecutive columns of a column-major matrix.
Transpose.h 19 * \brief Expression of the transpose of a matrix
23 * This class represents an expression of the transpose of a matrix.
65 inline Transpose(MatrixType& matrix) : m_matrix(matrix) {}
182 * \warning If you want to replace a matrix by its own transpose, do \b NOT do this:
220 * \warning If you want to replace a matrix by its own adjoint, do \b NOT do this:
253 struct inplace_transpose_selector<MatrixType,true> { // square matrix
260 struct inplace_transpose_selector<MatrixType,false> { // non square matrix
283 * Notice however that this method is only useful if you want to replace a matrix by its own transpose.
284 * If you just need the transpose of a matrix, use transpose()
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix_MKL.h 29 * General matrix-matrix product functionality based on ?GEMM.
41 * This file implements general matrix-matrix multiplication using BLAS
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 61 inline Minor(const MatrixType& matrix,
63 : m_matrix(matrix), m_row(row), m_col(col)
65 eigen_assert(row >= 0 && row < matrix.rows()
66 && col >= 0 && col < matrix.cols());

Completed in 955 milliseconds

<<31323334353637383940>>