/external/chromium_org/third_party/WebKit/Source/core/css/ |
FontSize.cpp | 134 int col = (keyword - CSSValueXxSmall); local 135 return quirksMode ? quirksFontSizeTable[row][col] : strictFontSizeTable[row][col];
|
/external/eigen/test/ |
sparse_product.cpp | 18 VERIFY_IS_APPROX(m4=m2.col(c)*refMat2.col(c1).transpose(), refMat4=refMat2.col(c)*refMat2.col(c1).transpose()); 19 VERIFY_IS_APPROX(m4=refMat2.col(c1)*m2.col(c).transpose(), refMat4=refMat2.col(c1)*refMat2.col(c).transpose()); 27 VERIFY_IS_APPROX(m4=m2.row(r).transpose()*refMat2.col(c1).transpose(), refMat4=refMat2.row(r).transpose()*refMat2.col(c1).transpose()) [all...] |
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
fdjac1.h | 45 fjac.col(j) = (wa1-fvec)/h; 64 fjac.col(j).setZero(); 67 fjac.col(j).segment(start, length) = ( wa1.segment(start, length)-fvec.segment(start, length))/h;
|
/external/jpeg/ |
rdbmp.c | 127 register JDIMENSION col; local 138 for (col = cinfo->image_width; col > 0; col--) { 156 register JDIMENSION col; local 169 for (col = cinfo->image_width; col > 0; col--) { 194 JDIMENSION row, col; local 208 for (col = source->row_width; col > 0; col--) [all...] |
wrbmp.c | 78 register JDIMENSION col; local 92 for (col = cinfo->output_width; col > 0; col--) { 113 register JDIMENSION col; local 125 for (col = cinfo->output_width; col > 0; col--) { 351 register JDIMENSION col; local 370 for (col = dest->row_width; col > 0; col--) [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_findnearmv.c | 19 if (mv->col & 1) 20 mv->col += (mv->col > 0 ? -1 : 1);
|
/external/linux-tools-perf/util/ |
hist.h | 90 u16 hists__col_len(struct hists *self, enum hist_column col); 91 void hists__set_col_len(struct hists *self, enum hist_column col, u16 len); 92 bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
|
/external/qemu/distrib/jpeg-6b/ |
rdbmp.c | 127 register JDIMENSION col; local 138 for (col = cinfo->image_width; col > 0; col--) { 156 register JDIMENSION col; local 169 for (col = cinfo->image_width; col > 0; col--) { 194 JDIMENSION row, col; local 208 for (col = source->row_width; col > 0; col--) [all...] |
wrbmp.c | 78 register JDIMENSION col; local 92 for (col = cinfo->output_width; col > 0; col--) { 113 register JDIMENSION col; local 125 for (col = cinfo->output_width; col > 0; col--) { 351 register JDIMENSION col; local 370 for (col = dest->row_width; col > 0; col--) [all...] |
/frameworks/rs/driver/runtime/ |
rs_matrix.c | 174 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v) { 175 m->m[row * 4 + col] = v; 179 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col) { 180 return m->m[row * 4 + col]; 184 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v) { 185 m->m[row * 3 + col] = v; 189 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col) { 190 return m->m[row * 3 + col]; 194 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v) { 195 m->m[row * 2 + col] = v [all...] |
/frameworks/rs/scriptc/ |
rs_matrix.rsh | 31 * @param col 37 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v); 42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v); 47 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v); 54 * @param col 59 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col); 64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col); 69 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
|
/prebuilts/sdk/renderscript/include/ |
rs_matrix.rsh | 31 * @param col 37 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v); 42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v); 47 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v); 54 * @param col 59 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col); 64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col); 69 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RelativeLayoutConversionHelper.java | 250 Integer col = xToCol.get(view.getLeftEdge()); local 251 assert col != null; 255 view.mCol = col; 256 view.mColSpan = end - col; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
formatter.py | 376 self.col = 0 381 self.col = 0 386 self.col = 0 393 self.col = 0 400 self.col = 0 403 self.col = self.col + len(data) 409 col = self.col 414 if col + len(word) >= maxcol [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
formatter.py | 376 self.col = 0 381 self.col = 0 386 self.col = 0 393 self.col = 0 400 self.col = 0 403 self.col = self.col + len(data) 409 col = self.col 414 if col + len(word) >= maxcol [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseMatrix.h | 171 inline Scalar coeff(Index row, Index col) const 173 const Index outer = IsRowMajor ? row : col; 174 const Index inner = IsRowMajor ? col : row; 187 inline Scalar& coeffRef(Index row, Index col) 189 const Index outer = IsRowMajor ? row : col; 190 const Index inner = IsRowMajor ? col : row; 196 return insert(row,col); 201 return insert(row,col); 204 /** \returns a reference to a novel non zero coefficient with coordinates \a row x \a col. 216 EIGEN_DONT_INLINE Scalar& insert(Index row, Index col) 953 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::SparseMatrix::InnerIterator 986 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::SparseMatrix::ReverseInnerIterator [all...] |
/external/aac/libSBRdec/src/ |
sbrdec_drc.h | 139 int col,
|
/external/ceres-solver/include/ceres/internal/ |
numeric_diff.h | 145 parameter_jacobian.col(j) = 158 parameter_jacobian.col(j) -= 163 parameter_jacobian.col(j) -= 169 parameter_jacobian.col(j) *= one_over_delta;
|
/external/ceres-solver/internal/ceres/ |
block_random_access_crs_matrix.h | 68 int* col,
|
block_random_access_sparse_matrix.h | 70 int* col,
|
runtime_numeric_diff_cost_function.cc | 106 parameter_jacobian.col(j) = residuals; 117 parameter_jacobian.col(j) -= residuals; 121 parameter_jacobian.col(j) -= 127 parameter_jacobian.col(j) *= one_over_h;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texcompress.h | 49 _mesa_compressed_image_address(GLint col, GLint row, GLint img,
|
/external/chromium_org/third_party/sqlite/src/test/ |
fts3_common.tcl | 91 foreach col [lrange $E(*) 1 end] { 92 set c $E($col) 97 set es "Error at docid=$iDoc col=$iCol pos=$pos. Index is missing" 101 set es "Error at docid=$iDoc col=$iCol pos=$pos. Index " 148 # [$docid ?$col[$off1 $off2...]?...] 197 foreach col $ret($docid) { 198 foreach {iCol lPos} $col {}
|
/external/eigen/Eigen/src/Core/ |
CwiseUnaryView.h | 112 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const 114 return derived().functor()(derived().nestedExpression().coeff(row, col)); 122 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col) 124 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
|
/external/eigen/Eigen/src/Eigenvalues/ |
ComplexEigenSolver.h | 277 m_matX.coeffRef(i,k) -= (m_schur.matrixT().row(i).segment(i+1,k-i-1) * m_matX.col(k).segment(i+1,k-i-1)).value(); 294 m_eivec.col(k).normalize(); 312 m_eivec.col(i).swap(m_eivec.col(k));
|