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

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 104 int row = 0, col = 0; field in class:Charset_TestGenerator.CodesGenerator
118 col++;
119 if (col == 16) {
122 col = 0;
139 col++;
140 if (col == 80) {
143 col = 0;
153 buf[col] = (char) code;
156 col++;
157 if (col == 8)
190 int row = 0, col = 0; field in class:Charset_TestGenerator.Dumper
    [all...]
  /external/eigen/Eigen/src/Core/
Flagged.h 58 inline CoeffReturnType coeff(Index row, Index col) const
60 return m_matrix.coeff(row, col);
68 inline const Scalar& coeffRef(Index row, Index col) const
70 return m_matrix.const_cast_derived().coeffRef(row, col);
78 inline Scalar& coeffRef(Index row, Index col)
80 return m_matrix.const_cast_derived().coeffRef(row, col);
89 inline const PacketScalar packet(Index row, Index col) const
91 return m_matrix.template packet<LoadMode>(row, col);
95 inline void writePacket(Index row, Index col, const PacketScalar& x)
97 m_matrix.const_cast_derived().template writePacket<LoadMode>(row, col, x)
    [all...]
DenseCoeffsBase.h 87 * parameters \a row and \a col are in range.
94 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const
97 && col >= 0 && col < cols());
98 return derived().coeff(row, col);
111 EIGEN_STRONG_INLINE CoeffReturnType operator()(Index row, Index col) const
114 && col >= 0 && col < cols());
115 return derived().coeff(row, col);
208 EIGEN_STRONG_INLINE PacketReturnType packet(Index row, Index col) cons
503 const Index col = colIndexByOuterInner(outer,inner); local
546 const Index col = colIndexByOuterInner(outer,inner); local
    [all...]
ArrayWrapper.h 61 inline CoeffReturnType coeff(Index row, Index col) const
63 return m_expression.coeff(row, col);
66 inline Scalar& coeffRef(Index row, Index col)
68 return m_expression.const_cast_derived().coeffRef(row, col);
71 inline const Scalar& coeffRef(Index row, Index col) const
73 return m_expression.const_cast_derived().coeffRef(row, col);
92 inline const PacketScalar packet(Index row, Index col) const
94 return m_expression.template packet<LoadMode>(row, col);
98 inline void writePacket(Index row, Index col, const PacketScalar& x)
100 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x)
    [all...]
ForceAlignedAccess.h 49 inline const CoeffReturnType coeff(Index row, Index col) const
51 return m_expression.coeff(row, col);
54 inline Scalar& coeffRef(Index row, Index col)
56 return m_expression.const_cast_derived().coeffRef(row, col);
70 inline const PacketScalar packet(Index row, Index col) const
72 return m_expression.template packet<Aligned>(row, col);
76 inline void writePacket(Index row, Index col, const PacketScalar& x)
78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x);
Visitor.h 21 col = (UnrollCount-1) / Derived::RowsAtCompileTime, enumerator in enum:Eigen::internal::visitor_impl::__anon19494
28 visitor(mat.coeff(row, col), row, col);
99 Index row, col; member in struct:Eigen::internal::coeff_visitor
105 col = j;
125 this->col = j;
153 this->col = j;
168 * and puts in *row and *col its location.
175 DenseBase<Derived>::minCoeff(IndexType* row, IndexType* col) const
180 if (col) *col = minVisitor.col
    [all...]
  /frameworks/compile/libbcc/tools/build/
