Home
last modified time | relevance | path

Searched refs:rowIndexes (Results 1 – 25 of 79) sorted by relevance

1234

/dports/math/scilab/scilab-6.1.1/scilab/modules/matio/src/c/
H A DCreateSparseVariable.c37 int *rowIndexes = NULL; in CreateSparseVariable() local
70 if (rowIndexes == NULL) in CreateSparseVariable()
110 FREE(rowIndexes); in CreateSparseVariable()
135 FREE(rowIndexes); in CreateSparseVariable()
150 FREE(rowIndexes); in CreateSparseVariable()
166 FREE(rowIndexes); in CreateSparseVariable()
183 FREE(rowIndexes); in CreateSparseVariable()
201 FREE(rowIndexes); in CreateSparseVariable()
222 FREE(rowIndexes); in CreateSparseVariable()
300 if (rowIndexes != NULL) in CreateSparseVariable()
[all …]
/dports/science/colt/colt/src/cern/colt/matrix/objectalgo/
H A DSorting.java183 int[] rowIndexes = new int[matrix.rows()]; // row indexes to reorder instead of matrix itself in sort() local
184 for (int i=rowIndexes.length; --i >= 0; ) rowIndexes[i] = i; in sort()
196 runSort(rowIndexes,0,rowIndexes.length,comp); in sort()
200 return matrix.viewSelection(rowIndexes,null); in sort()
226 int[] rowIndexes = new int[matrix.rows()]; // row indexes to reorder instead of matrix itself in sort() local
227 for (int i=rowIndexes.length; --i >= 0; ) rowIndexes[i] = i; in sort()
239 runSort(rowIndexes,0,rowIndexes.length,comp); in sort()
243 return matrix.viewSelection(rowIndexes,null); in sort()
H A DPartitioning.java107 public static void partition(ObjectMatrix2D matrix, int[] rowIndexes, int rowFrom, int rowTo, int c… in partition() argument
108 …if (rowFrom < 0 || rowTo >= matrix.rows() || rowTo >= rowIndexes.length) throw new IllegalArgument… in partition()
114 final int[] g = rowIndexes; in partition()
219 int[] rowIndexes = new int[matrix.rows()]; // row indexes to reorder instead of matrix itself in partition() local
220 for (int i=rowIndexes.length; --i >= 0; ) rowIndexes[i] = i; in partition()
222 partition(matrix,rowIndexes,rowFrom,rowTo,column,splitters,splitFrom,splitTo,splitIndexes); in partition()
229 return matrix.viewSelection(rowIndexes,columnIndexes); in partition()
/dports/science/colt/colt/src/cern/colt/matrix/doublealgo/
H A DPartitioning.java107 public static void partition(DoubleMatrix2D matrix, int[] rowIndexes, int rowFrom, int rowTo, int c… in partition() argument
108 …if (rowFrom < 0 || rowTo >= matrix.rows() || rowTo >= rowIndexes.length) throw new IllegalArgument… in partition()
114 final int[] g = rowIndexes; in partition()
216 int[] rowIndexes = new int[matrix.rows()]; // row indexes to reorder instead of matrix itself in partition() local
217 for (int i=rowIndexes.length; --i >= 0; ) rowIndexes[i] = i; in partition()
219 partition(matrix,rowIndexes,rowFrom,rowTo,column,splitters,splitFrom,splitTo,splitIndexes); in partition()
226 return matrix.viewSelection(rowIndexes,columnIndexes); in partition()
H A DSorting.java302 int[] rowIndexes = new int[matrix.rows()]; // row indexes to reorder instead of matrix itself in sort() local
303 for (int i=rowIndexes.length; --i >= 0; ) rowIndexes[i] = i; in sort()
315 runSort(rowIndexes,0,rowIndexes.length,comp); in sort()
319 return matrix.viewSelection(rowIndexes,null); in sort()
345 int[] rowIndexes = new int[matrix.rows()]; // row indexes to reorder instead of matrix itself in sort() local
346 for (int i=rowIndexes.length; --i >= 0; ) rowIndexes[i] = i; in sort()
358 runSort(rowIndexes,0,rowIndexes.length,comp); in sort()
362 return matrix.viewSelection(rowIndexes,null); in sort()
/dports/math/scilab/scilab-6.1.1/scilab/modules/matio/src/cpp/
H A DGetSparseVariable.cpp90 mat_int32_t* rowIndexes = (mat_int32_t*)MALLOC(sizeof(mat_int32_t) * nonZeros); in GetSparseMatVar() local
92 mat_uint32_t* rowIndexes = (mat_uint32_t*)MALLOC(sizeof(mat_uint32_t) * nonZeros); in GetSparseMatVar() local
94 if (rowIndexes == NULL) in GetSparseMatVar()
107 rowIndexes[K] = colPos[K] - 1; in GetSparseMatVar()
114 sparseData->ir = rowIndexes; in GetSparseMatVar()
136 FREE(rowIndexes); in GetSparseMatVar()
157 FREE(rowIndexes); in GetSparseMatVar()
171 FREE(rowIndexes); in GetSparseMatVar()
186 FREE(rowIndexes); in GetSparseMatVar()
218 FREE(rowIndexes); in GetSparseMatVar()
H A DCreateMatlabTreeVariable.cpp151 int *rowIndexes = NULL; in CreateMatlabTreeVariable() local
172 rowIndexes = (int*)MALLOC(sizeof(int) * sparseData->nir); in CreateMatlabTreeVariable()
173 if (rowIndexes == NULL) in CreateMatlabTreeVariable()
184 rowIndexes[K] = sparseData->ir[K] + 1; in CreateMatlabTreeVariable()
203 pSparse->set((rowIndexes[i] - 1), j, dbl); in CreateMatlabTreeVariable()
217 pSparse->set((rowIndexes[i] - 1), j, pReal[i]); in CreateMatlabTreeVariable()
223 FREE(rowIndexes); in CreateMatlabTreeVariable()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Core/src/gobjects/
H A DMultipleAlignmentObject.h92 void removeRows(const QList<int> &rowIndexes);
98 void removeRegion(const QList<int> &rowIndexes, int x, int width, bool removeEmptyRows);
110 bool isRegionEmpty(const QList<int> &rowIndexes, int x, int width) const;
119 QList<qint64> getRowIdsByRowIndexes(const QList<int> &rowIndexes) const;
143 virtual void insertGapByRowIndexList(const QList<int> &rowIndexes, int pos, int nGaps) = 0;
154 int deleteGapByRowIndexList(U2OpStatus &os, const QList<int> &rowIndexes, int pos, int maxGaps);
194 …void insertGapByRowIndexList(const QList<int> &rowIndexes, int pos, int nGaps, bool collapseTraili…
210 int getMaxWidthOfGapRegion(U2OpStatus &os, const QList<int> &rowIndexes, int pos, int maxGaps);
H A DMultipleAlignmentObject.cpp253 CHECK(!rowIndexes.isEmpty(), ); in removeRows()
257 foreach (int rowIdx, rowIndexes) { in removeRows()
297 int rowIndex = rowIndexes[i]; in isRegionEmpty()
330 for (int rowIndex : qAsConst(rowIndexes)) { in getRowIdsByRowIndexes()
479 for (int i = 0; i < rowIndexes.size(); i++) { in insertGapByRowIndexList()
480 int rowIndex = rowIndexes[i]; in insertGapByRowIndexList()
617 QList<int> rowIndexes; in deleteGap() local
619 rowIndexes << i; in deleteGap()
626 for (int i = 0; i < rowIndexes.size(); i++) { in toUniqueRowIndexes()
627 int rowIndex = rowIndexes[i]; in toUniqueRowIndexes()
[all …]
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/view/table/
H A DDefaultHistoryReferencesTableModel.java63 private SortedSet<RowIndex> rowIndexes; field in DefaultHistoryReferencesTableModel
85 this.rowIndexes = new TreeSet<>(); in DefaultHistoryReferencesTableModel()
128 rowIndexes.add(rowIndex); in addEntry()
163 rowIndexes.remove(rowIndex); in removeEntry()
182 rowIndexes.addAll(Arrays.asList(indexes)); in decreaseRowIndexes()
194 SortedSet<RowIndex> indexes = rowIndexes.tailSet(fromRowIndex); in removeRowIndexes()
207 rowIndexes = new TreeSet<>(); in clear()
/dports/science/colt/colt/src/cern/colt/matrix/impl/
H A DWrapperDoubleMatrix2D.java341 public DoubleMatrix2D viewSelection(int[] rowIndexes, int[] columnIndexes) { in viewSelection() argument
343 if (rowIndexes==null) { in viewSelection()
344 rowIndexes = new int[rows]; in viewSelection()
345 for (int i=rows; --i >= 0; ) rowIndexes[i] = i; in viewSelection()
352 checkRowIndexes(rowIndexes); in viewSelection()
354 final int[] rix = rowIndexes; in viewSelection()
365 view.rows = rowIndexes.length; in viewSelection()
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/
H A DHBTableView.m18 NSMutableIndexSet *rowIndexes = [NSMutableIndexSet indexSet];
24 [rowIndexes addIndex:clickedRow];
29 [rowIndexes addIndexes:selectedRowIndexes];
34 [rowIndexes addIndexes:selectedRowIndexes];
37 return [rowIndexes copy];
/dports/science/colt/colt/src/cern/colt/matrix/
H A DObjectMatrix2D.java702 public ObjectMatrix2D viewSelection(int[] rowIndexes, int[] columnIndexes) { in viewSelection() argument
704 if (rowIndexes==null) { in viewSelection()
705 rowIndexes = new int[rows]; in viewSelection()
706 for (int i=rows; --i >= 0; ) rowIndexes[i] = i; in viewSelection()
713 checkRowIndexes(rowIndexes); in viewSelection()
715 int[] rowOffsets = new int[rowIndexes.length]; in viewSelection()
717 for (int i=rowIndexes.length; --i >= 0; ) { in viewSelection()
718 rowOffsets[i] = _rowOffset(_rowRank(rowIndexes[i])); in viewSelection()
H A DObjectMatrix3D.java659 public ObjectMatrix3D viewSelection(int[] sliceIndexes, int[] rowIndexes, int[] columnIndexes) { in viewSelection() argument
665 if (rowIndexes==null) { in viewSelection()
666 rowIndexes = new int[rows]; in viewSelection()
667 for (int i=rows; --i >= 0; ) rowIndexes[i] = i; in viewSelection()
675 checkRowIndexes(rowIndexes); in viewSelection()
679 int[] rowOffsets = new int[rowIndexes.length]; in viewSelection()
685 for (int i=rowIndexes.length; --i >= 0; ) { in viewSelection()
686 rowOffsets[i] = _rowOffset(_rowRank(rowIndexes[i])); in viewSelection()
H A DDoubleMatrix2D.java707 public DoubleMatrix2D viewSelection(int[] rowIndexes, int[] columnIndexes) { in viewSelection() argument
709 if (rowIndexes==null) { in viewSelection()
710 rowIndexes = new int[rows]; in viewSelection()
711 for (int i=rows; --i >= 0; ) rowIndexes[i] = i; in viewSelection()
718 checkRowIndexes(rowIndexes); in viewSelection()
720 int[] rowOffsets = new int[rowIndexes.length]; in viewSelection()
722 for (int i=rowIndexes.length; --i >= 0; ) { in viewSelection()
723 rowOffsets[i] = _rowOffset(_rowRank(rowIndexes[i])); in viewSelection()
H A DDoubleMatrix3D.java631 public DoubleMatrix3D viewSelection(int[] sliceIndexes, int[] rowIndexes, int[] columnIndexes) { in viewSelection() argument
637 if (rowIndexes==null) { in viewSelection()
638 rowIndexes = new int[rows]; in viewSelection()
639 for (int i=rows; --i >= 0; ) rowIndexes[i] = i; in viewSelection()
647 checkRowIndexes(rowIndexes); in viewSelection()
651 int[] rowOffsets = new int[rowIndexes.length]; in viewSelection()
657 for (int i=rowIndexes.length; --i >= 0; ) { in viewSelection()
658 rowOffsets[i] = _rowOffset(_rowRank(rowIndexes[i])); in viewSelection()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Core/src/dbi/
H A DU2DbiPackUtils.h78 static QByteArray packRows(const QList<int> &rowIndexes, const QList<U2MsaRow> &rows);
79 …static bool unpackRows(const QByteArray &modDetails, QList<int> &rowIndexes, QList<U2MsaRow> &rows…
81 static QByteArray packRows(const QList<int> &rowIndexes, const QList<U2McaRow> &rows);
82 …static bool unpackRows(const QByteArray &modDetails, QList<int> &rowIndexes, QList<U2McaRow> &rows…
H A DU2DbiPackUtils.cpp466 QByteArray U2DbiPackUtils::packRows(const QList<int> &rowIndexes, const QList<U2MsaRow> &rows) { in packRows() argument
467 SAFE_POINT(rowIndexes.size() == rows.size(), "Different lists sizes", ""); in packRows()
469 QList<int>::ConstIterator pi = rowIndexes.begin(); in packRows()
477 bool U2DbiPackUtils::unpackRows(const QByteArray &modDetails, QList<int> &rowIndexes, QList<U2MsaRo… in unpackRows() argument
487 rowIndexes << pos; in unpackRows()
493 QByteArray U2DbiPackUtils::packRows(const QList<int> &rowIndexes, const QList<U2McaRow> &rows) { in packRows() argument
494 SAFE_POINT(rowIndexes.size() == rows.size(), "Different lists sizes", ""); in packRows()
496 QList<int>::ConstIterator pi = rowIndexes.begin(); in packRows()
504 bool U2DbiPackUtils::unpackRows(const QByteArray &modDetails, QList<int> &rowIndexes, QList<U2McaRo… in unpackRows() argument
514 rowIndexes << pos; in unpackRows()
/dports/graphics/pikopixel/PikoPixel.Sources.1.0-b10/PikoPixel/
H A DPPDocumentSamplerImagesSettingsSheetController.m292 writeRowsWithIndexes: (NSIndexSet *) rowIndexes
297 pasteboardData = [NSKeyedArchiver archivedDataWithRootObject: rowIndexes];
314 NSIndexSet *rowIndexes;
319 rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData: pasteboardData];
320 selectedRow = [rowIndexes firstIndex];
339 NSIndexSet *rowIndexes;
345 rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData: rowData];
346 sourceTableRow = [rowIndexes firstIndex];
H A DPPDocumentEditPatternPresetsSheetController.m279 writeRowsWithIndexes: (NSIndexSet *) rowIndexes
284 pasteboardData = [NSKeyedArchiver archivedDataWithRootObject: rowIndexes];
301 NSIndexSet *rowIndexes;
306 rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData: pasteboardData];
307 selectedRow = [rowIndexes firstIndex];
326 NSIndexSet *rowIndexes;
332 rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData: rowData];
333 sourceTableRow = [rowIndexes firstIndex];
H A DPPDocumentEditImageSizePresetsSheetController.m245 writeRowsWithIndexes: (NSIndexSet *) rowIndexes
250 pasteboardData = [NSKeyedArchiver archivedDataWithRootObject: rowIndexes];
267 NSIndexSet *rowIndexes;
272 rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData: pasteboardData];
273 selectedRow = [rowIndexes firstIndex];
292 NSIndexSet *rowIndexes;
298 rowIndexes = [NSKeyedUnarchiver unarchiveObjectWithData: rowData];
299 sourceTableRow = [rowIndexes firstIndex];
/dports/graphics/engauge-digitizer/engauge-digitizer-12.2.2/src/Matrix/
H A DMatrix.cpp205 QVector<int> rowIndexes (rows ()); in inverseGaussianElimination() local
207 rowIndexes [row] = row; in inverseGaussianElimination()
227 int row1Index = rowIndexes [row1]; in inverseGaussianElimination()
228 int row2Index = rowIndexes [row2]; in inverseGaussianElimination()
229 rowIndexes [row1] = row2Index; in inverseGaussianElimination()
230 rowIndexes [row2] = row1Index; in inverseGaussianElimination()
302 int rowBeforeSort = rowIndexes [row]; in inverseGaussianElimination()
/dports/cad/ldview/ldview-4.4/MacOSX/LDView/
H A DTableViewReorder.mm85 - (BOOL)tableView:(NSTableView *)tv writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSP…
87 if ([rowIndexes count] == 1)
90 NSInteger row = [rowIndexes firstIndex];
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/client/
H A DTestMultipleTimestamps.java447 Integer[] rowIndexes, Integer[] columnIndexes, in scan() argument
450 Arrays.asList(rowIndexes); in scan()
452 Collections.min( Arrays.asList(rowIndexes))); in scan()
454 Collections.max( Arrays.asList(rowIndexes))+1); in scan()
467 private void put(Table ht, byte[] cf, Integer[] rowIndexes, in put() argument
470 for (int rowIdx: rowIndexes) { in put()
/dports/irc/konversation/konversation-21.12.3/src/dcc/
H A Dtransferview.cpp169 const auto rowIndices = rowIndexes(); in addTransfer()
246 QList<QModelIndex> TransferView::rowIndexes(int column) const in rowIndexes() function in Konversation::DCC::TransferView
288 const auto rowIndices = rowIndexes(); in index()
542 const auto rowIndices = rowIndexes(); in selectAllCompleted()
564 const auto rowIndices = rowIndexes(); in selectRows()
580 const auto rowIndices = rowIndexes(0); in update()

1234