Home
last modified time | relevance | path

Searched refs:arrayHandle (Results 1 – 25 of 46) sorted by relevance

12

/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/testing/
H A DTestingArrayHandles.h187 arrayHandle.ReleaseResourcesExecution();
189 arrayHandle.ReleaseResources();
211 vtkm::cont::ArrayHandle<T> arrayHandle =
262 arrayHandle.SyncControlArray();
278 arrayHandle.WritePortal();
361 arrayHandle.WritePortal();
513 vtkm::cont::ArrayHandle<T> arrayHandle;
540 arrayHandle.Allocate(ARRAY_SIZE * 2);
570 VTKM_TEST_ASSERT(arrayHandle == arrayHandle, "Array handle does not equal itself.");
588 auto copyOfHandle = arrayHandle;
[all …]
H A DUnitTestArrayHandleUniformPointCoordinates.cxx30 vtkm::cont::ArrayHandleUniformPointCoordinates arrayHandle(DIMENSIONS, ORIGIN, SPACING); in TestArrayHandleUniformPointCoordinates() local
31 VTKM_TEST_ASSERT(arrayHandle.GetNumberOfValues() == NUM_POINTS, in TestArrayHandleUniformPointCoordinates()
35 auto portal = arrayHandle.ReadPortal(); in TestArrayHandleUniformPointCoordinates()
H A DUnitTestArrayHandleCounting.cxx44 ArrayHandleType2 arrayHandle = ArrayHandleType(startingValue, step, ARRAY_SIZE); in operator ()() local
52 VTKM_TEST_ASSERT(arrayHandle.GetNumberOfValues() == ARRAY_SIZE, in operator ()()
58 auto arrayHandlePortal = arrayHandle.ReadPortal(); in operator ()()
H A DUnitTestArrayPortalToIterators.cxx159 vtkm::cont::ArrayHandle<T> arrayHandle = in TestSimpleIterators() local
188 auto portal = arrayHandle.WritePortal(); in TestSimpleIterators()
198 auto portal = arrayHandle.ReadPortal(); in TestSimpleIterators()
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/cont/testing/
H A DTestingArrayHandles.h151 arrayHandle = vtkm::cont::ArrayHandle<T>();
155 arrayHandle.Shrink(0);
157 arrayHandle.ReleaseResourcesExecution();
159 arrayHandle.ReleaseResources();
231 arrayHandle.GetPortalControl();
310 arrayHandle.GetPortalControl();
328 vtkm::cont::ArrayHandle<T> arrayHandle;
349 arrayHandle.Shrink(ARRAY_SIZE);
355 arrayHandle.Allocate(ARRAY_SIZE * 2);
372 arrayHandle.GetPortalConstControl();
[all …]
H A DUnitTestArrayHandleUniformPointCoordinates.cxx40 vtkm::cont::ArrayHandleUniformPointCoordinates arrayHandle(DIMENSIONS, ORIGIN, SPACING); in TestArrayHandleUniformPointCoordinates() local
41 VTKM_TEST_ASSERT(arrayHandle.GetNumberOfValues() == NUM_POINTS, in TestArrayHandleUniformPointCoordinates()
45 vtkm::internal::ArrayPortalUniformPointCoordinates portal = arrayHandle.GetPortalConstControl(); in TestArrayHandleUniformPointCoordinates()
H A DUnitTestArrayHandleCounting.cxx106 ArrayHandleType2 arrayHandle = ArrayHandleType2(PortalType(startingValue, step, ARRAY_SIZE)); in operator ()() local
114 VTKM_TEST_ASSERT(arrayHandle.GetNumberOfValues() == ARRAY_SIZE, in operator ()()
125 VTKM_TEST_ASSERT(arrayHandle.GetPortalConstControl().Get(index) == properValue, in operator ()()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/fides/vtkfides/fides/
H A DDataSource.cxx149 vtkm::cont::ArrayHandleBasic<VecType> arrayHandle; in AllocateArrayHandle() local
150 arrayHandle.Allocate(bufSize); in AllocateArrayHandle()
152 return arrayHandle; in AllocateArrayHandle()
251 retVal = arrayHandle; in ReadVariableInternal()
256 arrayHandle.Allocate(bufSize); in ReadVariableInternal()
257 buffer = arrayHandle.GetWritePointer(); in ReadVariableInternal()
258 retVal = arrayHandle; in ReadVariableInternal()
335 arrayHandle.Allocate(bufSize); in ReadMultiBlockVariableInternal()
337 retVal = arrayHandle; in ReadMultiBlockVariableInternal()
519 arrayHandle.Allocate(1); in GetScalarVariableInternal()
[all …]
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/docs/changelog/
H A Dstorage-free-functions.md14 vtkm::cont::ArrayHandle<T> arrayHandle;
15 //fill arrayHandle
18 auto free_function = arrayHandle.GetDeleteFunction();
19 T* ptr = arrayHandle.StealArray();
/dports/graphics/opendx/dx-4.4.4/include/dx/
H A Darrayhandles.h17 struct arrayHandle struct
51 struct arrayHandle **handles; argument
60 typedef struct arrayHandle *ArrayHandle; argument
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/
H A DUnknownArrayHandle.h39 AH* arrayHandle = reinterpret_cast<AH*>(mem); in UnknownAHDelete() local
40 delete arrayHandle; in UnknownAHDelete() local
53 AH* arrayHandle = reinterpret_cast<AH*>(mem); in UnknownAHNumberOfValues() local
54 return arrayHandle->GetNumberOfValues(); in UnknownAHNumberOfValues()
99 AH* arrayHandle = reinterpret_cast<AH*>(mem);
100 arrayHandle->Allocate(numValues);
108 AH* arrayHandle = reinterpret_cast<AH*>(mem);
118 AH* arrayHandle = reinterpret_cast<AH*>(mem);
119 arrayHandle->ReleaseResources();
126 AH* arrayHandle = reinterpret_cast<AH*>(mem);
[all …]
/dports/www/firefox-esr/firefox-91.8.0/remote/test/puppeteer/src/common/
H A DJSHandle.ts886 const arrayHandle = await queryHandler.queryAllArray(this, updatedSelector); constant
887 const result = await arrayHandle.evaluate<
893 await arrayHandle.dispose();
906 const arrayHandle = await this.evaluateHandle( constant
922 const properties = await arrayHandle.getProperties();
923 await arrayHandle.dispose();
H A DQueryHandler.ts98 const arrayHandle = await resultHandle.evaluateHandle( constant
101 return arrayHandle;
/dports/mail/thunderbird/thunderbird-91.8.0/remote/test/puppeteer/src/common/
H A DJSHandle.ts886 const arrayHandle = await queryHandler.queryAllArray(this, updatedSelector); constant
887 const result = await arrayHandle.evaluate<
893 await arrayHandle.dispose();
906 const arrayHandle = await this.evaluateHandle( constant
922 const properties = await arrayHandle.getProperties();
923 await arrayHandle.dispose();
H A DQueryHandler.ts98 const arrayHandle = await resultHandle.evaluateHandle( constant
101 return arrayHandle;
/dports/www/firefox/firefox-99.0/remote/test/puppeteer/src/common/
H A DJSHandle.ts1027 const arrayHandle = await queryHandler.queryAllArray(this, updatedSelector); constant
1028 const result = await arrayHandle.evaluate<
1034 await arrayHandle.dispose();
1047 const arrayHandle = await this.evaluateHandle( constant
1063 const properties = await arrayHandle.getProperties();
1064 await arrayHandle.dispose();
H A DQueryHandler.ts98 const arrayHandle = await resultHandle.evaluateHandle( constant
101 return arrayHandle;
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/ci/
H A DciArray.hpp44 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {} in ciArray()

12