Home
last modified time | relevance | path

Searched refs:_rows (Results 1 – 25 of 874) sorted by relevance

12345678910>>...35

/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Modules/Numerics/include/mirtk/
H A DVector.h53 int _rows;
376 _vector = (_rows > 0) ? new double[_rows] : NULL; in Initialize()
387 _vector = (_rows > 0) ? new double[_rows] : NULL; in Initialize()
613 if (_rows != v._rows) {
624 if (_rows != v._rows) {
635 if (_rows != v._rows) {
646 if (_rows != v._rows) {
685 if (_rows != v._rows) return false;
701 if (_rows > v._rows) return false;
715 if (_rows != v._rows) { in ScalarProduct()
[all …]
/dports/graphics/wdune/wdune-1.926/vcglib/vcg/math/
H A Dold_deprecated_matrix.h94 _rows = m; in Matrix()
109 _rows = m; in Matrix()
125 _rows = 0; in Matrix()
137 _rows = m._rows; in Matrix()
180 if (_rows==m._rows && _columns==m._columns)
197 if (_rows==m._rows && _columns==m._columns)
264 for (u=0, p=0, s=0, t=0; u<_rows; u++, t+=_rows) in Cofactor()
377 assert(_rows == m._rows);
392 assert(_rows == m._rows);
406 assert(_rows == m._rows);
[all …]
/dports/devel/vcglib/vcglib-2020.09/vcg/math/
H A Dold_deprecated_matrix.h94 _rows = m; in Matrix()
109 _rows = m; in Matrix()
125 _rows = 0; in Matrix()
137 _rows = m._rows; in Matrix()
180 if (_rows==m._rows && _columns==m._columns)
197 if (_rows==m._rows && _columns==m._columns)
264 for (u=0, p=0, s=0, t=0; u<_rows; u++, t+=_rows) in Cofactor()
377 assert(_rows == m._rows);
392 assert(_rows == m._rows);
406 assert(_rows == m._rows);
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/layout/
H A Dlayout_mosaic.cpp19 return _rows[row].height; in rowHeightAt()
24 for (auto &row : _rows) { in countDesiredHeight()
126 _rows.reserve(items.size()); in addItems()
149 return _rows.empty(); in empty()
153 return _rows.size(); in rowsCount()
160 && (row < _rows.size()) in itemAt()
176 && (row < _rows.size()) in maybeItemAt()
197 _rows.clear(); in clearRows()
283 _rows.resize(untilRow); in validateExistingRows()
289 _rows[untilRow].items, in validateExistingRows()
[all …]
/dports/graphics/py-box2d-py/box2d-py-2.3.8/examples/pgu/gui/
H A Dtable.py34 self._rows = []
41 return len(self._rows)
44 if self._rows:
54 for cell in self._rows[n]:
58 del self._rows[n]
73 self._rows = []
96 if not self._rows:
98 for row in self._rows:
213 if self._rows[row][cell] and self._rows[row][cell] is not True:
227 if self._rows[row][cell] and self._rows[row][cell] is not True:
[all …]
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Modules/Numerics/src/
H A DMatrix.cc67 while (_rows != m._rows || _cols != m._cols) { \
86 _rows (0), in Matrix()
96 _rows (rows), in Matrix()
161 _rows (m._rows), in Matrix()
182 if (_rows != m._rows || _cols != m._cols) { in operator =()
183 _rows = m._rows; in operator =()
201 _rows = rows; in Initialize()
245 _rows = 0; in Clear()
262 if ((m._rows + rows > _rows) || (m._cols + cols > _cols)) { in operator ()()
615 A.Initialize(_rows, _rows); in Invert()
[all …]
H A DVector.cc45 for (int r = r1 + 1; r < _rows; ++r) { in PermuteRows()
57 os << "irtkVector " << max(0, v._rows) << endl; in operator <<()
58 if (v._rows > 0) { in operator <<()
61 swap64((char *)v._vector, (char *)v._vector, v._rows); in operator <<()
63 os.write((char *)v._vector, v._rows * sizeof(double)); in operator <<()
65 swap64((char *)v._vector, (char *)v._vector, v._rows); in operator <<()
105 swap64((char *)v._vector, (char *)v._vector, v._rows); in operator >>()
116 const int rows = max(0, v._rows); in operator <<()
118 if (v._rows > 0) to.WriteAsDouble(v._vector, v._rows); in operator <<()
151 cout << indent << "Vector " << _rows << endl; in Print()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/
H A DRecordManager.cs19 private DataRow[] _rows; field in System.Data.RecordManager
38 if (_rows != null) in GrowRecordCapacity()
40 Array.Copy(_rows, 0, newRows, 0, Math.Min(_lastFreeRecord, _rows.Length)); in GrowRecordCapacity()
42 _rows = newRows; in GrowRecordCapacity()
152 _rows[record] = null; in Clear()
172 if (_rows[record] != null && _rows[record].rowID != -1) in Clear()
186 return _rows[record];
191 _rows[record] = value;
262 _rows = newRows; in SetRowCache()
263 _lastFreeRecord = _rows.Length; in SetRowCache()
[all …]
/dports/security/yapet/yapet-2.3/libyacurs/include/
H A Dsize.h50 int16_t _rows, _cols; variable
176 inline Size::Size(int16_t rows, int16_t cols) : _rows(rows), _cols(cols) { in Size()
180 if (_rows < 0) throw std::out_of_range("Rows cannot be <0"); in Size()
186 inline int16_t Size::rows() const { return _rows; } in rows()
195 _rows = rows; in rows()
200 assert(rhs._rows >= 0);
202 _rows += rhs._rows;
210 _rows -= rhs._rows;
211 if (_rows < 0) _rows = 0;
216 return _cols == rhs._cols && _rows == rhs._rows;
/dports/editors/neovim-qt/neovim-qt-0.2.16.1/src/gui/shellwidget/
H A Dshellcontents.cpp15 _rows = 1; in fromFile()
35 :_data(0), _rows(rows), _columns(columns) in ShellContents()
48 :_data(0), _rows(other._rows), _columns(other._columns) in ShellContents()
61 _data = new Cell[_rows*_columns]; in allocData()
66 for (int i=0; i<_rows; i++) { in clearAll()
76 startCol > _rows) { in clearRow()
101 if (row1 >= _rows ) { in verifyRegion()
102 row1 = _rows; in verifyRegion()
183 int oldRows = _rows; in resize()
186 _rows = newRows; in resize()
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_ui/ui/wrap/
H A Dvertical_layout.cpp15 if (!_rows.empty()) { in getMargins()
16 auto &top = _rows.front(); in getMargins()
20 auto &bottom = _rows.back(); in getMargins()
24 for (auto &row : _rows) { in getMargins()
39 for (auto &row : _rows) { in naturalWidth()
54 auto &row = _rows[index]; in setVerticalShift()
77 for (auto &row : _rows) { in resizeGetHeight()
94 for (auto &row : _rows) { in visibleTopBottomUpdated()
126 _rows.insert( in insertChild()
173 auto end = _rows.end(); in removeChild()
[all …]
/dports/textproc/py-pyexcel-ezodf/pyexcel-ezodf-0.3.4/ezodf/
H A Dtablerowcontroller.py30 return len(self._rows)
34 return len(self._rows[0])
40 return self._rows[row][col]
44 self._rows[row][col] = element
55 return self._rows[index]
61 return self._rows
106 last_row = self._rows[-1]
108 self._rows.append(newrow)
132 for row in self._rows:
142 for row in self._rows:
[all …]
/dports/biology/avida/avida-2.12.4-src/avida-core/source/tools/
H A DtMatrix.h70 void ResizeClear(const int _rows, const int _cols){ in ResizeClear() argument
71 if (_rows != GetNumRows()) { in ResizeClear()
72 num_rows = _rows; in ResizeClear()
75 data = new tArray<T>[_rows]; // Allocate block for data in ResizeClear()
81 void Resize(int _rows, int _cols) { in Resize() argument
86 tArray<T> * new_data = new tArray<T>[_rows]; in Resize()
87 for (int i = 0; i < GetNumRows() && i < _rows; i++) { in Resize()
96 num_rows = _rows; in Resize()
98 for (int i = 0; i < _rows; i++) data[i].Resize(_cols); in Resize()
122 explicit tMatrix(const int _rows, const int _cols) : in tMatrix() argument
[all …]
/dports/databases/pear-DBA_Relational/DBA_Relational-0.2.0/
H A DTempTable.php30 var $_rows; variable in DBA_TempTable
66 $this->_rows = &$v_rows;
74 $curRow = current($this->_rows);
76 reset($this->_rows);
77 $curRow = current($this->_rows);
92 $result = reset($this->_rows);
94 return key($this->_rows);
101 $result = next($this->_rows);
103 return key($this->_rows);
110 foreach ($this->_rows[$key] as $field=>$data) {
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/dialogs/
H A Ddialogs_list.cpp34 std::make_unique<Row>(key, _rows.size()) in addToEnd()
36 _rows.emplace_back(result); in addToEnd()
63 Expects(row->pos() >= 0 && row->pos() < _rows.size()); in adjustByName()
67 const auto i = _rows.begin() + index; in adjustByName()
68 const auto before = std::find_if(i + 1, _rows.end(), [&](Row *row) { in adjustByName()
73 } else if (i != _rows.begin()) { in adjustByName()
89 const auto i = _rows.begin() + index; in adjustByDate()
112 const auto begin = _rows.begin(); in moveToTop()
124 auto index = (first - _rows.begin()); in rotate()
140 _rows.erase(_rows.begin() + index); in del()
[all …]
/dports/math/givaro/givaro-4.1.1/src/library/matrix/
H A Dgivmatstoragesparse.h46 Array0<Indice_t> _rows; // - rows[i] of the first entry of
57 _rows.allocate(rsz+1);
65 _rows.resize(rsz+1);
72 _rows.copy(V._rows);
80 _rows.copy(V._rows);
85 : _nrow(0), _ncol(0), _rows(0), _index(0), _data( 0 ) {}
87 : _nrow(nrow), _ncol(ncol), _rows(nrow+1), _index(0), _data( 0 ) {}
90 _rows ( s._rows, givWithCopy()),
/dports/devel/gdb/gdb-11.1/gdb/testsuite/lib/
H A Dtuiterm.exp20 variable _rows
109 variable _rows
169 variable _rows
500 variable _rows
507 set _rows $rows
647 variable _rows
674 variable _rows
825 variable _rows
837 variable _rows
847 set _rows $rows
[all …]
/dports/databases/py-tarantool/tarantool-0.7.1/tarantool/
H A Ddbapi.py18 self._rows = None
32 return self._rows
47 self._rows = None
66 self._rows = response.data
107 if self._rows is None:
128 if len(self._rows) < size:
129 items = self._rows
130 self._rows = []
132 items, self._rows = self._rows[:size], self._rows[size:]
143 items = self._rows
[all …]
/dports/devel/lfcbase/lfcbase-1.16.2/src/
H A DPager.cc102 _rows = LINES; in sigCatch()
133 _rows = LINES; in managePage()
153 …if ( outData.Size() >= (_rows - headerSize - footerSize) && start < (outData.Size() - (_rows - hea… in managePage()
160 …if(start < (outData.Size() - (_rows - headerSize - footerSize))) start+=(_rows-headerSize-footerSi… in managePage()
165 if ( start > _rows ) in managePage()
166 start-=_rows; in managePage()
173 _rows = LINES; in managePage()
278 move(_rows-1,0); in writeFooter()
283 mvprintw(_rows-1,0, "up,down,n,b,q ?"); in writeFooter()
284 mvprintw(_rows-1,20, "%s", (char*)_title); in writeFooter()
[all …]
/dports/sysutils/android-file-transfer-qt5/android-file-transfer-linux-4.2/qt/
H A Dmtpobjectsmodel.cpp64 _rows.clear(); in setParent()
69 _rows.append(Row(oid)); in setParent()
80 Row &row = _rows[idx]; in enter()
93 return idx != _rows.end()? createIndex(std::distance(_rows.begin(), idx), 0): QModelIndex(); in findObject()
99 return idx != _rows.end()? createIndex(std::distance(_rows.begin(), idx), 0): QModelIndex(); in findObject()
111 { return _rows.size(); } in rowCount()
178 _rows[idx].ResetInfo(); in rename()
200 return (idx >= 0 && idx < _rows.size())? _rows[idx].ObjectId: mtp::ObjectId(); in objectIdAt()
209 Row &row = _rows[row_idx]; in data()
252 beginInsertRows(QModelIndex(), _rows.size(), _rows.size()); in createDirectory()
[all …]
/dports/sysutils/android-file-transfer/android-file-transfer-linux-4.2/qt/
H A Dmtpobjectsmodel.cpp64 _rows.clear(); in setParent()
69 _rows.append(Row(oid)); in setParent()
80 Row &row = _rows[idx]; in enter()
93 return idx != _rows.end()? createIndex(std::distance(_rows.begin(), idx), 0): QModelIndex(); in findObject()
99 return idx != _rows.end()? createIndex(std::distance(_rows.begin(), idx), 0): QModelIndex(); in findObject()
111 { return _rows.size(); } in rowCount()
178 _rows[idx].ResetInfo(); in rename()
200 return (idx >= 0 && idx < _rows.size())? _rows[idx].ObjectId: mtp::ObjectId(); in objectIdAt()
209 Row &row = _rows[row_idx]; in data()
252 beginInsertRows(QModelIndex(), _rows.size(), _rows.size()); in createDirectory()
[all …]
/dports/x11-fm/wcmcommander/WCMCommander-release-0.20.0/src/
H A Dt-emulator.cpp111 _scB = _rows - 1; in ResetState()
128 _cursor.row = _rows - 1; in Emulator()
145 int cdelta = _rows - _cursor.row; in SetSize()
146 _rows = r; in SetSize()
152 _cursor.row = _rows - cdelta; in SetSize()
161 int a = _rows - _scB - 1 ; in ScrollUp()
170 int a = _rows - _scB - 1; in ScrollDown()
282 _cursor.row = _rows - 1; in Reset()
284 _scB = _rows - 1; in Reset()
335 if ( r >= _rows ) { r = _rows - 1; } in SetCursor()
[all …]
/dports/math/dune-pdelab/dune-pdelab-20c7085389d3eb4f8ca99e1bc60f7fa6036536c8/dune/pdelab/backend/simple/
H A Dmatrix.hh52 : _rows(go.testGridFunctionSpace().size()) in MatrixContainer()
54 , _container(std::make_shared<Container>(_rows*_cols,E(0))) in MatrixContainer()
59 : _rows(go.testGridFunctionSpace().size()) in MatrixContainer()
61 , _container(std::make_shared<Container>(_rows*_cols,e)) in MatrixContainer()
66 : _rows(0) in MatrixContainer()
72 : _rows(0) in MatrixContainer()
78 : _rows(rhs._rows) in MatrixContainer()
87 if (_rows == 0 && _cols == 0) in operator =()
89 _rows = rhs._rows; in operator =()
125 return _rows; in N()
[all …]
/dports/science/py-paida/paida-3.2.1_2.10.1/paida/paida_core/
H A DITuple.py29 self._rows = []
67 self._rows = []
71 return len(self._rows)
92 if rowIndex >= len(self._rows):
173 newTuple._rows = tupleRowsData
211 for row in self._rows:
217 for row in self._rows:
223 for row in self._rows:
226 return _sum / len(self._rows)
231 nRows = len(self._rows)
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/
H A Deigen.hpp204 Matx<_Tp, _rows, _cols>& dst ) in eigen2cv()
220 CV_DbgAssert(src.rows == _rows && src.cols == _cols); in cv2eigen()
245 void cv2eigen( const Matx<_Tp, _rows, _cols>& src, in cv2eigen() argument
290 template<typename _Tp, int _rows, int _cols> static inline
291 void cv2eigen( const Matx<_Tp, _rows, _cols>& src, in cv2eigen() argument
294 dst.resize(_rows, _cols); in cv2eigen()
334 template<typename _Tp, int _rows> static inline
335 void cv2eigen( const Matx<_Tp, _rows, 1>& src, in cv2eigen() argument
338 dst.resize(_rows); in cv2eigen()
342 const Mat _dst(1, _rows, traits::Type<_Tp>::value, in cv2eigen()
[all …]

12345678910>>...35