Home
last modified time | relevance | path

Searched refs:dstIds (Results 1 – 25 of 66) sorted by relevance

123

/dports/math/vtk6/VTK-6.2.0/Common/DataModel/
H A DvtkExtractStructuredGridHelper.cxx345 vtkNew<vtkIdList> dstIds; in CopyPointsAndPointData() local
350 dstIds->Allocate(bufferSize); in CopyPointsAndPointData()
406 dstIds->InsertNextId(targetIdx); in CopyPointsAndPointData()
412 outpnts->InsertPoints(dstIds.GetPointer(), srcIds.GetPointer(), inpnts); in CopyPointsAndPointData()
414 outPD->CopyData(pd, srcIds.GetPointer(), dstIds.GetPointer()); in CopyPointsAndPointData()
416 dstIds->Reset(); in CopyPointsAndPointData()
459 vtkNew<vtkIdList> dstIds; in CopyCellData() local
464 dstIds->Allocate(bufferSize); in CopyCellData()
515 dstIds->InsertNextId(targetIdx); in CopyCellData()
518 outCD->CopyData(cd, srcIds.GetPointer(), dstIds.GetPointer()); in CopyCellData()
[all …]
/dports/math/vtk8/VTK-8.2.0/Common/DataModel/
H A DvtkExtractStructuredGridHelper.cxx367 vtkNew<vtkIdList> dstIds; in CopyPointsAndPointData() local
372 dstIds->Allocate(bufferSize); in CopyPointsAndPointData()
428 dstIds->InsertNextId(targetIdx); in CopyPointsAndPointData()
434 outpnts->InsertPoints(dstIds, srcIds, inpnts); in CopyPointsAndPointData()
436 outPD->CopyData(pd, srcIds, dstIds); in CopyPointsAndPointData()
438 dstIds->Reset(); in CopyPointsAndPointData()
491 vtkNew<vtkIdList> dstIds; in CopyCellData() local
496 dstIds->Allocate(bufferSize); in CopyCellData()
562 dstIds->InsertNextId(targetIdx); in CopyCellData()
565 outCD->CopyData(cd, srcIds, dstIds); in CopyCellData()
[all …]
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/
H A DvtkExtractStructuredGridHelper.cxx352 vtkNew<vtkIdList> dstIds; in CopyPointsAndPointData() local
357 dstIds->Allocate(bufferSize); in CopyPointsAndPointData()
404 dstIds->InsertNextId(targetIdx); in CopyPointsAndPointData()
410 outpnts->InsertPoints(dstIds, srcIds, inpnts); in CopyPointsAndPointData()
412 outPD->CopyData(pd, srcIds, dstIds); in CopyPointsAndPointData()
414 dstIds->Reset(); in CopyPointsAndPointData()
464 vtkNew<vtkIdList> dstIds; in CopyCellData() local
469 dstIds->Allocate(bufferSize); in CopyCellData()
528 dstIds->InsertNextId(targetIdx); in CopyCellData()
531 outCD->CopyData(cd, srcIds, dstIds); in CopyCellData()
[all …]
/dports/math/vtk9/VTK-9.1.0/Filters/Extraction/
H A DvtkExtractCells.cxx362 vtkNew<vtkIdList> dstIds; in CopyCellData() local
363 dstIds->SetNumberOfIds(numValues); in CopyCellData()
364 std::iota(dstIds->GetPointer(0), dstIds->GetPointer(numValues), 0); in CopyCellData()
366 output->CopyData(input, srcIds, dstIds); in CopyCellData()
374 vtkNew<vtkIdList> dstIds; in CopyPointData() local
375 dstIds->SetNumberOfIds(numValues); in CopyPointData()
376 std::iota(dstIds->GetPointer(0), dstIds->GetPointer(numValues), 0); in CopyPointData()
377 outPD->CopyData(inPD, srcIds, dstIds); in CopyPointData()
/dports/devel/spark/spark-2.1.1/graphx/src/main/scala/org/apache/spark/graphx/impl/
H A DEdgePartition.scala108 @inline private def dstIds(pos: Int): VertexId = local2global(localDstIds(pos))
160 edge.dstId = dstIds(i)
248 if (i > 0 && currSrcId == srcIds(i) && currDstId == dstIds(i)) {
259 currDstId = dstIds(i)
293 val dstId = this.dstIds(i)
297 while (j < other.size && other.srcIds(j) == srcId && other.dstIds(j) < dstId) { j += 1 }
298 if (j < other.size && other.srcIds(j) == srcId && other.dstIds(j) == dstId) {
335 edge.dstId = dstIds(pos)
/dports/math/vtk8/VTK-8.2.0/Common/Core/
H A DvtkGenericDataArray.txx547 vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source) in InsertTuples() argument
556 this->Superclass::InsertTuples(dstIds, srcIds, source); in InsertTuples()
560 if (dstIds->GetNumberOfIds() == 0) in InsertTuples()
565 if (dstIds->GetNumberOfIds() != srcIds->GetNumberOfIds()) in InsertTuples()
569 << dstIds->GetNumberOfIds()); in InsertTuples()
583 vtkIdType maxDstTupleId = dstIds->GetId(0); in InsertTuples()
584 for (int i = 0; i < dstIds->GetNumberOfIds(); ++i) in InsertTuples()
589 maxDstTupleId = (std::max)(maxDstTupleId, dstIds->GetId(i)); in InsertTuples()
618 vtkIdType dstT = dstIds->GetId(t); in InsertTuples()
H A DvtkUnicodeStringArray.cxx113 void vtkUnicodeStringArray::InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, in InsertTuples() argument
124 vtkIdType numIds = dstIds->GetNumberOfIds(); in InsertTuples()
135 maxDstId = std::max(maxDstId, dstIds->GetId(idIndex)); in InsertTuples()
146 this->Internal->Storage[dstIds->GetId(idIndex)] = in InsertTuples()
H A DvtkSOADataArrayTemplate.h218 void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, in InsertTuples() argument
220 { this->Superclass::InsertTuples(dstIds, srcIds, source); } in InsertTuples()
H A DvtkVariantArray.cxx276 void vtkVariantArray::InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, in InsertTuples() argument
286 vtkIdType numIds = dstIds->GetNumberOfIds(); in InsertTuples()
299 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
312 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
325 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
H A DvtkPoints.h183 void InsertPoints(vtkIdList *dstIds, vtkIdList *srcIds, vtkPoints *source) in InsertPoints() argument
184 { this->Data->InsertTuples(dstIds, srcIds, source->Data); } in InsertPoints()
H A DvtkDataArray.cxx571 void vtkDataArray::InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, in InsertTuples() argument
574 if (dstIds->GetNumberOfIds() == 0) in InsertTuples()
578 if (dstIds->GetNumberOfIds() != srcIds->GetNumberOfIds()) in InsertTuples()
582 << dstIds->GetNumberOfIds()); in InsertTuples()
607 vtkIdType maxDstTupleId = dstIds->GetId(0); in InsertTuples()
608 for (int i = 1; i < dstIds->GetNumberOfIds(); ++i) in InsertTuples()
611 maxDstTupleId = std::max(maxDstTupleId, dstIds->GetId(i)); in InsertTuples()
634 SetTuplesIdListWorker worker(srcIds, dstIds); in InsertTuples()
/dports/math/vtk9/VTK-9.1.0/Common/Core/
H A DvtkUnicodeStringArray.cxx118 vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) in InsertTuples() argument
127 vtkIdType numIds = dstIds->GetNumberOfIds(); in InsertTuples()
138 maxDstId = std::max(maxDstId, dstIds->GetId(idIndex)); in InsertTuples()
149 this->Internal->Storage[dstIds->GetId(idIndex)] = in InsertTuples()
H A DvtkGenericDataArray.txx528 vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) in InsertTuples() argument
537 this->Superclass::InsertTuples(dstIds, srcIds, source); in InsertTuples()
541 if (dstIds->GetNumberOfIds() == 0) in InsertTuples()
546 if (dstIds->GetNumberOfIds() != srcIds->GetNumberOfIds()) in InsertTuples()
549 << srcIds->GetNumberOfIds() << " Dest: " << dstIds->GetNumberOfIds()); in InsertTuples()
562 vtkIdType maxDstTupleId = dstIds->GetId(0); in InsertTuples()
563 for (int i = 0; i < dstIds->GetNumberOfIds(); ++i) in InsertTuples()
568 maxDstTupleId = (std::max)(maxDstTupleId, dstIds->GetId(i)); in InsertTuples()
597 vtkIdType dstT = dstIds->GetId(t); in InsertTuples()
H A DvtkSOADataArrayTemplate.h201 void InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) override in InsertTuples() argument
203 this->Superclass::InsertTuples(dstIds, srcIds, source); in InsertTuples()
H A DvtkVariantArray.cxx276 void vtkVariantArray::InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) in InsertTuples() argument
285 vtkIdType numIds = dstIds->GetNumberOfIds(); in InsertTuples()
298 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
311 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
324 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
H A DvtkScaledSOADataArrayTemplate.h246 void InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) override in InsertTuples() argument
248 this->Superclass::InsertTuples(dstIds, srcIds, source); in InsertTuples()
H A DvtkPoints.h187 void InsertPoints(vtkIdList* dstIds, vtkIdList* srcIds, vtkPoints* source) in InsertPoints() argument
189 this->Data->InsertTuples(dstIds, srcIds, source->Data); in InsertPoints()
H A DvtkDataArray.cxx588 void vtkDataArray::InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* src) in InsertTuples() argument
590 if (dstIds->GetNumberOfIds() == 0) in InsertTuples()
594 if (dstIds->GetNumberOfIds() != srcIds->GetNumberOfIds()) in InsertTuples()
597 << srcIds->GetNumberOfIds() << " Dest: " << dstIds->GetNumberOfIds()); in InsertTuples()
614 vtkIdType maxDstTupleId = dstIds->GetId(0); in InsertTuples()
615 for (int i = 1; i < dstIds->GetNumberOfIds(); ++i) in InsertTuples()
618 maxDstTupleId = std::max(maxDstTupleId, dstIds->GetId(i)); in InsertTuples()
641 SetTuplesIdListWorker worker(srcIds, dstIds); in InsertTuples()
/dports/math/vtk6/VTK-6.2.0/Common/Core/
H A DvtkUnicodeStringArray.cxx112 void vtkUnicodeStringArray::InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, in InsertTuples() argument
123 vtkIdType numIds = dstIds->GetNumberOfIds(); in InsertTuples()
134 maxDstId = std::max(maxDstId, dstIds->GetId(idIndex)); in InsertTuples()
145 this->Internal->Storage[dstIds->GetId(idIndex)] = in InsertTuples()
H A DvtkPoints.h145 void InsertPoints(vtkIdList *dstIds, vtkIdList *srcIds, vtkPoints *source) in InsertPoints() argument
146 { this->Data->InsertTuples(dstIds, srcIds, source->Data); } in InsertPoints()
H A DvtkVariantArray.cxx270 void vtkVariantArray::InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, in InsertTuples() argument
280 vtkIdType numIds = dstIds->GetNumberOfIds(); in InsertTuples()
293 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
306 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
319 vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents; in InsertTuples()
/dports/math/vtk8/VTK-8.2.0/Filters/Extraction/
H A DvtkExtractCells.cxx363 vtkNew<vtkIdList> dstIds; // contiguous range [0, numPoints) in RequestData() local
364 dstIds->SetNumberOfIds(numPoints); in RequestData()
365 std::iota(dstIds->GetPointer(0), dstIds->GetPointer(numPoints), 0); in RequestData()
367 pts->InsertPoints(dstIds, this->CellList->PointMap.Map, pointSet->GetPoints()); in RequestData()
368 newPD->CopyData(PD, this->CellList->PointMap.Map, dstIds); in RequestData()
/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/ml/recommendation/
H A DALS.scala871 dstIds: Array[ID],
875 require(dstIds.length == srcIds.length)
886 private val dstIds = mutable.ArrayBuilder.make[ID]
894 dstIds += r.item
903 dstIds ++= other.dstIds
910 RatingBlock[ID](srcIds.result(), dstIds.result(), ratings.result())
1184 case ((srcBlockId, dstBlockId), RatingBlock(srcIds, dstIds, ratings)) =>
1189 dstIds.foreach(dstIdSet.add)
1208 val dstLocalIndices = dstIds.map(dstIdToLocalIndex.apply)
1285 val dstFactors = new Array[Array[Float]](dstIds.length)
[all …]
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Lang/src/model/wizard/
H A DPortMapping.cpp49 QSet<QString> dstIds; in validate() local
53 tryAddId(mapping.getDstId(), dstIds, os); in validate()
/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/mllib/recommendation/
H A DMatrixFactorizationModel.scala280 case ((srcIds, srcFactors), (dstIds, dstFactors)) =>
282 val n = dstIds.length
287 output(k) = (srcIds(i), (dstIds(j), r))

123