HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 176 - 200 of 887) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/eigen/Eigen/src/Core/
CwiseUnaryOp.h 101 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
103 return derived().functor()(derived().nestedExpression().coeff(row, col));
107 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(row, col));
  /external/eigen/Eigen/src/Householder/
BlockHouseholder.h 34 triFactor.col(i).head(i).noalias() = -hCoeffs(i) * vectors.block(i, 0, rs, i).adjoint()
35 * vectors.col(i).tail(rs);
38 triFactor.col(i).head(i) = triFactor.block(0,0,i,i).template triangularView<Upper>()
39 * triFactor.col(i).head(i);
  /external/eigen/test/
schur_complex.cpp 27 for(int col = 0; col < row; ++col) {
28 VERIFY(T(row,col) == (typename MatrixType::Scalar)0);
schur_real.cpp 23 for(int col = 0; col < row - 1; ++col) {
24 VERIFY(T(row,col) == Scalar(0));
  /external/icu4c/test/intltest/
canittst.h 45 UnicodeString collectionToString(Hashtable *col);
46 //static UnicodeString collectionToString(Collection col);
  /external/jpeg/
rdtarga.c 179 register JDIMENSION col; local
182 for (col = cinfo->image_width; col > 0; col--) {
196 register JDIMENSION col; local
200 for (col = cinfo->image_width; col > 0; col--) {
217 register JDIMENSION col; local
220 for (col = cinfo->image_width; col > 0; col--)
244 register JDIMENSION col; local
    [all...]
jquant1.c 468 JDIMENSION col; local
475 for (col = width; col > 0; col--) {
498 JDIMENSION col; local
504 for (col = width; col > 0; col--) {
528 JDIMENSION col; local
543 for (col = width; col > 0; col--)
581 JDIMENSION col; local
631 JDIMENSION col; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
rdtarga.c 179 register JDIMENSION col; local
182 for (col = cinfo->image_width; col > 0; col--) {
196 register JDIMENSION col; local
200 for (col = cinfo->image_width; col > 0; col--) {
217 register JDIMENSION col; local
220 for (col = cinfo->image_width; col > 0; col--)
244 register JDIMENSION col; local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
MacroGroup.java 53 Collection<Macro> col = Collections.unmodifiableList(macros); local
54 Iterator<Macro> iter = col.iterator();
77 Collection<MacroGroup> col = Collections.unmodifiableList(macroGroups); local
78 Iterator<MacroGroup> iter = col.iterator();
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.c 268 u32 row, col; local
274 col = mbNum % width;
279 image->luma = (u8*)(image->data + col * 16 + tmp * 256);
280 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8);
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 118 res.col(0) = (_expression().col(1) * other.coeff(2) - _expression().col(2) * other.coeff(1)).conjugate();
119 res.col(1) = (_expression().col(2) * other.coeff(0) - _expression().col(0) * other.coeff(2)).conjugate();
120 res.col(2) = (_expression().col(0) * other.coeff(1) - _expression().col(1) * other.coeff(0)).conjugate();
  /external/eigen/Eigen/src/Eigen2Support/
SVD.h 124 m_sigma[k] = matA.col(k).end(m-k).norm();
129 matA.col(k).end(m-k) /= m_sigma[k];
140 Scalar t = matA.col(k).end(m-k).eigen2_dot(matA.col(j).end(m-k)); // FIXME dot product or cwise prod + .sum() ??
142 matA.col(j).end(m-k) += t * matA.col(k).end(m-k);
152 m_matU.col(k).end(m-k) = matA.col(k).end(m-k);
172 matA.col(j).end(m-k-1) += (-e[j]/e[k+1]) * work.end(m-k-1);
177 m_matV.col(k).end(n-k-1) = e.end(n-k-1)
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 145 int col; local
157 for (col = 0; col < cols; col++) {
160 int v = p_src[col];
163 if (abs(v - p_src[col + i * pitch]) > flimit)
166 kernel += kernel5[2 + i] * p_src[col + i * pitch];
171 p_dst[col] = v;
181 for (col = 0; col < cols; col++)
    [all...]
vp9_mvref_common.c 139 mv.as_mv.col *= -1;
177 mi_col + mv->col < cm->cur_tile_mi_col_start ||
179 mi_col + mv->col >= cm->cur_tile_mi_col_end);
207 const MODE_INFO *const candidate_mi = xd->mi_8x8[mv_ref->col + mv_ref->row
216 mv_ref->col, block_idx));
222 mv_ref->col, block_idx));
234 const MB_MODE_INFO *const candidate = &xd->mi_8x8[mv_ref->col +
264 const MB_MODE_INFO *const candidate = &xd->mi_8x8[mv_ref->col +
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FixedTableLayout.cpp 86 // iterate over all <col> elements
92 for (RenderTableCol* col = m_table->firstColumn(); col; col = col->nextColumn()) {
94 // so that if we call setPreferredWidthsDirty(true) on a col or one of its descendants, we'll mark it's
96 col->clearPreferredLogicalWidthsDirtyBits();
99 if (col->isTableColumnGroupWithColumnChildren())
102 Length colStyleLogicalWidth = col->style()->logicalWidth();
107 unsigned span = col->span()
    [all...]
  /external/eigen/Eigen/src/SparseCore/
MappedSparseMatrix.h 66 inline Scalar coeff(Index row, Index col) const
68 const Index outer = IsRowMajor ? row : col;
69 const Index inner = IsRowMajor ? col : row;
85 inline Scalar& coeffRef(Index row, Index col)
87 const Index outer = IsRowMajor ? row : col;
88 const Index inner = IsRowMajor ? col : row;
134 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::MappedSparseMatrix::InnerIterator
165 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::MappedSparseMatrix::ReverseInnerIterator
  /external/eigen/test/eigen2/
eigen2_submatrices.cpp 72 //check row() and col()
73 VERIFY_IS_APPROX(m1.col(c1).transpose(), m1.transpose().row(c1));
74 VERIFY_IS_APPROX(square.row(r1).eigen2_dot(m1.col(c1)), (square.lazy() * m1.conjugate())(r1,c1));
75 //check operator(), both constant and non-constant, on row() and col()
77 m1.col(c1) += s1 * m1.col(c2);
85 VERIFY_IS_APPROX(m1.col(c1), bc1);
131 VERIFY(ei_real(ones.col(c1).sum()) == RealScalar(rows));
134 VERIFY(ei_real(ones.col(c1).eigen2_dot(ones.col(c2))) == RealScalar(rows))
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 146 inline Scalar coeff(Index row, Index col) const {
147 const Index outer = IsRowMajor ? row : col;
148 const Index inner = IsRowMajor ? col : row;
195 inline Scalar& coeffRef(Index row, Index col) {
196 const Index outer = IsRowMajor ? row : col;
197 const Index inner = IsRowMajor ? col : row;
206 if (col > row) //upper matrix
212 if (col < row) //lower matrix
240 inline Scalar coeffLower(Index row, Index col) const {
241 const Index outer = IsRowMajor ? row : col;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_syswm.c 66 int row, col;
170 for ( col=0; col<icon->w; ++col ) {
171 if ( (col%8) == 0 ) {
192 for ( col=0; col<mask_pitch; ++col ) {
  /frameworks/base/core/java/android/util/
DayOfMonthCursor.java 63 public void setSelectedRowColumn(int row, int col) {
65 mColumn = col;
  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthCursor.java 65 public void setSelectedRowColumn(int row, int col) {
67 mColumn = col;
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 311 for (int col = 0; col < width; ++col) {
312 int idx = row * width + col;
315 if ((row & 1) == 0 && (col & 1) == 0) {
316 int offset = row / 2 * width + col / 2 * 2;
326 for (int col = 0; col < width; col += 2) {
327 int idx = row * width + col;
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
writesrc.c 104 int32_t i, col; local
126 for(i=col=0; i<length; ++i, ++col) {
128 if(col<16) {
132 col=0;
  /external/e2fsprogs/debugfs/
ls.c 37 int col; member in struct:list_dir_struct
113 if (ls->col + thislen > 80) {
115 ls->col = 0;
118 ls->col += thislen;
166 ls.col = 0;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
Scaling.h 98 if ( Dc(it.col()) < abs(it.value()) )
99 Dc(it.col()) = abs(it.value());
119 it.valueRef() = it.value()/( Dr(it.row()) * Dc(it.col()) );
124 if ( DcRes(it.col()) < abs(it.value()) )
125 DcRes(it.col()) = abs(it.value());

Completed in 1031 milliseconds

1 2 3 4 5 6 78 91011>>