HomeSort by relevance Sort by last modified time
    Searched defs:Matrix (Results 51 - 75 of 162) sorted by null

1 23 4 5 6 7

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
LiveRegMatrix.h 11 // along two dimensions: Slot indexes and register units. The matrix is used by
49 // The matrix is represented as a LiveIntervalUnion per register unit.
51 LiveIntervalUnion::Array Matrix;
140 /// Query a line of the assigned virtual register matrix directly.
148 LiveIntervalUnion *getLiveUnions() { return &Matrix[0]; }
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
LiveRegMatrix.h 11 // along two dimensions: Slot indexes and register units. The matrix is used by
49 // The matrix is represented as a LiveIntervalUnion per register unit.
51 LiveIntervalUnion::Array Matrix;
140 /// Query a line of the assigned virtual register matrix directly.
148 LiveIntervalUnion *getLiveUnions() { return &Matrix[0]; }
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
LiveRegMatrix.h 11 // along two dimensions: Slot indexes and register units. The matrix is used by
49 // The matrix is represented as a LiveIntervalUnion per register unit.
51 LiveIntervalUnion::Array Matrix;
140 /// Query a line of the assigned virtual register matrix directly.
148 LiveIntervalUnion *getLiveUnions() { return &Matrix[0]; }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
LiveRegMatrix.h 11 // along two dimensions: Slot indexes and register units. The matrix is used by
49 // The matrix is represented as a LiveIntervalUnion per register unit.
51 LiveIntervalUnion::Array Matrix;
140 /// Query a line of the assigned virtual register matrix directly.
148 LiveIntervalUnion *getLiveUnions() { return &Matrix[0]; }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
LiveRegMatrix.h 11 // along two dimensions: Slot indexes and register units. The matrix is used by
49 // The matrix is represented as a LiveIntervalUnion per register unit.
51 LiveIntervalUnion::Array Matrix;
140 /// Query a line of the assigned virtual register matrix directly.
148 LiveIntervalUnion *getLiveUnions() { return &Matrix[0]; }
  /frameworks/base/services/core/java/com/android/server/display/
