OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:blockCols
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/Core/
Block.h
23
* \param
BlockCols
the number of columns of the block we are taking at compile time (optional)
50
template<typename XprType, int BlockRows, int
BlockCols
, bool InnerPanel, bool HasDirectAccess>
51
struct traits<Block<XprType, BlockRows,
BlockCols
, InnerPanel, HasDirectAccess> > : traits<XprType>
62
ColsAtCompileTime = MatrixCols == 0 ? 0 :
BlockCols
,
66
MaxColsAtCompileTime =
BlockCols
==0 ? 0
97
template<typename XprType, int BlockRows, int
BlockCols
, bool InnerPanel, bool HasDirectAccess> class Block
98
: public internal::dense_xpr_base<Block<XprType, BlockRows,
BlockCols
, InnerPanel, HasDirectAccess> >::type
111
// It is a row if and only if BlockRows==1 and
BlockCols
==XprType::ColsAtCompileTime,
112
// and it is a column if and only if BlockRows==XprType::RowsAtCompileTime and
BlockCols
==1,
115
m_startRow( (BlockRows==1) && (
BlockCols
==XprType::ColsAtCompileTime) ? i : 0)
[
all
...]
/external/eigen/Eigen/src/Core/products/
Parallelizer.h
128
Index
blockCols
= (cols / threads) & ~Index(0x3);
139
Index c0 = i*
blockCols
;
140
Index actualBlockCols = (i+1==threads) ? cols-c0 :
blockCols
;
/external/eigen/Eigen/src/plugins/
BlockMethods.h
43
* \param
blockCols
the number of columns in the block
54
inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index
blockCols
)
56
return Block<Derived>(derived(), startRow, startCol, blockRows,
blockCols
);
60
inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index
blockCols
) const
62
return Block<const Derived>(derived(), startRow, startCol, blockRows,
blockCols
);
519
* The template parameters \a BlockRows and \a
BlockCols
are the number of
533
template<int BlockRows, int
BlockCols
>
534
inline Block<Derived, BlockRows,
BlockCols
> block(Index startRow, Index startCol)
536
return Block<Derived, BlockRows,
BlockCols
>(derived(), startRow, startCol);
540
template<int BlockRows, int
BlockCols
>
[
all
...]
/frameworks/native/libs/gui/tests/
CpuConsumer_test.cpp
312
const int
blockCols
= w / blockWidth;
351
const int
blockCols
= w / blockWidth;
394
const int
blockCols
= w / blockWidth;
Completed in 768 milliseconds