OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:blockRows
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/Core/
Block.h
22
* \param
BlockRows
the number of rows 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>
61
RowsAtCompileTime = MatrixRows == 0 ? 0 :
BlockRows
,
63
MaxRowsAtCompileTime =
BlockRows
==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
129
Index
blockRows
= (rows / threads) & ~Index(0x7);
136
Index r0 = i*
blockRows
;
137
Index actualBlockRows = (i+1==threads) ? rows-r0 :
blockRows
;
/external/eigen/Eigen/src/plugins/
BlockMethods.h
42
* \param
blockRows
the number of rows 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
311
const int
blockRows
= h / blockHeight;
350
const int
blockRows
= h / blockHeight;
393
const int
blockRows
= h / blockHeight;
Completed in 158 milliseconds