/external/chromium_org/third_party/libjpeg_turbo/ |
tjunittest.c | 92 int index, row, col, halfway=16; local 99 for(col=0; col<w; col++) 101 if(flags&TJFLAG_BOTTOMUP) index=(h-row-1)*w+col; 102 else index=row*w+col; 103 if(((row/8)+(col/8))%2==0) buf[index]=(row<halfway)? 255:0; 112 for(col=0; col<w; col++ 164 int index, row, col, retval=1; local 240 int row, col; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
mcomp.c | 36 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; 44 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) 55 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) 68 x->ss[search_site_count].mv.col = 0; 77 x->ss[search_site_count].mv.col = 0; 83 x->ss[search_site_count].mv.col = 0; 89 x->ss[search_site_count].mv.col = -Len [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...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ |
findnearmv.h | 31 mvp->as_mv.col *= -1; 39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) 40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; 41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) 42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; 53 mv->as_mv.col = (mv->as_mv.col < mb_to_left_edge) ? 54 mb_to_left_edge : mv->as_mv.col; 55 mv->as_mv.col = (mv->as_mv.col > mb_to_right_edge) [all...] |
/external/libvpx/libvpx/vp8/common/ |
findnearmv.h | 31 mvp->as_mv.col *= -1; 39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) 40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; 41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) 42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; 53 mv->as_mv.col = (mv->as_mv.col < mb_to_left_edge) ? 54 mb_to_left_edge : mv->as_mv.col; 55 mv->as_mv.col = (mv->as_mv.col > mb_to_right_edge) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
findnearmv.h | 31 mvp->as_mv.col *= -1; 39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) 40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; 41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) 42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; 53 mv->as_mv.col = (mv->as_mv.col < mb_to_left_edge) ? 54 mb_to_left_edge : mv->as_mv.col; 55 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/chromium_org/third_party/libvpx/source/libvpx/vp9/common/ |
vp9_tile_common.c | 29 void vp9_tile_set_col(TileInfo *tile, const VP9_COMMON *cm, int col) { 30 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols); 31 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols); 34 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) { 36 vp9_tile_set_col(tile, cm, col);
|
/external/deqp/framework/common/ |
tcuPixelFormat.hpp | 91 inline RGBA convertColor (const RGBA& col) const 93 return RGBA(convertChannel(col.getRed(), redBits), 94 convertChannel(col.getGreen(), greenBits), 95 convertChannel(col.getBlue(), blueBits), 96 alphaBits ? convertChannel(col.getAlpha(), alphaBits) : 0xff);
|
/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 | 57 m2.col(0).noalias() = m1 * m1.col(0); 58 m2.col(0).noalias() -= m1.adjoint() * m1.col(0); 59 m2.col(0).noalias() -= m1 * m1.row(0).adjoint(); 60 m2.col(0).noalias() -= m1.adjoint() * m1.row(0).adjoint(); 64 m2.row(0).noalias() -= m1.col(0).adjoint() * m1; 65 m2.row(0).noalias() -= m1.col(0).adjoint() * m1.adjoint(); 68 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)));
|
product_syrk.cpp | 77 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(m1.col(c),s1)._expression()), 78 ((s1 * m1.col(c) * m1.col(c).adjoint()).eval().template triangularView<Lower>().toDenseMatrix())); 81 VERIFY_IS_APPROX((m2.template selfadjointView<Upper>().rankUpdate(m1.col(c),s1)._expression()), 82 ((s1 * m1.col(c) * m1.col(c).adjoint()).eval().template triangularView<Upper>().toDenseMatrix())); 84 VERIFY_IS_APPROX((rm2.template selfadjointView<Upper>().rankUpdate(m1.col(c),s1)._expression()), 85 ((s1 * m1.col(c) * m1.col(c).adjoint()).eval().template triangularView<Upper>().toDenseMatrix())); 87 VERIFY_IS_APPROX((m2.template triangularView<Upper>() += s1 * m3.col(c) * m1.col(c).adjoint()).nestedExpression() [all...] |
/external/libhevc/decoder/ |
ihevcd_deblk.c | 119 WORD32 col, row; local 235 for(col = 0; col < ctb_size / 8; col++) 240 * shift = (col & ((MAX_CTB_SIZE >> log2_ctb_size) - 1)) << (log2_ctb_size - 1); 245 shift = (col & 1) << (log2_ctb_size - 1); 282 if(0 == col) 292 pu1_qp[col - 1 - qp_strd]; 297 pu1_qp[col - qp_strd]; 301 if(0 == col) [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
litlint.py | 50 msg, col = LintLine(s) 54 arrow = (col-1) * ' ' + '^' 55 sys.stderr.write(errorMsg.format(p, i, col, msg, s, arrow))
|
/external/ceres-solver/internal/ceres/ |
low_rank_inverse_hessian.cc | 111 delta_x_history_.col(next) = delta_x; 112 delta_gradient_history_.col(next) = delta_gradient; 132 const double alpha_i = delta_x_history_.col(*it).dot(search_direction) / 134 search_direction -= alpha_i * delta_gradient_history_.col(*it); 179 const double beta = delta_gradient_history_.col(*it).dot(search_direction) / 181 search_direction += delta_x_history_.col(*it) * (alpha(*it) - 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/eigen/Eigen/src/Core/ |
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);
|
/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/pdfium/core/src/fxge/dib/ |
fx_dib_main.cpp | 329 for (int col = 0; col < m_Width; col ++) {
404 for (int col = 0; col < width; col ++) {
405 if (src_scan[(src_left + col) / 8] & (1 << (7 - (src_left + col) % 8))) {
406 dest_scan[(dest_left + col) / 8] |= 1 << (7 - (dest_left + col) % 8); [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...] |