Home
last modified time | relevance | path

Searched refs:inputStartIndex (Results 1 – 25 of 30) sorted by relevance

12

/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/cont/tbb/internal/
H A DDeviceAdapterAlgorithmTBB.h94 vtkm::Id inputStartIndex,
104 if (input == output && ((outputIndex >= inputStartIndex &&
105 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
106 (inputStartIndex >= outputIndex &&
107 inputStartIndex < outputIndex + numberOfElementsToCopy)))
112 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
113 inputStartIndex >= inSize)
119 if (inSize < (inputStartIndex + numberOfElementsToCopy))
121 numberOfElementsToCopy = (inSize - inputStartIndex);
146 inputPortal, outputPortal, inputStartIndex, outputIndex, numberOfElementsToCopy);
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/ImageGrid/include/
H A DitkPadImageFilter.hxx111 typename TInputImage::IndexType inputStartIndex; in GenerateOutputInformation() local
114 inputStartIndex = inputPtr->GetLargestPossibleRegion().GetIndex(); in GenerateOutputInformation()
119 outputStartIndex[i] = inputStartIndex[i] - static_cast< OffsetValueType >( m_PadLowerBound[i] ); in GenerateOutputInformation()
H A DitkFlipImageFilter.hxx58 const typename TImage::IndexType & inputStartIndex = in GenerateOutputInformation() local
62 typename TImage::IndexType newIndex = inputStartIndex; in GenerateOutputInformation()
81 newIndex[j] += inputStartIndex[j]; in GenerateOutputInformation()
H A DitkBSplineDownsampleImageFilter.hxx135 const typename TInputImage::IndexType & inputStartIndex = in GenerateOutputInformation() local
148 outputStartIndex[i] = (int)std::ceil( (double)inputStartIndex[i] / 2.0 ); in GenerateOutputInformation()
H A DitkShrinkImageFilter.hxx276 const typename TInputImage::IndexType & inputStartIndex = in GenerateOutputInformation() local
299 std::ceil( (double)inputStartIndex[i] / (double)m_ShrinkFactors[i] ) ); in GenerateOutputInformation()
310 inputCenterIndex[i] = inputStartIndex[i] + ( inputSize[i] - 1 ) / 2.0; in GenerateOutputInformation()
H A DitkBSplineUpsampleImageFilter.hxx148 const typename TInputImage::IndexType & inputStartIndex = in GenerateOutputInformation() local
161 outputStartIndex[i] = (int)std::ceil( (double)inputStartIndex[i] * 2.0 ); in GenerateOutputInformation()
H A DitkBinShrinkImageFilter.hxx290 …const typename TInputImage::IndexType & inputStartIndex = inputPtr->GetLargestPossibleRegion().Ge… in GenerateOutputInformation() local
305 …outputStartIndex[i] = Math::Ceil<SizeValueType>(inputStartIndex[i]/static_cast<double>( m_ShrinkFa… in GenerateOutputInformation()
309 …<SizeValueType>( (double)(inputSize[i] - outputStartIndex[i]*m_ShrinkFactors[i]+inputStartIndex[i]) in GenerateOutputInformation()
H A DitkSliceImageFilter.hxx251 typename TInputImage::IndexType inputStartIndex; in GenerateOutputInformation() local
288 inputStartIndex[i] = start; in GenerateOutputInformation()
306 inputPtr->TransformIndexToPhysicalPoint(inputStartIndex, outputOrigin); in GenerateOutputInformation()
H A DitkPermuteAxesImageFilter.hxx142 const typename TImage::IndexType & inputStartIndex = in GenerateOutputInformation() local
160 outputStartIndex[j] = inputStartIndex[m_Order[j]]; in GenerateOutputInformation()
H A DitkExpandImageFilter.hxx240 const typename TInputImage::IndexType & inputStartIndex = in GenerateOutputInformation() local
256 outputStartIndex[i] = inputStartIndex[i] * (IndexValueType)m_ExpandFactors[i]; in GenerateOutputInformation()
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/cont/serial/internal/
H A DDeviceAdapterAlgorithmSerial.h139 vtkm::Id inputStartIndex,
147 if (input == output && ((outputIndex >= inputStartIndex &&
148 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
149 (inputStartIndex >= outputIndex &&
150 inputStartIndex < outputIndex + numberOfElementsToCopy)))
155 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
156 inputStartIndex >= inSize)
162 if (inSize < (inputStartIndex + numberOfElementsToCopy))
164 numberOfElementsToCopy = (inSize - inputStartIndex);
193 DoCopy(inIter + inputStartIndex,
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/openmp/internal/
H A DDeviceAdapterAlgorithmOpenMP.h125 vtkm::Id inputStartIndex,
138 ((outputIndex >= inputStartIndex && outputIndex < inputStartIndex + numberOfValuesToCopy) ||
139 (inputStartIndex >= outputIndex && inputStartIndex < outputIndex + numberOfValuesToCopy)))
144 if (inputStartIndex < 0 || numberOfValuesToCopy < 0 || outputIndex < 0 ||
145 inputStartIndex >= inSize)
151 if (inSize < (inputStartIndex + numberOfValuesToCopy))
153 numberOfValuesToCopy = (inSize - inputStartIndex);
178 CopyHelper(inputPortal, outputPortal, inputStartIndex, outputIndex, numberOfValuesToCopy);
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/tbb/internal/
H A DDeviceAdapterAlgorithmTBB.h88 vtkm::Id inputStartIndex,
99 ((outputIndex >= inputStartIndex &&
100 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
101 (inputStartIndex >= outputIndex &&
102 inputStartIndex < outputIndex + numberOfElementsToCopy)))
107 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
108 inputStartIndex >= inSize)
114 if (inSize < (inputStartIndex + numberOfElementsToCopy))
116 numberOfElementsToCopy = (inSize - inputStartIndex);
142 inputPortal, outputPortal, inputStartIndex, outputIndex, numberOfElementsToCopy);
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/cont/openmp/internal/
H A DDeviceAdapterAlgorithmOpenMP.h132 vtkm::Id inputStartIndex,
145 ((outputIndex >= inputStartIndex && outputIndex < inputStartIndex + numberOfValuesToCopy) ||
146 (inputStartIndex >= outputIndex && inputStartIndex < outputIndex + numberOfValuesToCopy)))
151 if (inputStartIndex < 0 || numberOfValuesToCopy < 0 || outputIndex < 0 ||
152 inputStartIndex >= inSize)
158 if (inSize < (inputStartIndex + numberOfValuesToCopy))
160 numberOfValuesToCopy = (inSize - inputStartIndex);
184 CopyHelper(inputPortal, outputPortal, inputStartIndex, outputIndex, numberOfValuesToCopy);
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/FFT/include/
H A DitkHalfHermitianToRealInverseFFTImageFilter.hxx111 const typename InputImageType::IndexType & inputStartIndex = in GenerateOutputInformation() local
131 outputStartIndex[0] = inputStartIndex[0]; in GenerateOutputInformation()
136 outputStartIndex[i] = inputStartIndex[i]; in GenerateOutputInformation()
H A DitkRealToHalfHermitianForwardFFTImageFilter.hxx106 const InputIndexType inputStartIndex = inputPtr->GetLargestPossibleRegion().GetIndex(); in GenerateOutputInformation() local
118 outputStartIndex[0] = inputStartIndex[0]; in GenerateOutputInformation()
123 outputStartIndex[i] = inputStartIndex[i]; in GenerateOutputInformation()
H A DitkFullToHalfHermitianImageFilter.hxx56 const typename InputImageType::IndexType & inputStartIndex = in GenerateOutputInformation() local
65 outputStartIndex[i] = inputStartIndex[i]; in GenerateOutputInformation()
H A DitkHalfToFullHermitianImageFilter.hxx57 const typename InputImageType::IndexType & inputStartIndex = in GenerateOutputInformation() local
66 outputStartIndex[i] = inputStartIndex[i]; in GenerateOutputInformation()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/serial/internal/
H A DDeviceAdapterAlgorithmSerial.h147 vtkm::Id inputStartIndex,
158 ((outputIndex >= inputStartIndex &&
159 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
160 (inputStartIndex >= outputIndex &&
161 inputStartIndex < outputIndex + numberOfElementsToCopy)))
166 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
167 inputStartIndex >= inSize)
173 if (inSize < (inputStartIndex + numberOfElementsToCopy))
175 numberOfElementsToCopy = (inSize - inputStartIndex);
206 inputStartIndex,
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/cont/internal/
H A DDeviceAdapterAlgorithmGeneral.h195 vtkm::Id inputStartIndex,
205 if (input == output && ((outputIndex >= inputStartIndex &&
206 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
207 (inputStartIndex >= outputIndex &&
208 inputStartIndex < outputIndex + numberOfElementsToCopy)))
213 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
214 inputStartIndex >= inSize)
220 if (inSize < (inputStartIndex + numberOfElementsToCopy))
222 numberOfElementsToCopy = (inSize - inputStartIndex);
247 inputPortal, outputPortal, inputStartIndex, outputIndex);
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/internal/
H A DDeviceAdapterAlgorithmGeneral.h234 vtkm::Id inputStartIndex,
245 ((outputIndex >= inputStartIndex &&
246 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
247 (inputStartIndex >= outputIndex &&
248 inputStartIndex < outputIndex + numberOfElementsToCopy)))
253 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
254 inputStartIndex >= inSize)
260 if (inSize < (inputStartIndex + numberOfElementsToCopy))
262 numberOfElementsToCopy = (inSize - inputStartIndex);
289 inputPortal, outputPortal, inputStartIndex, outputIndex);
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/ImageIntensity/include/
H A DitkVectorExpandImageFilter.hxx250 const typename TInputImage::IndexType & inputStartIndex = in GenerateOutputInformation() local
269 ( (float)inputStartIndex[i] * m_ExpandFactors[i] in GenerateOutputInformation()
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/cont/cuda/internal/
H A DDeviceAdapterAlgorithmCuda.h793 vtkm::Id inputStartIndex,
803 if (input == output && ((outputIndex >= inputStartIndex &&
804 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
805 (inputStartIndex >= outputIndex &&
806 inputStartIndex < outputIndex + numberOfElementsToCopy)))
811 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
812 inputStartIndex >= inSize)
818 if (inSize < (inputStartIndex + numberOfElementsToCopy))
820 numberOfElementsToCopy = (inSize - inputStartIndex);
841 inputStartIndex,
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/cuda/internal/
H A DDeviceAdapterAlgorithmCuda.h1215 vtkm::Id inputStartIndex,
1226 ((outputIndex >= inputStartIndex &&
1227 outputIndex < inputStartIndex + numberOfElementsToCopy) ||
1228 (inputStartIndex >= outputIndex &&
1229 inputStartIndex < outputIndex + numberOfElementsToCopy)))
1234 if (inputStartIndex < 0 || numberOfElementsToCopy < 0 || outputIndex < 0 ||
1235 inputStartIndex >= inSize)
1241 if (inSize < (inputStartIndex + numberOfElementsToCopy))
1243 numberOfElementsToCopy = (inSize - inputStartIndex);
1265 inputStartIndex,
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Registration/Common/include/
H A DitkMultiResolutionPyramidImageFilter.hxx385 const typename InputImageType::IndexType & inputStartIndex = in GenerateOutputInformation() local
414 std::ceil(static_cast< double >( inputStartIndex[idim] ) / shrinkFactor) ); in GenerateOutputInformation()

12