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

1 2

  /external/dng_sdk/source/
dng_point.h 179 inline dng_point Transpose (const dng_point &a)
188 inline dng_point_real64 Transpose (const dng_point_real64 &a)
dng_rect.h 408 inline dng_rect Transpose (const dng_rect &a)
417 inline dng_rect_real64 Transpose (const dng_rect_real64 &a)
dng_matrix.cpp 998 dng_matrix Transpose (const dng_matrix &A)
1046 dng_matrix B = Transpose (A);
  /external/gemmlowp/internal/
dispatch_gemm_shape.h 37 TransposeType<T> Transpose(const T& t) {
82 dst.result_offset = Transpose(src.result_offset);
83 dst.result_mult_int = Transpose(src.result_mult_int);
95 dst.bias_vector = Transpose(src.bias_vector);
108 return std::make_tuple(Transpose(std::get<0>(t)));
114 return std::make_tuple(Transpose(std::get<0>(t)), Transpose(std::get<1>(t)));
120 return std::make_tuple(Transpose(std::get<0>(t)), Transpose(std::get<1>(t)),
121 Transpose(std::get<2>(t)))
    [all...]
output_neon.h 130 inline RegBlockInt32<4, 4> Transpose(const RegBlockInt32<4, 4>& src) {
150 DstType::kOrder == MapOrder::ColMajor ? src : Transpose(src);
177 const auto transpose_top = Transpose(top);
186 const auto transpose_bottom = Transpose(bottom);
212 const auto transpose_top_left = Transpose(top_left);
221 const auto transpose_bottom_left = Transpose(bottom_left);
231 const auto transpose_top_right = Transpose(top_right);
240 const auto transpose_bottom_right = Transpose(bottom_right);
380 inline RegBlockUint8<8, 8> Transpose(const RegBlockUint8<8, 8>& src) {
421 DstType::kOrder == MapOrder::ColMajor ? src : Transpose(src)
    [all...]
output_sse.h 141 inline RegBlockInt32<4, 4> Transpose(const RegBlockInt32<4, 4>& src) {
164 const auto transpose = Transpose(src); local
166 StoreInt32x4(dst->data(row + i, col), transpose.buf.reg[i]);
187 const auto transpose_top = Transpose(top);
196 const auto transpose_bottom = Transpose(bottom);
219 const auto transpose_top_left = Transpose(top_left);
228 const auto transpose_bottom_left = Transpose(bottom_left);
238 const auto transpose_top_right = Transpose(top_right);
248 const auto transpose_bottom_right = Transpose(bottom_right)
    [all...]
  /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:__anon30863::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:__anon30863::Sk4x4f
68 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon30863::Sk4x4f
100 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon30863::Sk4x4f
105 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon30863::Sk4x4f
137 inline void Sk4x4f::transpose(float fs[16]) const { function in class:__anon30863::Sk4x4f
146 inline void Sk4x4f::transpose(uint8_t bs[16]) const { function in class:__anon30863::Sk4x4f
    [all...]
  /external/eigen/Eigen/src/Core/
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...]
Transpose.h 18 struct traits<Transpose<MatrixType> > : public traits<MatrixType>
39 /** \class Transpose
42 * \brief Expression of the transpose of a matrix
44 * \tparam MatrixType the type of the object of which we are taking the transpose
46 * This class represents an expression of the transpose of a matrix.
47 * It is the return type of MatrixBase::transpose() and MatrixBase::adjoint()
50 * \sa MatrixBase::transpose(), MatrixBase::adjoint()
52 template<typename MatrixType> class Transpose
60 EIGEN_GENERIC_PUBLIC_INTERFACE(Transpose)
64 explicit inline Transpose(MatrixType& matrix) : m_matrix(matrix) {
172 DenseBase<Derived>::transpose() function in class:Eigen::DenseBase
184 DenseBase<Derived>::transpose() const function in class:Eigen::DenseBase
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix.h 50 // Transpose, Multiply on different-sized matrices) must make temporary copies
134 Matrix& Transpose() {
137 return Transpose(scratch_elements());
140 Matrix& Transpose(const Matrix& operand) {
144 return Transpose(operand.elements());
336 // Helpers for Transpose and Multiply operations that unify in-place and
338 Matrix& Transpose(const T* const* src) {
  /prebuilts/ndk/r11/sources/android/ndk_helper/
vecmath.h 873 Mat4 Transpose()
  /prebuilts/ndk/r13/sources/android/ndk_helper/
vecmath.h 873 Mat4 Transpose()
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 38 // transpose the product such that the result is column major
281 Transpose = StorageOrder==RowMajor,
282 ActualRows = Transpose ? MaxCols : MaxRows,
283 ActualCols = Transpose ? MaxRows : MaxCols
285 typedef typename conditional<Transpose,_RhsScalar,_LhsScalar>::type LhsScalar;
286 typedef typename conditional<Transpose,_LhsScalar,_RhsScalar>::type RhsScalar;
332 Transpose = StorageOrder==RowMajor
334 typedef typename conditional<Transpose,_RhsScalar,_LhsScalar>::type LhsScalar;
335 typedef typename conditional<Transpose,_LhsScalar,_RhsScalar>::type RhsScalar;
345 this->m_mc = Transpose ? cols : rows
    [all...]
  /external/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 288 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
289 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
291 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
296 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
297 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
299 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
395 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
400 N1Md.handleRemoveEdge(OldMMd, Transpose);
401 N2Md.handleRemoveEdge(OldMMd, !Transpose);
405 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
331 bool Transpose = N1Id != G.getEdgeNode1Id(EId);
336 N1Md.handleRemoveEdge(OldMMd, Transpose);
337 N2Md.handleRemoveEdge(OldMMd, !Transpose);
341 N1Md.handleAddEdge(MMd, Transpose);
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
utils.h 267 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
289 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
352 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) = delete;
368 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
409 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
461 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
512 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
566 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
636 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst)
705 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicBLAS.java 200 @IntDef({NO_TRANSPOSE, TRANSPOSE, CONJ_TRANSPOSE})
202 public @interface Transpose {}
226 public static final int TRANSPOSE = 112;
244 static void validateTranspose(@Transpose int Trans) {
245 if (Trans != NO_TRANSPOSE && Trans != TRANSPOSE &&
247 throw new RSRuntimeException("Invalid transpose passed to BLAS");
251 static void validateConjTranspose(@Transpose int Trans) {
254 throw new RSRuntimeException("Invalid transpose passed to BLAS");
311 * @param TransA The type of transpose applied to matrix A.
320 public void SGEMV(@Transpose int TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) (…)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp     [all...]

Completed in 1289 milliseconds

1 2