HomeSort by relevance Sort by last modified time
    Searched full:rows (Results 476 - 500 of 2399) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 120 m_temp(matrix.rows()),
123 if(matrix.rows()<2)
128 m_hCoeffs.resize(matrix.rows()-1,1);
153 if(matrix.rows()<2)
158 m_hCoeffs.resize(matrix.rows()-1,1);
236 .setLength(m_matrix.rows() - 1)
294 assert(matA.rows()==matA.cols());
295 Index n = matA.rows();
357 Index n = result.rows();
362 Index rows() const { return m_hess.packedMatrix().rows(); function in struct:Eigen::internal::HessenbergDecompositionMatrixHReturnType
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
postproc_sse2.asm 119 movsxd rcx, DWORD PTR arg(6) ;rows in a macroblock
123 ;load current and next 2 rows
130 ;load above 2 rows
234 ; int pitch, int rows, int cols,int flimit)
263 ;rows +=8;
273 ; this copies the last row down into the border 8 rows
290 ; this copies the first row up into the border 8 rows
440 cmp edx, dword arg(2) ;rows
463 ; int pitch, int rows, int cols,int flimit)
487 ;for(r=0;r<rows;r++
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.tablesorter.min.js 2 (function($){$.extend({tablesorter:new function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'.',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}var rows=table.tBodies[0].rows;if(table.tBodies[0].rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,cells[i]);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,node){var l=parsers.length;for(var i=1;i<l;i++){if(parsers[i].is($.trim(getElementText(table.config,node)),table,node)){return parsers[i];}}return parsers[0];}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=table.tBodies[0].rows[i],cols=[];cache.row.push($(c));for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c.cells[j]),table,c.cells[j]));}cols.push(i);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){if(!node)return"";var t="";if(config.textExtraction=="simple"){if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){t=node.childNodes[0].innerHTML;}else{t=node.innerHTML;}}else{if(typeof(config.textExtraction)=="function"){t=config.textExtraction(node);}else{t=$(node).text();}}return t;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){rows.push(r[n[i][checkCell]]);if(!table.config.appender){var o=r[n (…)
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 42 eigen_assert(A.rows() == A.cols());
88 MatrixType sqrtT = MatrixType::Zero(m_A.rows(), m_A.rows());
102 const Index size = m_A.rows();
121 const Index size = m_A.rows();
270 eigen_assert(A.rows() == A.cols());
299 result.resize(m_A.rows(), m_A.cols());
301 for (Index i = 0; i < m_A.rows(); i++) {
363 eigen_assert(A.rows() == A.cols());
375 MatrixType sqrtT = MatrixType::Zero(m_A.rows(), m_A.rows())
458 Index rows() const { return m_src.rows(); } function in class:Eigen::MatrixSquareRootReturnValue
    [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 223 _layer_sizes->cols != 1 && _layer_sizes->rows != 1 ||
230 l_count = _layer_sizes->rows + _layer_sizes->cols - 1;
282 _inputs->rows != _outputs->rows )
284 "of the same type and have the same number of rows" );
293 n = dn0 = _inputs->rows;
326 calc_activ_func( layer_out, _w.data.db + _w.rows*_w.cols );
353 for( i = 0; i < _src->rows; i++, src += step, dst += cols )
362 for( i = 0; i < _src->rows; i++, src += step, dst += cols )
381 for( i = 0; i < _src->rows; i++, src += cols, dst += step
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 112 height = img->rows;
245 h = img->rows;
512 height = image->rows;
789 if( !CV_IS_MAT_CONT( mat->type ) || (mat->rows != 1 && mat->cols != 1) )
798 mat->rows + mat->cols - 1, &lines_header, &lines_block ));
830 if( mat->cols > mat->rows )
833 mat->rows = lines->total;
869 int rows, cols, arows, acols; local
876 CV_CALL( edges = cvCreateMat( img->rows, img->cols, CV_8UC1 ));
879 CV_CALL( dx = cvCreateMat( img->rows, img->cols, CV_16SC1 ))
    [all...]
  /cts/tools/dasm/src/java_cup/
parse_reduce_table.java 29 /* allocate the array and fill it in with empty rows */
40 /** How many rows/states in the machine/table. */
43 /** How many rows/states in the machine/table. */
48 /** Actual array of rows, one per state */
  /external/ceres-solver/internal/ceres/
block_random_access_sparse_matrix.cc 55 // rows/columns.
81 int* rows = tsm_->mutable_rows(); local
108 rows[pos] = col_layout[row_block_id] + r;
111 DCHECK_LT(rows[pos], tsm_->num_rows());
detect_structure.cc 43 const int num_row_blocks = bs.rows.size();
51 const CompressedRow& row = bs.rows[r];
52 // We do not care about the sizes of the blocks in rows which do
105 CHECK_NE(*row_block_size, 0) << "No rows found";
  /external/chromium/chrome/browser/importer/
in_process_importer_bridge.h 41 virtual void SetHistoryItems(const std::vector<history::URLRow>& rows,
  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 23 // Returns the number of rows in the table.
  /external/chromium_org/chrome/browser/extensions/activity_log/
counting_policy.h 19 // identical rows combined together using a count column to track the total
20 // number of repetitions. Identical rows within the same day are merged, but
106 // after deleting rows from the main log table to clean out stale values.
130 // midnight, and rows older than this are deleted from the database when
  /external/chromium_org/chrome/browser/history/android/
visit_sql_handler.h 34 // Add the given |visit_count| rows for |url_id|. The visit time of each row
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 233 DeleteRowsWithURLs(urls_deleted_details->rows);
266 // rows from the caches and the database once the history service is
268 std::vector<AutocompleteActionPredictorTable::Row>* rows = local
272 base::Bind(&AutocompleteActionPredictorTable::GetAllRows, table_, rows),
274 base::Owned(rows)));
295 const history::URLRows& rows) {
302 if (std::find_if(rows.begin(), rows.end(),
303 history::URLRow::URLRowHasURL(it->first.url)) != rows.end()) {
396 const AutocompleteActionPredictorTable::Rows& rows_to_add
    [all...]
  /external/chromium_org/chrome/browser/resources/
gesture_config.html 21 <!-- Section rows are inserted here. -->
  /external/chromium_org/chrome/browser/ui/
chrome_style.h 29 const int kRowPadding = 20; // Padding between rows of text.
  /external/chromium_org/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 24 // Returns the number of rows in the table.
  /external/chromium_org/chrome/browser/ui/sync/
profile_signin_confirmation_helper.cc 43 history::URLRows rows; variable
44 backend->GetAllTypedURLs(&rows);
45 if (!rows.empty()) {
47 << rows.size() << " typed URLs";
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/
options.html 28 <textarea class=action-js rows=5 cols=83>console.log(item.url)
  /external/chromium_org/content/test/data/session_history/
frames.html 40 <frameset onLoad="init()" rows="20%,80%" name="main">
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_tty.h 52 /// Current height of terminal in rows. Set via ioctl(2).
  /external/chromium_org/third_party/WebKit/ManualTests/autocorrection/
remove-misspelling-marker-after-appending-letter.html 36 <textarea id="test" cols="80" rows="10"></textarea>
  /external/chromium_org/third_party/WebKit/ManualTests/
selection-start-after-inserting-line-break-in-textarea.html 5 <textarea cols="20" rows="20"></textarea>
textarea-focus.html 26 <textarea rows="8" cols="40"></textarea>
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameSetElement.idl 24 [Reflect] attribute DOMString rows;

Completed in 627 milliseconds

<<11121314151617181920>>