HomeSort by relevance Sort by last modified time
    Searched full:cols (Results 351 - 375 of 825) sorted by null

<<11121314151617181920>>

  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h 102 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } function in class:Eigen::SparseInnerVectorSet
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_subtract_sse2.asm 15 ; void vp9_subtract_block(int rows, int cols,
22 rows, cols, diff, diff_stride, src, src_stride, \
  /external/opencv/ml/src/
mlestimate.cpp 129 crVal->sampleIdxTrain->cols = crVal->samples_all - k;
131 crVal->sampleIdxEval->cols = k;
193 k = crVal->sampleIdxEval->cols;
462 if (sampleIdx->rows != 1 && sampleIdx->cols != 1)
465 s_len = sampleIdx->rows + sampleIdx->cols - 1;
614 crVal->sampleIdxEval->cols = 0;
615 crVal->sampleIdxTrain->cols = 0;
691 samples_all = ((tflag) ? trueData->rows : trueData->cols);
  /packages/apps/Browser/src/com/android/browser/
AutoFillProfileDatabase.java 98 final String[] cols = { local
112 return getDatabase(false).query(PROFILES_TABLE_NAME, cols, Profiles._ID + "=?", selectArgs,
  /packages/apps/Music/src/com/android/music/
VideoBrowserActivity.java 90 String[] cols = new String[] { local
104 cols, mWhereClause , null, mSortOrder);
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelPicker.java 53 String [] cols = new String [] { "_id", "title", "package", "name" }; local
54 MatrixCursor c = new MatrixCursor(cols);
  /prebuilts/tools/common/proguard/proguard4.7/docs/
index.html 24 document.write("<frameset rows=\"50,*\" framespacing=\"0\" frameborder=\"no\"><frame id=\"title\" name=\"title\" src=\"title.html\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" noresize /><frameset cols=\"120,*\" framespacing=\"0\" frameborder=\"no\"><frame id=\"sections\" name=\"sections\" src=\""+sections+"\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" noresize /><frame id=\"main\" name=\"main\" src=\""+main+"\" scrolling=\"auto\" marginwidth=\"10\" marginheight=\"10\" noresize /></frameset></frameset>");
44 cols="120,*"
  /external/ceres-solver/internal/ceres/
block_jacobian_writer.cc 156 bs->cols.resize(parameter_blocks.size());
160 bs->cols[i].size = parameter_blocks[i]->LocalSize();
161 bs->cols[i].position = cursor;
162 cursor += bs->cols[i].size;
block_random_access_sparse_matrix.cc 82 int* cols = tsm_->mutable_cols(); local
109 cols[pos] = col_layout[col_block_id] + c;
112 DCHECK_LT(cols[pos], tsm_->num_rows());
implicit_schur_complement_test.cc 76 const int num_col_blocks = bs->cols.size();
79 blocks[i - num_eliminate_blocks_] = bs->cols[i].size;
126 int num_sc_cols = lhs.cols();
  /external/chromium_org/chrome/browser/resources/net_internals/
export_view.html 36 <textarea cols=50 rows=5 placeholder="Explain what went wrong here. (These notes will be included in the dump file. Be sure to mention the specific URLs, so investigators know what to look for!)" id=export-view-user-comments></textarea>
  /external/chromium_org/chrome/browser/resources/sync_internals/
about.html 13 <textarea rows="10" cols="30" id="status-text"></textarea>
  /external/chromium_org/third_party/WebKit/ManualTests/
bugzilla-4840.html 23 <iframe style="width: 100%; height: 200px;" src="data:text/html,<frameset cols=%22*, *%22><frameset rows=%22*, *%22><frame src=%22about:blank%22><frame src=%22about:blank%22></frameset><frame src=%22about:blank%22></frameset>"></iframe>
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.idl 24 attribute long cols;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
download.php 46 echo '<textarea name="textfield" cols="80" rows="20" wrap="PHYSICAL">'.$result;
  /external/eigen/Eigen/src/Core/
DiagonalMatrix.h 56 inline Index cols() const { return diagonal().size(); } function in class:Eigen::DiagonalBase
277 if(cols() != rows()) return false;
279 for(Index j = 0; j < cols(); ++j)
284 for(Index j = 0; j < cols(); ++j)
Map.h 130 : int(Flags)&RowMajorBit ? this->cols()
161 * \param cols the number of columns of the matrix expression
164 inline Map(PointerArgType data, Index rows, Index cols, const StrideType& stride = StrideType())
165 : Base(cast_to_pointer_type(data), rows, cols), m_stride(stride)
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 117 Index cols() const { return mp_matrix ? mp_matrix->cols() : 0; } function in class:Eigen::IterativeSolverBase
138 return (mp_matrix && m_maxIterations<0) ? mp_matrix->cols() : m_maxIterations;
202 int rhsCols = b.cols();
  /external/eigen/debug/msvc/
eigen_autoexp_part.dat 128 cols: $c.m_storage.m_cols,
172 cols: $c.m_storage.m_cols,
216 cols: $c.ColsAtCompileTime,
260 cols: $c.ColsAtCompileTime,
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 59 Index rows = C.rows(), cols = C.cols(); local
61 TmpVec d(rows), e(rows), l(cols), p(rows), q(rows), r(rows);
124 SparseMatrix<Scalar,RowMajor> CINV(C.rows(), C.cols());
  /external/proguard/docs/
index.html 28 cols="120,*"
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxmodes.c 62 GrResizeWindow (FSwindow, si.cols, si.rows) ;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
__init__.py 36 if key[0:4] == 'ACS_' or key in ('LINES', 'COLS'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
__init__.py 36 if key[0:4] == 'ACS_' or key in ('LINES', 'COLS'):
  /external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/
index.html 76 <textarea id="log" rows="10" cols="60" readonly="readonly"></textarea>
79 <textarea id="json" rows="10" cols="60" readonly="readonly"></textarea>
85 <textarea id="trace" rows="10" cols="130" readonly="readonly"></textarea>

Completed in 642 milliseconds

<<11121314151617181920>>