Home
last modified time | relevance | path

Searched defs:Matrix (Results 1 – 25 of 140) sorted by relevance

123456

/external/bazelbuild-rules_rust/examples/ffi/rust_calling_c/src/
Dffi.rs19 pub struct Matrix { struct
27 pub fn matrix_new(rows: size_t, cols: size_t, data: *const u64) -> *mut Matrix; in matrix_new()
28 pub fn matrix_at(matrix: *const Matrix, row: size_t, col: size_t, n: *mut u64) -> c_int; in matrix_at()
29 pub fn matrix_set(matrix: *const Matrix, row: size_t, col: size_t, n: u64) -> c_int; in matrix_set()
30 pub fn matrix_transpose(matrix: *mut Matrix); in matrix_transpose()
31 pub fn matrix_equal(a: *const Matrix, b: *const Matrix) -> c_int; in matrix_equal()
32 pub fn matrix_free(matrix: *mut Matrix); in matrix_free()
Dmatrix.rs23 pub struct Matrix { struct
24 matrix: *mut ffi::Matrix, argument
28 impl Matrix { implementation
35 pub fn new(rows: usize, cols: usize, data: &[u64]) -> Matrix { in new()
102 impl ops::Drop for Matrix { implementation
/external/libtextclassifier/native/lang_id/common/
Dembedding-network-params.h80 struct Matrix { struct
100 Matrix GetEmbeddingMatrix(int i) const { in GetEmbeddingMatrix() argument
/external/rust/android-crates-io/crates/criterion-plot/src/
Ddata.rs28 pub struct Matrix { struct
34 impl Matrix { implementation
/external/clang/test/SemaCXX/
Dcxx11-call-to-deleted-constructor.cpp11 class Matrix { class
24 template <class VT> class Matrix<VT, 0, 0> { // expected-note {{passing argument to parameter here}} class
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/PBQP/
DMath.h127 Matrix(unsigned Rows, unsigned Cols) : in Matrix() function
133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() function
140 Matrix(const Matrix &M) in Matrix() function
147 Matrix(Matrix &&M) in Matrix() function
DReductionRules.h34 using Matrix = typename GraphT::Matrix; in applyR1() local
78 using Matrix = typename GraphT::Matrix; in applyR2() local
182 using Matrix = typename GraphT::Matrix; in backpropagate() local
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DMath.h127 Matrix(unsigned Rows, unsigned Cols) : in Matrix() function
133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() function
140 Matrix(const Matrix &M) in Matrix() function
147 Matrix(Matrix &&M) in Matrix() function
DReductionRules.h34 using Matrix = typename GraphT::Matrix; in applyR1() local
78 using Matrix = typename GraphT::Matrix; in applyR2() local
182 using Matrix = typename GraphT::Matrix; in backpropagate() local
/external/gemmlowp/test/
Dtest.h60 Matrix() : Map(nullptr, 0, 0, 0) {} in Matrix() function
62 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); } in Matrix() function
64 Matrix(const Matrix& other) : Map(nullptr, 0, 0, 0) { *this = other; } in Matrix() function
Dbenchmark_all_sizes.cc53 class Matrix : public MatrixMap<tScalar, tOrder> { class
66 Matrix() : Map(nullptr, 0, 0, 0) {} in Matrix() function in gemmlowp::Matrix
68 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); } in Matrix() function in gemmlowp::Matrix
70 Matrix(const Matrix& other) : Map(nullptr, 0, 0, 0) { *this = other; } in Matrix() function in gemmlowp::Matrix
/external/llvm/include/llvm/CodeGen/PBQP/
DMath.h169 Matrix(unsigned Rows, unsigned Cols) : in Matrix() function
175 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() function
181 Matrix(const Matrix &M) in Matrix() function
187 Matrix(Matrix &&M) in Matrix() function
DReductionRules.h33 typedef typename GraphT::Matrix Matrix; in applyR1() typedef
77 typedef typename GraphT::Matrix Matrix; in applyR2() typedef
181 typedef typename GraphT::Matrix Matrix; in backpropagate() typedef
/external/llvm/docs/
DCodeGenerator.rst1935 .. _feat_reliable:
1937 Is Generally Reliable
1946 Assembly Parser
1956 Disassembler
1964 Inline Asm
1972 JIT Support
1985 .o File Writing
1999 Tail Calls
2008 Segmented Stacks
/external/skia/src/effects/colorfilters/
DSkMatrixColorFilter.cpp111 sk_sp<SkColorFilter> SkColorFilters::Matrix(const float array[20], Clamp clamp) { in Matrix() function in SkColorFilters
115 sk_sp<SkColorFilter> SkColorFilters::Matrix(const SkColorMatrix& cm, Clamp clamp) { in Matrix() function in SkColorFilters
/external/angle/src/common/
Dmatrix_utils.h87 Matrix(const std::vector<T> &elements, const unsigned int numRows, const unsigned int numCols) in Matrix() function
94 Matrix(const std::vector<T> &elements, const unsigned int size) in Matrix() function
101 Matrix(const T *elements, const unsigned int size) : mRows(size), mCols(size) in Matrix() function
/external/bazelbuild-rules_rust/examples/ffi/rust_calling_c/c/
Dmatrix.h25 } Matrix; typedef
/external/llvm/lib/CodeGen/
DAllocationOrder.cpp33 const LiveRegMatrix *Matrix) in AllocationOrder()
DRegAllocBase.h65 LiveRegMatrix *Matrix; variable
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAllocationOrder.cpp32 const LiveRegMatrix *Matrix) in AllocationOrder()
/external/skia/platform_tools/android/apps/jetski/src/main/java/org/skia/jetski/
DMatrix.java13 public class Matrix { class
19 public Matrix() { in Matrix() method in Matrix
29 public Matrix(float m0, float m4, float m8, float m12, in Matrix() method in Matrix
39 Matrix(long nativeInstance) { in Matrix() method in Matrix
/external/tensorflow/tensorflow/core/kernels/linalg/
Dmatrix_square_root_op.cc42 using Matrix = in ComputeMatrix() typedef
Dmatrix_logarithm_op.cc42 using Matrix = in ComputeMatrix() typedef
Dmatrix_exponential_op.cc42 using Matrix = in ComputeMatrix() typedef
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
DAllocationOrder.cpp31 const LiveRegMatrix *Matrix) { in create()

123456