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

1 2 3 4 5 6 7 8 910

  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 22 * Test cases for {@link Tables#transpose}.
32 Table<String, Integer, Character> table = Tables.transpose(original);
40 assertSame(original, Tables.transpose(Tables.transpose(original)));
45 Table<String, Integer, Character> transpose = Tables.transpose(original); local
47 assertEquals((Character) 'a', transpose.get("foo", 1));
52 Table<String, Integer, Character> transpose = Tables.transpose(original); local
53 transpose.put("foo", 1, 'a')
59 Table<String, Integer, Character> transpose = Tables.transpose(original); local
    [all...]
  /external/strace/tests/
unix-pair-sendto-recvfrom.c 39 transpose(char *str, int len) function
70 transpose(av[1], len);
81 transpose(av[1], len);
unix-pair-send-recv.c 68 transpose(char *str, const size_t len) function
99 transpose(buf1, len);
  /external/strace/tests-m32/
unix-pair-sendto-recvfrom.c 39 transpose(char *str, int len) function
70 transpose(av[1], len);
81 transpose(av[1], len);
unix-pair-send-recv.c 68 transpose(char *str, const size_t len) function
99 transpose(buf1, len);
  /external/strace/tests-mx32/
unix-pair-sendto-recvfrom.c 39 transpose(char *str, int len) function
70 transpose(av[1], len);
81 transpose(av[1], len);
unix-pair-send-recv.c 68 transpose(char *str, const size_t len) function
99 transpose(buf1, len);
  /frameworks/rs/
rsMatrix2x2.cpp 61 void Matrix2x2::transpose() { function in class:android::renderscript::Matrix2x2
rsMatrix3x3.cpp 69 void Matrix3x3::transpose() { function in class:android::renderscript::Matrix3x3
  /external/deqp/framework/common/
tcuMatrixUtil.hpp 37 Matrix<T, Cols, Rows> transpose (const Matrix<T, Rows, Cols>& mat);
61 inline Matrix<T, Cols, Rows> transpose (const Matrix<T, Rows, Cols>& mat) function in namespace:tcu
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 59 JacobiRotation transpose() const { using numext::conj; return JacobiRotation(m_c, -conj(m_s)); } function in class:Eigen::JacobiRotation
297 internal::apply_rotation_in_the_plane(x, y, j.transpose());
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
HexagonUtils.h 82 std::vector<Type> transpose(uint32_t height, uint32_t width, const Type* input) { function in namespace:android::hardware::neuralnetworks::V1_0::implementation::hexagon
  /packages/apps/Launcher3/tests/src/com/android/launcher3/util/
FocusLogicTest.java 57 int[][] map = transpose(new int[][] {
70 int[][] map = transpose(new int[][] {
84 int[][] map = transpose(new int[][] {
95 map = transpose(new int[][] {
110 int[][] map = transpose(new int[][] {
122 map = transpose(new int[][] {
134 map = transpose(new int[][] {
146 map = transpose(new int[][] {
157 map = transpose(new int[][] {
167 map = transpose(new int[][]
246 private int[][] transpose(int[][] m) { method in class:FocusLogicTest
    [all...]
  /external/eigen/Eigen/src/Core/
SolverBase.h 32 * x = dec.transpose().solve(b); // solve A^T * x = b
36 * \warning Currently, any other usage of transpose() and adjoint() are not supported and will produce compilation errors.
81 /** \internal the return type of transpose() */
82 typedef typename internal::add_const<Transpose<const Derived> >::type ConstTransposeReturnType;
86 * \code x = dec.transpose().solve(b); \endcode
90 inline ConstTransposeReturnType transpose() const function in class:Eigen::SolverBase
105 * For real scalar types, this function is equivalent to transpose().
107 * \sa transpose(), solve()
111 return AdjointReturnType(derived().transpose());
Transpositions.h 108 inline Transpose<TranspositionsBase> inverse() const
109 { return Transpose<TranspositionsBase>(derived()); }
112 inline Transpose<TranspositionsBase> transpose() const function in class:Eigen::TranspositionsBase
113 { return Transpose<TranspositionsBase>(derived()); }
362 struct traits<Transpose<TranspositionsBase<Derived> > >
369 class Transpose<TranspositionsBase<TranspositionsDerived> >
375 explicit Transpose(const TranspositionType& t) : m_transpositions(t) {}
384 const Product<OtherDerived, Transpose, AliasFreeProduct>
385 operator*(const MatrixBase<OtherDerived>& matrix, const Transpose& trt
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.h 55 struct pipe_sampler_view *transpose; member in struct:vl_idct
73 struct pipe_sampler_view *intermediate, *transpose; member in struct:vl_idct_buffer::__anon29464::__anon29465
96 struct pipe_sampler_view *transpose);
  /external/skia/src/core/
Sk4x4f.h 18 static Sk4x4f Transpose(const Sk4f&, const Sk4f&, const Sk4f&, const Sk4f&);
19 static Sk4x4f Transpose(const float[16]);
20 static Sk4x4f Transpose(const uint8_t[16]);
22 void transpose(Sk4f* x, Sk4f* y, Sk4f* z, Sk4f* w) const { function in struct:__anon33975::Sk4x4f
23 auto t = Transpose(r,g,b,a);
29 void transpose( float[16]) const;
30 void transpose(uint8_t[16]) const;
35 inline Sk4x4f Sk4x4f::Transpose(const Sk4f& x, const Sk4f& y, const Sk4f& z, const Sk4f& w) {
44 inline Sk4x4f Sk4x4f::Transpose(const float fs[16]) {
45 return Transpose(Sk4f::Load(fs+0), Sk4f::Load(fs+4), Sk4f::Load(fs+8), Sk4f::Load(fs+12))
59 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon33975::Sk4x4f
68 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon33975::Sk4x4f
100 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon33975::Sk4x4f
105 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon33975::Sk4x4f
137 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon33975::Sk4x4f
146 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon33975::Sk4x4f
    [all...]
  /external/skqp/src/core/
Sk4x4f.h 18 static Sk4x4f Transpose(const Sk4f&, const Sk4f&, const Sk4f&, const Sk4f&);
19 static Sk4x4f Transpose(const float[16]);
20 static Sk4x4f Transpose(const uint8_t[16]);
22 void transpose(Sk4f* x, Sk4f* y, Sk4f* z, Sk4f* w) const { function in struct:__anon34644::Sk4x4f
23 auto t = Transpose(r,g,b,a);
29 void transpose( float[16]) const;
30 void transpose(uint8_t[16]) const;
35 inline Sk4x4f Sk4x4f::Transpose(const Sk4f& x, const Sk4f& y, const Sk4f& z, const Sk4f& w) {
44 inline Sk4x4f Sk4x4f::Transpose(const float fs[16]) {
45 return Transpose(Sk4f::Load(fs+0), Sk4f::Load(fs+4), Sk4f::Load(fs+8), Sk4f::Load(fs+12))
59 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon34644::Sk4x4f
68 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon34644::Sk4x4f
100 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon34644::Sk4x4f
105 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon34644::Sk4x4f
137 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon34644::Sk4x4f
146 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon34644::Sk4x4f
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
transpose_folding.cc 116 HloInstruction& transpose = *convolution.mutable_operand(kLhsIdx); local
117 const auto& transpose_dimensions = transpose.dimensions();
118 HloInstruction& transpose_operand = *transpose.mutable_operand(0);
121 // numbers. We need to apply the transpose permutation to the original shape
140 HloInstruction& transpose = *convolution.mutable_operand(kRhsIdx); local
141 const auto& transpose_dimensions = transpose.dimensions();
142 HloInstruction& transpose_operand = *transpose.mutable_operand(0);
145 // need to apply the transpose permutation to the original shape to figure
  /external/tensorflow/tensorflow/contrib/lite/kernels/
transpose.cc 27 namespace transpose { namespace in namespace:tflite::ops::builtin
29 // This file has two implementations of Transpose.
55 "Transpose op permutations array is out of bounds.");
76 "Transpose op only supports 1D-4D input arrays.");
111 type::Transpose(GetTensorData<scalar>(op_context.input), \
139 "Type is currently not supported by Transpose.");
147 } // namespace transpose
150 static TfLiteRegistration r = {nullptr, nullptr, transpose::Prepare,
151 transpose::Eval<transpose::kReference>}
    [all...]
  /external/tensorflow/tensorflow/python/ops/linalg/
linalg_impl.py 54 transpose = array_ops.matrix_transpose variable
110 The adjoint (a.k.a. Hermitian transpose a.k.a. conjugate transpose) of
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrix.java 257 * Returns the transpose of this matrix.
259 * @return transpose matrix
261 BigMatrix transpose(); method in interface:BigMatrix
  /external/autotest/client/deps/webgl_mpd/src/resources/
J3DIMath.js 55 in boolean transpose);
57 void transpose(); // replace the matrix with its transpose
223 J3DIMatrix4.prototype.setUniform = function(ctx, loc, transpose)
253 ctx.uniformMatrix4fv(loc, transpose, J3DIMatrix4.setUniformWebGLArray);
279 J3DIMatrix4.prototype.transpose = function() method in class:J3DIMatrix4
810 transposedInversePerspectiveMatrix.transpose();
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseAssign.h 79 const bool transpose = (DstEvaluatorType::Flags & RowMajorBit) != (SrcEvaluatorType::Flags & RowMajorBit); local
81 if ((!transpose) && src.isRValue())
103 "the transpose operation is supposed to be handled in SparseMatrix::operator=");
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
gemm_thunk.cc 38 transpose(needs_transpose),
43 bool transpose; // Whether this matrix needs to be transposed. member in struct:xla::gpu::__anon38906::MatrixDescriptor
53 DCHECK(!output_matrix.transpose);
59 auto lhs_transpose = lhs_matrix.transpose ? se::blas::Transpose::kTranspose
60 : se::blas::Transpose::kNoTranspose;
61 auto rhs_transpose = rhs_matrix.transpose ? se::blas::Transpose::kTranspose
62 : se::blas::Transpose::kNoTranspose;
63 auto k = lhs_matrix.transpose ? lhs_matrix.num_rows : lhs_matrix.num_cols
    [all...]

Completed in 442 milliseconds

1 2 3 4 5 6 7 8 910