gen-sha1-stamp.py 78 col = 0
81 if col == 0:
83 elif col % 4 == 0:
88 col += 1
89 if col == 8:
91 col = 0
92 if col != 0:
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 28 const int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0);
30 const int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL;
66 v.col = mv->as_mv.col - ref->as_mv.col;
69 mvcost[1][v.col]) * weight, 7);
77 v.col = mv->as_mv.col - ref->as_mv.col;
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
error_concealment.c 29 int col; member in struct:ec_position
139 int row, col; local
159 for (col = 0; col < end_col; ++col)
165 (((first_blk_col + col) *
167 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap);
178 int row, col, rel_row, rel_col; local
186 col = (4 * b_col) << 3; /* Q3 */
190 new_col = col - bmi->mv.as_mv.col
288 int row, col; local
501 int row, col, i; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 35 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * Weight) >> 7;
43 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1])
54 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)])
67 x->ss[search_site_count].mv.col = 0;
76 x->ss[search_site_count].mv.col = 0;
82 x->ss[search_site_count].mv.col = 0;
88 x->ss[search_site_count].mv.col = -Len
    [all...]
  /external/libvpx/libvpx/vp8/common/
findnearmv.h 27 mvp->as_mv.col *= -1;
35 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
36 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
37 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
49 mv->as_mv.col = (mv->as_mv.col < mb_to_left_edge) ?
50 mb_to_left_edge : mv->as_mv.col;
51 mv->as_mv.col = (mv->as_mv.col > mb_to_right_edge)
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 229 int col = findColumn(columnName);
230 return getString(col);
256 int col = findColumn(columnName);
257 return getInt(col);
266 int col = findColumn(columnName);
267 return getBoolean(col);
300 int col = findColumn(columnName);
301 return getShort(col);
337 int col = findColumn(columnName);
338 return getTime(col);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TextLinkColors.cpp 90 for (const ColorValue* col = colorValues; col->cssValueId; ++col) {
91 if (col->cssValueId == cssValueId)
92 return col->color;
  /external/openfst/src/include/fst/script/
compile-impl.h 66 vector<char *> col; local
68 SplitToVector(line, separator.c_str(), &col, true);
69 if (col.size() == 0 || col[0][0] == '\0') // empty line
71 if (col.size() > 5 ||
72 (col.size() > 4 && accep) ||
73 (col.size() == 3 && !accep)) {
80 StateId s = StrToStateId(col[0]);
88 switch (col.size()) {
93 fst_.SetFinal(s, StrToWeight(col[1], true))
    [all...]
  /external/qemu/distrib/jpeg-6b/
jccolor.c 141 register JDIMENSION col; local
150 for (col = 0; col < num_cols; col++) {
161 outptr0[col] = (JSAMPLE)
165 outptr1[col] = (JSAMPLE)
169 outptr2[col] = (JSAMPLE)
188 register JDIMENSION col; local
197 for (col = 0; col < num_cols; col++)
234 register JDIMENSION col; local
290 register JDIMENSION col; local
329 register JDIMENSION col; local
381 register JDIMENSION col; local
440 register JDIMENSION col; local
452 int col = num_cols; local
    [all...]
  /external/jpeg/
jccolor.c 141 register JDIMENSION col; local
150 for (col = 0; col < num_cols; col++) {
161 outptr0[col] = (JSAMPLE)
165 outptr1[col] = (JSAMPLE)
169 outptr2[col] = (JSAMPLE)
197 register JDIMENSION col; local
204 for (col = 0; col < num_cols; col++)
236 register JDIMENSION col; local
288 register JDIMENSION col; local
347 register JDIMENSION col; local
359 int col = num_cols; local
    [all...]
  /external/eigen/test/
nomalloc.cpp 52 m2.col(0).noalias() = m1 * m1.col(0);
53 m2.col(0).noalias() -= m1.adjoint() * m1.col(0);
54 m2.col(0).noalias() -= m1 * m1.row(0).adjoint();
55 m2.col(0).noalias() -= m1.adjoint() * m1.row(0).adjoint();
59 m2.row(0).noalias() -= m1.col(0).adjoint() * m1;
60 m2.row(0).noalias() -= m1.col(0).adjoint() * m1.adjoint();
63 m2.col(0).noalias() = m1.template triangularView<Upper>() * m1.col(0)
    [all...]
eigen2support.cpp 41 VERIFY_IS_EQUAL((m1.col(0).start(1)), (m1.col(0).segment(0,1)));
42 VERIFY_IS_EQUAL((m1.col(0).template start<1>()), (m1.col(0).segment(0,1)));
43 VERIFY_IS_EQUAL((m1.col(0).end(1)), (m1.col(0).segment(rows-1,1)));
44 VERIFY_IS_EQUAL((m1.col(0).template end<1>()), (m1.col(0).segment(rows-1,1)));
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
AbstractTextureBlender.java 31 float oneMinusFactor = 1.0f - blendFactor, col; local
96 col = blendFactor * pixelColor[0];
97 result[0] = col < materialColor[0] ? col : materialColor[0];
98 col = blendFactor * pixelColor[1];
99 result[1] = col < materialColor[1] ? col : materialColor[1];
100 col = blendFactor * pixelColor[2];
101 result[2] = col < materialColor[2] ? col : materialColor[2];
    [all...]
  /external/ceres-solver/internal/ceres/
low_rank_inverse_hessian.cc 80 delta_x_history_.col(num_corrections_ - 1) = delta_x;
81 delta_gradient_history_.col(num_corrections_ - 1) = delta_gradient;
99 alpha(i) = delta_x_history_.col(i).dot(search_direction) /
101 search_direction -= alpha(i) * delta_gradient_history_.col(i);
139 const double beta = delta_gradient_history_.col(i).dot(search_direction) /
141 search_direction += delta_x_history_.col(i) * (alpha(i) - beta);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h 138 for (Index col = 0; col < rhs.cols(); col++) {
140 dst(row, col) = lhs.coeffDiag(row) * rhs(row, col);
146 const Index stop = lIt.col() + lIt.size();
147 for (Index col = 0; col < rhs.cols(); col++) {
149 Index k = lIt.col();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebNodeList.cpp 57 WebNodeList::WebNodeList(const PassRefPtr<NodeList>& col)
58 : m_private(static_cast<NodeList*>(col.leakRef()))
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 163 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
166 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
177 const Index col = RowsAtCompileTime == 1 ? index : 0; local
178 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
183 EIGEN_STRONG_INLINE const PacketScalar packet(Index row, Index col) const
189 ::run(row, col, m_lhs, m_rhs, res);
242 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res)
244 product_coeff_impl<DefaultTraversal, UnrollingIndex-1, Lhs, Rhs, RetScalar>::run(row, col, lhs, rhs, res);
245 res += lhs.coeff(row, UnrollingIndex) * rhs.coeff(UnrollingIndex, col);
253 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res
    [all...]
  /external/chromium_org/third_party/skia/src/images/
bmpdecoderhelper.cpp 190 uint8 col = pixels; local
194 col = pixels & 0xf;
196 col = pixels >> 4;
199 PutPixel(x++, y, col);
234 uint8 col = val; local
237 col = col & 0xf;
239 col >>= 4;
243 PutPixel(x++, y, col);
257 void BmpDecoderHelper::PutPixel(int x, int y, uint8 col) {
291 uint8 col; local
    [all...]
  /external/eigen/bench/
eig33.cpp 123 // evecs.col(k) = (base + Vector(-beta*scaledMat(2,0), -alpha*scaledMat(2,1), alpha*beta)).normalized();
125 // evecs.col(2) = evecs.col(0).cross(evecs.col(1)).normalized();
131 // evecs.col(0) = tmp.row(0).cross(tmp.row(1)).normalized();
135 // evecs.col(1) = tmp.row(0).cross(tmp.row(1)).normalized();
139 // evecs.col(2) = tmp.row(0).cross(tmp.row(1)).normalized();
151 evecs.col (2) = tmp.row (0).cross (tmp.row (1)).normalized ();
155 evecs.col(1) = tmp.row (0).cross(tmp.row (1));
156 Scalar n1 = evecs.col(1).norm()
    [all...]

Completed in 1027 milliseconds

1 23 4 5 6 7 8 91011>>