Uses of Class
org.jocl.NativePointerObject
-
-
Uses of NativePointerObject in org.jocl
Subclasses of NativePointerObject in org.jocl Modifier and Type Class Description (package private) class
cl_abstract_properties
Abstract base class for CL properties, like cl_context_properties and cl_device_partition_propertyclass
cl_command_queue
Java port of a cl_command_queue.class
cl_context
Java port of a cl_context.class
cl_context_properties
Java port of cl_context_properties.class
cl_device_id
Java port of a cl_device_id.class
cl_device_partition_property
Java port of cl_device_partition_property.class
cl_event
Java port of a cl_event.class
cl_kernel
Java port of a cl_kernel.class
cl_mem
Java port of a cl_mem.class
cl_pipe_properties
Java port of cl_pipe_properties.class
cl_platform_id
Java port of a cl_platform_id.class
cl_program
Java port of a cl_program.class
cl_queue_properties
Java port of cl_queue_properties.class
cl_sampler
Java port of a cl_sampler.class
cl_sampler_properties
Java port of cl_sampler_properties.class
Pointer
A Java representation of a void pointer.Fields in org.jocl declared as NativePointerObject Modifier and Type Field Description private NativePointerObject[]
NativePointerObject. pointers
The array of pointers this pointer points toMethods in org.jocl that return NativePointerObject Modifier and Type Method Description (package private) NativePointerObject
NativePointerObject. withByteOffset(long byteOffset)
Returns a new pointer with an offset of the given number of bytesMethods in org.jocl with parameters of type NativePointerObject Modifier and Type Method Description static Pointer
Pointer. to(NativePointerObject pointer)
Creates a new Pointer to the given Pointer.static Pointer
Pointer. to(NativePointerObject... pointers)
Creates a new Pointer to the given Pointers.Constructors in org.jocl with parameters of type NativePointerObject Constructor Description NativePointerObject(NativePointerObject other)
Copy constructorNativePointerObject(NativePointerObject[] pointers)
Creates a Pointer to the given array of pointersNativePointerObject(NativePointerObject other, long byteOffset)
Creates a copy of the given pointer, with an additional byte offsetPointer(NativePointerObject[] pointers)
Creates a Pointer to the given array of pointers
-