Home
last modified time | relevance | path

Searched refs:numberOfSources (Results 1 – 25 of 27) sorted by relevance

12

/dports/audio/praat/praat-6.2.03/dwtest/
H A Dtest_EditCostTable.praat7 numberOfSources = 4
8 table = Create empty EditCostsTable... editCosts numberOfTargets numberOfSources
15 Set insertion costs... t'i' numberOfSources*i
17 for i to numberOfSources
25 for j to numberOfSources
31 for i to numberOfSources
55 assert cost = numberOfSources*i
58 for i to numberOfSources
69 for j to numberOfSources
77 for i to numberOfSources
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/imaging/
H A DossimMultiBandHistogramTileSource.cpp212 long numberOfSources = kwl.getNumberOfSubstringKeys(regExpression); in loadState() local
216 while(numberOfMatches < static_cast<unsigned long>(numberOfSources)) in loadState()
231 numberOfSources = kwl.getNumberOfSubstringKeys(regExpression); in loadState()
232 while(numberOfMatches < static_cast<unsigned long>(numberOfSources)) in loadState()
/dports/math/vtk9/VTK-9.1.0/Filters/Core/
H A DvtkGlyph2D.cxx60 int numberOfSources = this->GetNumberOfInputConnections(1); in RequestData() local
169 for (numSourcePts = numSourceCells = i = 0; i < numberOfSources; i++) in RequestData()
327 index = static_cast<int>((value - this->Range[0]) * numberOfSources / den); in RequestData()
328 index = (index < 0 ? 0 : (index >= numberOfSources ? (numberOfSources - 1) : index)); in RequestData()
H A DvtkGlyph3D.cxx160 int numberOfSources = this->GetNumberOfInputConnections(1); in Execute() local
267 for (numSourcePts = numSourceCells = i = 0; i < numberOfSources; i++) in Execute()
502 int index = static_cast<int>((value - this->Range[0]) * numberOfSources / den); in Execute()
503 index = (index < 0 ? 0 : (index >= numberOfSources ? (numberOfSources - 1) : index)); in Execute()
/dports/math/vtk8/VTK-8.2.0/Filters/Core/
H A DvtkGlyph2D.cxx64 int numberOfSources = this->GetNumberOfInputConnections(1); in RequestData() local
178 for (numSourcePts=numSourceCells=i=0; i < numberOfSources; i++) in RequestData()
337 index = static_cast<int>((value-this->Range[0])*numberOfSources/den); in RequestData()
339 (index >= numberOfSources ? (numberOfSources-1) : index)); in RequestData()
H A DvtkGlyph3D.cxx164 int numberOfSources = this->GetNumberOfInputConnections(1); in Execute() local
272 for (numSourcePts=numSourceCells=i=0; i < numberOfSources; i++) in Execute()
507 int index = static_cast<int>((value - this->Range[0])*numberOfSources / den); in Execute()
509 (index >= numberOfSources ? (numberOfSources-1) : index)); in Execute()
/dports/math/vtk6/VTK-6.2.0/Filters/Core/
H A DvtkGlyph2D.cxx64 int numberOfSources = this->GetNumberOfInputConnections(1); in RequestData() local
178 for (numSourcePts=numSourceCells=i=0; i < numberOfSources; i++) in RequestData()
337 index = static_cast<int>((value-this->Range[0])*numberOfSources/den); in RequestData()
339 (index >= numberOfSources ? (numberOfSources-1) : index)); in RequestData()
H A DvtkGlyph3D.cxx155 int numberOfSources = this->GetNumberOfInputConnections(1); in Execute() local
270 for (numSourcePts=numSourceCells=i=0; i < numberOfSources; i++) in Execute()
490 int index = static_cast<int>((value - this->Range[0])*numberOfSources / den); in Execute()
492 (index >= numberOfSources ? (numberOfSources-1) : index)); in Execute()
/dports/math/vtk6/VTK-6.2.0/Rendering/OpenGL/
H A DvtkOpenGLGlyph3DMapper.cxx212 int numberOfSources = this->GetNumberOfInputConnections(1); in Render() local
246 static_cast<size_t>(numberOfSources)); in Render()
383 int numberOfSources = this->GetNumberOfInputConnections(1); in Render() local
507 index = static_cast<int>((value-this->Range[0])*numberOfSources/den); in Render()
508 index = ::vtkClamp(index, 0, numberOfSources-1); in Render()
/dports/math/vtk6/VTK-6.2.0/Filters/Generic/
H A DvtkGenericGlyph3DFilter.cxx125 int numberOfSources = this->GetNumberOfInputConnections(1); in RequestData() local
311 for (numSourcePts=numSourceCells=i=0; i < numberOfSources; i++) in RequestData()
500 static_cast<double>(value - this->Range[0]) * numberOfSources / den); in RequestData()
502 (index >= numberOfSources ? (numberOfSources-1) : index)); in RequestData()
/dports/math/vtk8/VTK-8.2.0/Filters/Generic/
H A DvtkGenericGlyph3DFilter.cxx124 int numberOfSources = this->GetNumberOfInputConnections(1); in RequestData() local
308 for (numSourcePts=numSourceCells=i=0; i < numberOfSources; i++) in RequestData()
497 static_cast<double>(value - this->Range[0]) * numberOfSources / den); in RequestData()
499 (index >= numberOfSources ? (numberOfSources-1) : index)); in RequestData()
/dports/math/vtk9/VTK-9.1.0/Filters/Generic/
H A DvtkGenericGlyph3DFilter.cxx119 int numberOfSources = this->GetNumberOfInputConnections(1); in RequestData() local
303 for (numSourcePts = numSourceCells = i = 0; i < numberOfSources; i++) in RequestData()
490 index = static_cast<int>(static_cast<double>(value - this->Range[0]) * numberOfSources / den); in RequestData()
491 index = (index < 0 ? 0 : (index >= numberOfSources ? (numberOfSources - 1) : index)); in RequestData()
/dports/math/vtk9/VTK-9.1.0/Rendering/Core/
H A DvtkGlyph3DMapper.cxx534 int numberOfSources = this->UseSourceTableTree ? getNumberOfChildren(sourceTableTree) in GetBoundsInternal() local
537 if (numberOfSources < 1) in GetBoundsInternal()
550 indexRange[i] = static_cast<int>((range[i] - this->Range[0]) * numberOfSources / den); in GetBoundsInternal()
551 indexRange[i] = vtkMath::ClampValue(indexRange[i], 0, numberOfSources - 1); in GetBoundsInternal()
/dports/math/vtk8/VTK-8.2.0/Rendering/Core/
H A DvtkGlyph3DMapper.cxx550 int numberOfSources = this->UseSourceTableTree in GetBoundsInternal() local
554 if (numberOfSources < 1) in GetBoundsInternal()
567 indexRange[i]=static_cast<int>((range[i]-this->Range[0])*numberOfSources/den); in GetBoundsInternal()
568 indexRange[i] = vtkMath::ClampValue(indexRange[i], 0, numberOfSources-1); in GetBoundsInternal()
/dports/cad/sumo/sumo-1.2.0/src/netedit/additionals/
H A DGNETAZ.cpp441 int numberOfSources = 0; in updateAdditionalParent() local
458 numberOfSources++; in updateAdditionalParent()
476 myAverageWeightSource /= numberOfSources; in updateAdditionalParent()
/dports/math/vtk6/VTK-6.2.0/Rendering/Core/
H A DvtkGlyph3DMapper.cxx496 int numberOfSources=this->GetNumberOfInputConnections(1); in GetBoundsInternal() local
504 indexRange[i]=static_cast<int>((range[i]-this->Range[0])*numberOfSources/den); in GetBoundsInternal()
505 indexRange[i] = ::vtkClamp(indexRange[i], 0, numberOfSources-1); in GetBoundsInternal()
/dports/audio/praat/praat-6.2.03/dwtools/
H A DMDS.cpp1027 const integer numberOfSources = my size;
1028 Melder_require (numberOfSources > 1,
1045 for (integer i = 1; i <= numberOfSources; i ++) {
1052 pmean.all() *= 1.0 / numberOfSources;
1071 for (integer i = 1; i <= numberOfSources; i ++) {
1082 autoMAT a = raw_MAT (numberOfSources, numberOfSources);
1084 for (integer i = 1; i <= numberOfSources; i ++) {
1085 for (integer j = i; j <= numberOfSources; j ++) {
1096 for (integer i = 1; i <= numberOfSources; i ++) {
1121 for (integer i = 1; i <= numberOfSources; i ++) {
[all …]
H A DEditDistanceTable.cpp538 const integer numberOfSources = my numberOfColumns - 1, numberOfTargets = my numberOfRows - 1; in EditDistanceTable_findPath() local
572 const integer iy = numberOfTargets, ix = numberOfSources; in EditDistanceTable_findPath()
/dports/math/vtk6/VTK-6.2.0/Rendering/OpenGL2/
H A DvtkOpenGLGlyph3DMapper.cxx291 unsigned int numberOfSources = this->GetNumberOfInputConnections(1); in Render() local
293 if (numberOfSources != subarray->Entries.size()) in Render()
296 for (size_t cc = 0; cc < numberOfSources; cc++) in Render()
/dports/math/vtk9/VTK-9.1.0/Rendering/OpenGL2/
H A DvtkOpenGLGlyph3DMapper.cxx423 size_t numberOfSources = this->UseSourceTableTree ? sTTSize : numSourceDataSets; in Render() local
425 if (numberOfSources != subarray->Entries.size()) in Render()
428 for (size_t cc = 0; cc < numberOfSources; cc++) in Render()
/dports/math/vtk8/VTK-8.2.0/Rendering/OpenGL2/
H A DvtkOpenGLGlyph3DMapper.cxx419 size_t numberOfSources = this->UseSourceTableTree ? sTTSize in Render() local
422 if (numberOfSources != subarray->Entries.size()) in Render()
425 for (size_t cc = 0; cc < numberOfSources; cc++) in Render()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/elevation/
H A DossimElevManager.cpp474 long numberOfSources = (long)keys.size(); in loadState() local
477 std::vector<int> theNumberList(numberOfSources); in loadState()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/base/
H A DossimConnectableContainer.cpp592 long numberOfSources = (long)keys.size(); in addAllObjects() local
596 std::vector<int> theNumberList(numberOfSources); in addAllObjects()
/dports/net/pimcommon/pimcommon-21.12.3/src/pimcommonakonadi/addressline/addresslineedit/
H A Daddresseelineedit_p.cpp296 const int numberOfSources(sourcesAndWeights.size()); in adjustedCompletionItems() local
297 for (int i = 0; i < numberOfSources; ++i) { in adjustedCompletionItems()
/dports/devel/staf/src/staf/docs/userguide/
H A DDiagSrv.script170 :c.numberOfSources
346 :c.numberOfSources
436 :c.numberOfSources

12