DisplayTransformManager.java 20 import android.opengl.Matrix;
82 * Map of level -> color transformation matrix.
87 * Temporary matrix used internally by {@link #computeColorMatrixLocked()}.
103 * Returns a copy of the color transform matrix set for a given level.
113 * Sets and applies a current color transform matrix for a given level.
115 * Note: all color transforms are first composed to a single matrix in ascending order based
119 * @param value the 4x4 color transform matrix (in column-major order), or {@code null} to
120 * remove the color transform matrix associated with the provided level
124 throw new IllegalArgumentException("Expected length: 16 (4x4 matrix)"
156 Matrix.setIdentityM(result[0], 0)
    [all...]
  /frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
GL2CameraEye.java 37 import android.opengl.Matrix;
146 Matrix.setIdentityM(mSTMatrix, 0);
147 Matrix.setIdentityM(mMMatrix, 0);
221 Matrix.multiplyMM(mMVPMatrix, 0, mVMatrix, 0, mMMatrix, 0);
222 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
237 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
322 Matrix.setLookAtM(mVMatrix, 0, 0, 0, 5f, 0f, 0f, 0f, 0f, 1.0f, 0.0f);
376 Matrix.setIdentityM(mMMatrix, 0);
377 Matrix.translateM(mMMatrix, 0, mPos[0], mPos[1], mPos[2]);
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 26 import android.opengl.Matrix;
160 Matrix.setRotateM(mMMatrix, 0, angle, 0, 0, 1.0f);
161 Matrix.multiplyMM(mMVPMatrix, 0, mVMatrix, 0, mMMatrix, 0);
162 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
263 Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7);
264 Matrix.setLookAtM(mVMatrix, 0, 0, 3, 3, 0f, 0f, 0f, 0f, 1.0f, 0.0f);
274 // simple shader with MVP matrix and text coord
  /external/eigen/Eigen/src/Core/
Matrix.h 18 struct traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
55 /** \class Matrix
58 * \brief The matrix class, also used for vectors and row-vectors
60 * The %Matrix class is the work-horse for all \em dense (\ref dense "note") matrices and vectors within Eigen.
63 * The %Matrix class encompasses \em both fixed-size and dynamic-size objects (\ref fixedsize "note").
81 * \li \c Matrix2d is a 2x2 square matrix of doubles (\c Matrix<double, 2, 2>)
82 * \li \c Vector4f is a vector of 4 floats (\c Matrix<float, 4, 1>)
83 * \li \c RowVector3i is a row-vector of 3 ints (\c Matrix<int, 1, 3>)
85 * \li \c MatrixXf is a dynamic-size matrix of floats (\c Matrix<float, Dynamic, Dynamic>
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRanges.java 32 private Matrix matrix = new Matrix(); field in class:PluralRanges
48 private static final class Matrix implements Comparable<Matrix>, Cloneable {
56 Matrix() {
151 if (!(other instanceof Matrix)) {
154 return 0 == compareTo((Matrix) other);
158 public int compareTo(Matrix o) {
169 public Matrix clone()
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRanges.java 30 private Matrix matrix = new Matrix(); field in class:PluralRanges
46 private static final class Matrix implements Comparable<Matrix>, Cloneable {
54 Matrix() {
149 if (!(other instanceof Matrix)) {
152 return 0 == compareTo((Matrix) other);
156 public int compareTo(Matrix o) {
167 public Matrix clone()
    [all...]
  /external/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
ReductionRules.h 33 typedef typename GraphT::Matrix Matrix;
42 const Matrix &ECosts = G.getEdgeCosts(EId);
77 typedef typename GraphT::Matrix Matrix;
95 const Matrix *YXECosts = FlipEdge1 ?
96 new Matrix(G.getEdgeCosts(YXEId).transpose()) :
99 const Matrix *ZXECosts = FlipEdge2 ?
100 new Matrix(G.getEdgeCosts(ZXEId).transpose()) :
133 const Matrix &YZECosts = G.getEdgeCosts(YZEId)
    [all...]
  /external/tensorflow/tensorflow/core/framework/
tensor_types.h 89 // Rank-2 tensor (matrix) of scalar type T.
92 Matrix;
97 // Unaligned Rank-2 tensor (matrix) of scalar type T.
  /external/tensorflow/tensorflow/core/util/ctc/
ctc_loss_calculator.h 53 typedef Eigen::MatrixXf Matrix;
73 const Matrix& y, bool ctc_merge_repeated,
74 Matrix* log_alpha) const;
77 const Matrix& y, bool ctc_merge_repeated,
78 Matrix* log_beta) const;
80 void CalculateGradient(const std::vector<int>& l_prime, const Matrix& y,
81 const Matrix& log_alpha, const Matrix& log_beta,
82 float log_p_z_x, Matrix* dy) const;
192 Matrix log_alpha_b(l_prime.size(), seq_len(b) - this->output_delay_)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
Matrix.java 22 public class Matrix {
28 * Creates a new matrix, initialized to zeros
33 public Matrix(int rows, int cols) {
40 * Creates a new matrix using the provided array of values
48 public Matrix(int stride, double[] values) {
56 * Creates a new matrix duplicating the given one
58 * @param that is the source Matrix.
60 public Matrix(Matrix that) {
70 * Gets the matrix coefficient from row i, column
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
ReductionRules.h 33 typedef typename GraphT::Matrix Matrix;
42 const Matrix &ECosts = G.getEdgeCosts(EId);
77 typedef typename GraphT::Matrix Matrix;
95 const Matrix *YXECosts = FlipEdge1 ?
96 new Matrix(G.getEdgeCosts(YXEId).transpose()) :
99 const Matrix *ZXECosts = FlipEdge2 ?
100 new Matrix(G.getEdgeCosts(ZXEId).transpose()) :
133 const Matrix &YZECosts = G.getEdgeCosts(YZEId)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h 115 typedef MatrixT Matrix;
ReductionRules.h 33 typedef typename GraphT::Matrix Matrix;
42 const Matrix &ECosts = G.getEdgeCosts(EId);
77 typedef typename GraphT::Matrix Matrix;
95 const Matrix *YXECosts = FlipEdge1 ?
96 new Matrix(G.getEdgeCosts(YXEId).transpose()) :
99 const Matrix *ZXECosts = FlipEdge2 ?
100 new Matrix(G.getEdgeCosts(ZXEId).transpose()) :
133 const Matrix &YZECosts = G.getEdgeCosts(YZEId)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
types.cpp 121 Matrix::Matrix(Type* type, uint32_t count)
126 bool Matrix::IsSame(Type* that) const {
127 const Matrix* mt = that->AsMatrix();
133 std::string Matrix::str() const {
  /external/deqp/framework/common/
tcuMatrix.hpp 23 * \brief Templatized matrix class.
33 // Templated matrix class.
35 class Matrix
48 Matrix (void);
49 explicit Matrix (const T& src);
50 explicit Matrix (const T src[Rows*Cols]);
51 Matrix (const Vector<T, Rows>& src);
52 Matrix (const Matrix<T, Rows, Cols>& src);
53 ~Matrix (void)
128 namespace matrix namespace in namespace:tcu
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 23 import android.opengl.Matrix;
150 // Projection matrix
270 Matrix.setIdentityM(mTempTextureMatrix, 0);
271 Matrix.setIdentityM(mMatrices, mCurrentMatrixIndex);
351 Matrix.setIdentityM(mMatrices, mCurrentMatrixIndex);
352 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1);
356 Matrix.translateM(mMatrices, mCurrentMatrixIndex, 0, height, 0);
357 Matrix.scaleM(mMatrices, mCurrentMatrixIndex, 1, -1, 1);
394 Matrix.translateM(mMatrices, mCurrentMatrixIndex, x, y, z);
398 // (1) we knows z = 0, (2) we inline the Matrix.translateM call
422 float[] matrix = mMatrices; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 23 import android.opengl.Matrix;
150 // Projection matrix
270 Matrix.setIdentityM(mTempTextureMatrix, 0);
271 Matrix.setIdentityM(mMatrices, mCurrentMatrixIndex);
351 Matrix.setIdentityM(mMatrices, mCurrentMatrixIndex);
352 Matrix.orthoM(mProjectionMatrix, 0, 0, width, 0, height, -1, 1);
356 Matrix.translateM(mMatrices, mCurrentMatrixIndex, 0, height, 0);
357 Matrix.scaleM(mMatrices, mCurrentMatrixIndex, 1, -1, 1);
394 Matrix.translateM(mMatrices, mCurrentMatrixIndex, x, y, z);
398 // (1) we knows z = 0, (2) we inline the Matrix.translateM call
422 float[] matrix = mMatrices; local
    [all...]
GLES11Canvas.java 24 import android.opengl.Matrix;
144 float matrix[] = mMatrixValues; local
145 Matrix.setIdentityM(matrix, 0);
148 Matrix.translateM(matrix, 0, 0, height, 0);
149 Matrix.scaleM(matrix, 0, 1, -1, 1);
228 Matrix.translateM(mMatrixValues, 0, x, y, z);
232 // (1) we knows z = 0, (2) we inline the Matrix.translateM call
    [all...]

Completed in 1757 milliseconds

1 23 4 5 6 7