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) classcl_abstract_propertiesAbstract base class for CL properties, like cl_context_properties and cl_device_partition_propertyclasscl_command_queueJava port of a cl_command_queue.classcl_contextJava port of a cl_context.classcl_context_propertiesJava port of cl_context_properties.classcl_device_idJava port of a cl_device_id.classcl_device_partition_propertyJava port of cl_device_partition_property.classcl_eventJava port of a cl_event.classcl_kernelJava port of a cl_kernel.classcl_memJava port of a cl_mem.classcl_pipe_propertiesJava port of cl_pipe_properties.classcl_platform_idJava port of a cl_platform_id.classcl_programJava port of a cl_program.classcl_queue_propertiesJava port of cl_queue_properties.classcl_samplerJava port of a cl_sampler.classcl_sampler_propertiesJava port of cl_sampler_properties.classPointerA Java representation of a void pointer.Fields in org.jocl declared as NativePointerObject Modifier and Type Field Description private NativePointerObject[]NativePointerObject. pointersThe array of pointers this pointer points toMethods in org.jocl that return NativePointerObject Modifier and Type Method Description (package private) NativePointerObjectNativePointerObject. 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 PointerPointer. to(NativePointerObject pointer)Creates a new Pointer to the given Pointer.static PointerPointer. 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
-