All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.cuda.CUDA_MEMCPY3D_PEER Maven / Gradle / Ivy

/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.cuda;

import javax.annotation.*;

import java.nio.*;

import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;

/**
 * 

Layout

* *

 * struct CUDA_MEMCPY3D_PEER {
 *     size_t srcXInBytes;
 *     size_t srcY;
 *     size_t srcZ;
 *     size_t srcLOD;
 *     CUmemorytype srcMemoryType;
 *     void const * srcHost;
 *     CUdeviceptr srcDevice;
 *     CUarray srcArray;
 *     CUcontext srcContext;
 *     size_t srcPitch;
 *     size_t srcHeight;
 *     size_t dstXInBytes;
 *     size_t dstY;
 *     size_t dstZ;
 *     size_t dstLOD;
 *     CUmemorytype dstMemoryType;
 *     void * dstHost;
 *     CUdeviceptr dstDevice;
 *     CUarray dstArray;
 *     CUcontext dstContext;
 *     size_t dstPitch;
 *     size_t dstHeight;
 *     size_t WidthInBytes;
 *     size_t Height;
 *     size_t Depth;
 * }
*/ public class CUDA_MEMCPY3D_PEER extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; /** The struct alignment in bytes. */ public static final int ALIGNOF; /** The struct member offsets. */ public static final int SRCXINBYTES, SRCY, SRCZ, SRCLOD, SRCMEMORYTYPE, SRCHOST, SRCDEVICE, SRCARRAY, SRCCONTEXT, SRCPITCH, SRCHEIGHT, DSTXINBYTES, DSTY, DSTZ, DSTLOD, DSTMEMORYTYPE, DSTHOST, DSTDEVICE, DSTARRAY, DSTCONTEXT, DSTPITCH, DSTHEIGHT, WIDTHINBYTES, HEIGHT, DEPTH; static { Layout layout = __struct( __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(4), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(4), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE), __member(POINTER_SIZE) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); SRCXINBYTES = layout.offsetof(0); SRCY = layout.offsetof(1); SRCZ = layout.offsetof(2); SRCLOD = layout.offsetof(3); SRCMEMORYTYPE = layout.offsetof(4); SRCHOST = layout.offsetof(5); SRCDEVICE = layout.offsetof(6); SRCARRAY = layout.offsetof(7); SRCCONTEXT = layout.offsetof(8); SRCPITCH = layout.offsetof(9); SRCHEIGHT = layout.offsetof(10); DSTXINBYTES = layout.offsetof(11); DSTY = layout.offsetof(12); DSTZ = layout.offsetof(13); DSTLOD = layout.offsetof(14); DSTMEMORYTYPE = layout.offsetof(15); DSTHOST = layout.offsetof(16); DSTDEVICE = layout.offsetof(17); DSTARRAY = layout.offsetof(18); DSTCONTEXT = layout.offsetof(19); DSTPITCH = layout.offsetof(20); DSTHEIGHT = layout.offsetof(21); WIDTHINBYTES = layout.offsetof(22); HEIGHT = layout.offsetof(23); DEPTH = layout.offsetof(24); } protected CUDA_MEMCPY3D_PEER(long address, @Nullable ByteBuffer container) { super(address, container); } @Override protected CUDA_MEMCPY3D_PEER create(long address, @Nullable ByteBuffer container) { return new CUDA_MEMCPY3D_PEER(address, container); } /** * Creates a {@code CUDA_MEMCPY3D_PEER} instance at the current position of the specified {@link ByteBuffer} container. Changes to the buffer's content will be * visible to the struct instance and vice versa. * *

The created instance holds a strong reference to the container object.

*/ public CUDA_MEMCPY3D_PEER(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** @return the value of the {@code srcXInBytes} field. */ @NativeType("size_t") public long srcXInBytes() { return nsrcXInBytes(address()); } /** @return the value of the {@code srcY} field. */ @NativeType("size_t") public long srcY() { return nsrcY(address()); } /** @return the value of the {@code srcZ} field. */ @NativeType("size_t") public long srcZ() { return nsrcZ(address()); } /** @return the value of the {@code srcLOD} field. */ @NativeType("size_t") public long srcLOD() { return nsrcLOD(address()); } /** @return the value of the {@code srcMemoryType} field. */ @NativeType("CUmemorytype") public int srcMemoryType() { return nsrcMemoryType(address()); } /** * @return a {@link ByteBuffer} view of the data pointed to by the {@code srcHost} field. * * @param capacity the number of elements in the returned buffer */ @Nullable @NativeType("void const *") public ByteBuffer srcHost(int capacity) { return nsrcHost(address(), capacity); } /** @return the value of the {@code srcDevice} field. */ @NativeType("CUdeviceptr") public long srcDevice() { return nsrcDevice(address()); } /** @return the value of the {@code srcArray} field. */ @NativeType("CUarray") public long srcArray() { return nsrcArray(address()); } /** @return the value of the {@code srcContext} field. */ @NativeType("CUcontext") public long srcContext() { return nsrcContext(address()); } /** @return the value of the {@code srcPitch} field. */ @NativeType("size_t") public long srcPitch() { return nsrcPitch(address()); } /** @return the value of the {@code srcHeight} field. */ @NativeType("size_t") public long srcHeight() { return nsrcHeight(address()); } /** @return the value of the {@code dstXInBytes} field. */ @NativeType("size_t") public long dstXInBytes() { return ndstXInBytes(address()); } /** @return the value of the {@code dstY} field. */ @NativeType("size_t") public long dstY() { return ndstY(address()); } /** @return the value of the {@code dstZ} field. */ @NativeType("size_t") public long dstZ() { return ndstZ(address()); } /** @return the value of the {@code dstLOD} field. */ @NativeType("size_t") public long dstLOD() { return ndstLOD(address()); } /** @return the value of the {@code dstMemoryType} field. */ @NativeType("CUmemorytype") public int dstMemoryType() { return ndstMemoryType(address()); } /** * @return a {@link ByteBuffer} view of the data pointed to by the {@code dstHost} field. * * @param capacity the number of elements in the returned buffer */ @Nullable @NativeType("void *") public ByteBuffer dstHost(int capacity) { return ndstHost(address(), capacity); } /** @return the value of the {@code dstDevice} field. */ @NativeType("CUdeviceptr") public long dstDevice() { return ndstDevice(address()); } /** @return the value of the {@code dstArray} field. */ @NativeType("CUarray") public long dstArray() { return ndstArray(address()); } /** @return the value of the {@code dstContext} field. */ @NativeType("CUcontext") public long dstContext() { return ndstContext(address()); } /** @return the value of the {@code dstPitch} field. */ @NativeType("size_t") public long dstPitch() { return ndstPitch(address()); } /** @return the value of the {@code dstHeight} field. */ @NativeType("size_t") public long dstHeight() { return ndstHeight(address()); } /** @return the value of the {@code WidthInBytes} field. */ @NativeType("size_t") public long WidthInBytes() { return nWidthInBytes(address()); } /** @return the value of the {@code Height} field. */ @NativeType("size_t") public long Height() { return nHeight(address()); } /** @return the value of the {@code Depth} field. */ @NativeType("size_t") public long Depth() { return nDepth(address()); } /** Sets the specified value to the {@code srcXInBytes} field. */ public CUDA_MEMCPY3D_PEER srcXInBytes(@NativeType("size_t") long value) { nsrcXInBytes(address(), value); return this; } /** Sets the specified value to the {@code srcY} field. */ public CUDA_MEMCPY3D_PEER srcY(@NativeType("size_t") long value) { nsrcY(address(), value); return this; } /** Sets the specified value to the {@code srcZ} field. */ public CUDA_MEMCPY3D_PEER srcZ(@NativeType("size_t") long value) { nsrcZ(address(), value); return this; } /** Sets the specified value to the {@code srcLOD} field. */ public CUDA_MEMCPY3D_PEER srcLOD(@NativeType("size_t") long value) { nsrcLOD(address(), value); return this; } /** Sets the specified value to the {@code srcMemoryType} field. */ public CUDA_MEMCPY3D_PEER srcMemoryType(@NativeType("CUmemorytype") int value) { nsrcMemoryType(address(), value); return this; } /** Sets the address of the specified {@link ByteBuffer} to the {@code srcHost} field. */ public CUDA_MEMCPY3D_PEER srcHost(@Nullable @NativeType("void const *") ByteBuffer value) { nsrcHost(address(), value); return this; } /** Sets the specified value to the {@code srcDevice} field. */ public CUDA_MEMCPY3D_PEER srcDevice(@NativeType("CUdeviceptr") long value) { nsrcDevice(address(), value); return this; } /** Sets the specified value to the {@code srcArray} field. */ public CUDA_MEMCPY3D_PEER srcArray(@NativeType("CUarray") long value) { nsrcArray(address(), value); return this; } /** Sets the specified value to the {@code srcContext} field. */ public CUDA_MEMCPY3D_PEER srcContext(@NativeType("CUcontext") long value) { nsrcContext(address(), value); return this; } /** Sets the specified value to the {@code srcPitch} field. */ public CUDA_MEMCPY3D_PEER srcPitch(@NativeType("size_t") long value) { nsrcPitch(address(), value); return this; } /** Sets the specified value to the {@code srcHeight} field. */ public CUDA_MEMCPY3D_PEER srcHeight(@NativeType("size_t") long value) { nsrcHeight(address(), value); return this; } /** Sets the specified value to the {@code dstXInBytes} field. */ public CUDA_MEMCPY3D_PEER dstXInBytes(@NativeType("size_t") long value) { ndstXInBytes(address(), value); return this; } /** Sets the specified value to the {@code dstY} field. */ public CUDA_MEMCPY3D_PEER dstY(@NativeType("size_t") long value) { ndstY(address(), value); return this; } /** Sets the specified value to the {@code dstZ} field. */ public CUDA_MEMCPY3D_PEER dstZ(@NativeType("size_t") long value) { ndstZ(address(), value); return this; } /** Sets the specified value to the {@code dstLOD} field. */ public CUDA_MEMCPY3D_PEER dstLOD(@NativeType("size_t") long value) { ndstLOD(address(), value); return this; } /** Sets the specified value to the {@code dstMemoryType} field. */ public CUDA_MEMCPY3D_PEER dstMemoryType(@NativeType("CUmemorytype") int value) { ndstMemoryType(address(), value); return this; } /** Sets the address of the specified {@link ByteBuffer} to the {@code dstHost} field. */ public CUDA_MEMCPY3D_PEER dstHost(@Nullable @NativeType("void *") ByteBuffer value) { ndstHost(address(), value); return this; } /** Sets the specified value to the {@code dstDevice} field. */ public CUDA_MEMCPY3D_PEER dstDevice(@NativeType("CUdeviceptr") long value) { ndstDevice(address(), value); return this; } /** Sets the specified value to the {@code dstArray} field. */ public CUDA_MEMCPY3D_PEER dstArray(@NativeType("CUarray") long value) { ndstArray(address(), value); return this; } /** Sets the specified value to the {@code dstContext} field. */ public CUDA_MEMCPY3D_PEER dstContext(@NativeType("CUcontext") long value) { ndstContext(address(), value); return this; } /** Sets the specified value to the {@code dstPitch} field. */ public CUDA_MEMCPY3D_PEER dstPitch(@NativeType("size_t") long value) { ndstPitch(address(), value); return this; } /** Sets the specified value to the {@code dstHeight} field. */ public CUDA_MEMCPY3D_PEER dstHeight(@NativeType("size_t") long value) { ndstHeight(address(), value); return this; } /** Sets the specified value to the {@code WidthInBytes} field. */ public CUDA_MEMCPY3D_PEER WidthInBytes(@NativeType("size_t") long value) { nWidthInBytes(address(), value); return this; } /** Sets the specified value to the {@code Height} field. */ public CUDA_MEMCPY3D_PEER Height(@NativeType("size_t") long value) { nHeight(address(), value); return this; } /** Sets the specified value to the {@code Depth} field. */ public CUDA_MEMCPY3D_PEER Depth(@NativeType("size_t") long value) { nDepth(address(), value); return this; } /** Initializes this struct with the specified values. */ public CUDA_MEMCPY3D_PEER set( long srcXInBytes, long srcY, long srcZ, long srcLOD, int srcMemoryType, @Nullable ByteBuffer srcHost, long srcDevice, long srcArray, long srcContext, long srcPitch, long srcHeight, long dstXInBytes, long dstY, long dstZ, long dstLOD, int dstMemoryType, @Nullable ByteBuffer dstHost, long dstDevice, long dstArray, long dstContext, long dstPitch, long dstHeight, long WidthInBytes, long Height, long Depth ) { srcXInBytes(srcXInBytes); srcY(srcY); srcZ(srcZ); srcLOD(srcLOD); srcMemoryType(srcMemoryType); srcHost(srcHost); srcDevice(srcDevice); srcArray(srcArray); srcContext(srcContext); srcPitch(srcPitch); srcHeight(srcHeight); dstXInBytes(dstXInBytes); dstY(dstY); dstZ(dstZ); dstLOD(dstLOD); dstMemoryType(dstMemoryType); dstHost(dstHost); dstDevice(dstDevice); dstArray(dstArray); dstContext(dstContext); dstPitch(dstPitch); dstHeight(dstHeight); WidthInBytes(WidthInBytes); Height(Height); Depth(Depth); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public CUDA_MEMCPY3D_PEER set(CUDA_MEMCPY3D_PEER src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code CUDA_MEMCPY3D_PEER} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static CUDA_MEMCPY3D_PEER malloc() { return new CUDA_MEMCPY3D_PEER(nmemAllocChecked(SIZEOF), null); } /** Returns a new {@code CUDA_MEMCPY3D_PEER} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static CUDA_MEMCPY3D_PEER calloc() { return new CUDA_MEMCPY3D_PEER(nmemCallocChecked(1, SIZEOF), null); } /** Returns a new {@code CUDA_MEMCPY3D_PEER} instance allocated with {@link BufferUtils}. */ public static CUDA_MEMCPY3D_PEER create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return new CUDA_MEMCPY3D_PEER(memAddress(container), container); } /** Returns a new {@code CUDA_MEMCPY3D_PEER} instance for the specified memory address. */ public static CUDA_MEMCPY3D_PEER create(long address) { return new CUDA_MEMCPY3D_PEER(address, null); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static CUDA_MEMCPY3D_PEER createSafe(long address) { return address == NULL ? null : new CUDA_MEMCPY3D_PEER(address, null); } /** * Returns a new {@link CUDA_MEMCPY3D_PEER.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static CUDA_MEMCPY3D_PEER.Buffer malloc(int capacity) { return new Buffer(nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link CUDA_MEMCPY3D_PEER.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static CUDA_MEMCPY3D_PEER.Buffer calloc(int capacity) { return new Buffer(nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link CUDA_MEMCPY3D_PEER.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static CUDA_MEMCPY3D_PEER.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return new Buffer(memAddress(container), container, -1, 0, capacity, capacity); } /** * Create a {@link CUDA_MEMCPY3D_PEER.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static CUDA_MEMCPY3D_PEER.Buffer create(long address, int capacity) { return new Buffer(address, capacity); } /** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static CUDA_MEMCPY3D_PEER.Buffer createSafe(long address, int capacity) { return address == NULL ? null : new Buffer(address, capacity); } // ----------------------------------- /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER mallocStack() { return malloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER callocStack() { return calloc(stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER mallocStack(MemoryStack stack) { return malloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER callocStack(MemoryStack stack) { return calloc(stack); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER.Buffer mallocStack(int capacity) { return malloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER.Buffer callocStack(int capacity) { return calloc(capacity, stackGet()); } /** Deprecated for removal in 3.4.0. Use {@link #malloc(int, MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER.Buffer mallocStack(int capacity, MemoryStack stack) { return malloc(capacity, stack); } /** Deprecated for removal in 3.4.0. Use {@link #calloc(int, MemoryStack)} instead. */ @Deprecated public static CUDA_MEMCPY3D_PEER.Buffer callocStack(int capacity, MemoryStack stack) { return calloc(capacity, stack); } /** * Returns a new {@code CUDA_MEMCPY3D_PEER} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static CUDA_MEMCPY3D_PEER malloc(MemoryStack stack) { return new CUDA_MEMCPY3D_PEER(stack.nmalloc(ALIGNOF, SIZEOF), null); } /** * Returns a new {@code CUDA_MEMCPY3D_PEER} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static CUDA_MEMCPY3D_PEER calloc(MemoryStack stack) { return new CUDA_MEMCPY3D_PEER(stack.ncalloc(ALIGNOF, 1, SIZEOF), null); } /** * Returns a new {@link CUDA_MEMCPY3D_PEER.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static CUDA_MEMCPY3D_PEER.Buffer malloc(int capacity, MemoryStack stack) { return new Buffer(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link CUDA_MEMCPY3D_PEER.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static CUDA_MEMCPY3D_PEER.Buffer calloc(int capacity, MemoryStack stack) { return new Buffer(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #srcXInBytes}. */ public static long nsrcXInBytes(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCXINBYTES); } /** Unsafe version of {@link #srcY}. */ public static long nsrcY(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCY); } /** Unsafe version of {@link #srcZ}. */ public static long nsrcZ(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCZ); } /** Unsafe version of {@link #srcLOD}. */ public static long nsrcLOD(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCLOD); } /** Unsafe version of {@link #srcMemoryType}. */ public static int nsrcMemoryType(long struct) { return UNSAFE.getInt(null, struct + CUDA_MEMCPY3D_PEER.SRCMEMORYTYPE); } /** Unsafe version of {@link #srcHost(int) srcHost}. */ @Nullable public static ByteBuffer nsrcHost(long struct, int capacity) { return memByteBufferSafe(memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCHOST), capacity); } /** Unsafe version of {@link #srcDevice}. */ public static long nsrcDevice(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCDEVICE); } /** Unsafe version of {@link #srcArray}. */ public static long nsrcArray(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCARRAY); } /** Unsafe version of {@link #srcContext}. */ public static long nsrcContext(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCCONTEXT); } /** Unsafe version of {@link #srcPitch}. */ public static long nsrcPitch(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCPITCH); } /** Unsafe version of {@link #srcHeight}. */ public static long nsrcHeight(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.SRCHEIGHT); } /** Unsafe version of {@link #dstXInBytes}. */ public static long ndstXInBytes(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTXINBYTES); } /** Unsafe version of {@link #dstY}. */ public static long ndstY(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTY); } /** Unsafe version of {@link #dstZ}. */ public static long ndstZ(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTZ); } /** Unsafe version of {@link #dstLOD}. */ public static long ndstLOD(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTLOD); } /** Unsafe version of {@link #dstMemoryType}. */ public static int ndstMemoryType(long struct) { return UNSAFE.getInt(null, struct + CUDA_MEMCPY3D_PEER.DSTMEMORYTYPE); } /** Unsafe version of {@link #dstHost(int) dstHost}. */ @Nullable public static ByteBuffer ndstHost(long struct, int capacity) { return memByteBufferSafe(memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTHOST), capacity); } /** Unsafe version of {@link #dstDevice}. */ public static long ndstDevice(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTDEVICE); } /** Unsafe version of {@link #dstArray}. */ public static long ndstArray(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTARRAY); } /** Unsafe version of {@link #dstContext}. */ public static long ndstContext(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTCONTEXT); } /** Unsafe version of {@link #dstPitch}. */ public static long ndstPitch(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTPITCH); } /** Unsafe version of {@link #dstHeight}. */ public static long ndstHeight(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DSTHEIGHT); } /** Unsafe version of {@link #WidthInBytes}. */ public static long nWidthInBytes(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.WIDTHINBYTES); } /** Unsafe version of {@link #Height}. */ public static long nHeight(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.HEIGHT); } /** Unsafe version of {@link #Depth}. */ public static long nDepth(long struct) { return memGetAddress(struct + CUDA_MEMCPY3D_PEER.DEPTH); } /** Unsafe version of {@link #srcXInBytes(long) srcXInBytes}. */ public static void nsrcXInBytes(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCXINBYTES, value); } /** Unsafe version of {@link #srcY(long) srcY}. */ public static void nsrcY(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCY, value); } /** Unsafe version of {@link #srcZ(long) srcZ}. */ public static void nsrcZ(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCZ, value); } /** Unsafe version of {@link #srcLOD(long) srcLOD}. */ public static void nsrcLOD(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCLOD, value); } /** Unsafe version of {@link #srcMemoryType(int) srcMemoryType}. */ public static void nsrcMemoryType(long struct, int value) { UNSAFE.putInt(null, struct + CUDA_MEMCPY3D_PEER.SRCMEMORYTYPE, value); } /** Unsafe version of {@link #srcHost(ByteBuffer) srcHost}. */ public static void nsrcHost(long struct, @Nullable ByteBuffer value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCHOST, memAddressSafe(value)); } /** Unsafe version of {@link #srcDevice(long) srcDevice}. */ public static void nsrcDevice(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCDEVICE, value); } /** Unsafe version of {@link #srcArray(long) srcArray}. */ public static void nsrcArray(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCARRAY, value); } /** Unsafe version of {@link #srcContext(long) srcContext}. */ public static void nsrcContext(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCCONTEXT, value); } /** Unsafe version of {@link #srcPitch(long) srcPitch}. */ public static void nsrcPitch(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCPITCH, value); } /** Unsafe version of {@link #srcHeight(long) srcHeight}. */ public static void nsrcHeight(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.SRCHEIGHT, value); } /** Unsafe version of {@link #dstXInBytes(long) dstXInBytes}. */ public static void ndstXInBytes(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTXINBYTES, value); } /** Unsafe version of {@link #dstY(long) dstY}. */ public static void ndstY(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTY, value); } /** Unsafe version of {@link #dstZ(long) dstZ}. */ public static void ndstZ(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTZ, value); } /** Unsafe version of {@link #dstLOD(long) dstLOD}. */ public static void ndstLOD(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTLOD, value); } /** Unsafe version of {@link #dstMemoryType(int) dstMemoryType}. */ public static void ndstMemoryType(long struct, int value) { UNSAFE.putInt(null, struct + CUDA_MEMCPY3D_PEER.DSTMEMORYTYPE, value); } /** Unsafe version of {@link #dstHost(ByteBuffer) dstHost}. */ public static void ndstHost(long struct, @Nullable ByteBuffer value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTHOST, memAddressSafe(value)); } /** Unsafe version of {@link #dstDevice(long) dstDevice}. */ public static void ndstDevice(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTDEVICE, value); } /** Unsafe version of {@link #dstArray(long) dstArray}. */ public static void ndstArray(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTARRAY, value); } /** Unsafe version of {@link #dstContext(long) dstContext}. */ public static void ndstContext(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTCONTEXT, value); } /** Unsafe version of {@link #dstPitch(long) dstPitch}. */ public static void ndstPitch(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTPITCH, value); } /** Unsafe version of {@link #dstHeight(long) dstHeight}. */ public static void ndstHeight(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DSTHEIGHT, value); } /** Unsafe version of {@link #WidthInBytes(long) WidthInBytes}. */ public static void nWidthInBytes(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.WIDTHINBYTES, value); } /** Unsafe version of {@link #Height(long) Height}. */ public static void nHeight(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.HEIGHT, value); } /** Unsafe version of {@link #Depth(long) Depth}. */ public static void nDepth(long struct, long value) { memPutAddress(struct + CUDA_MEMCPY3D_PEER.DEPTH, value); } // ----------------------------------- /** An array of {@link CUDA_MEMCPY3D_PEER} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final CUDA_MEMCPY3D_PEER ELEMENT_FACTORY = CUDA_MEMCPY3D_PEER.create(-1L); /** * Creates a new {@code CUDA_MEMCPY3D_PEER.Buffer} instance backed by the specified container. * *

Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values * will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided * by {@link CUDA_MEMCPY3D_PEER#SIZEOF}, and its mark will be undefined.

* *

The created buffer instance holds a strong reference to the container object.

*/ public Buffer(ByteBuffer container) { super(container, container.remaining() / SIZEOF); } public Buffer(long address, int cap) { super(address, null, -1, 0, cap, cap); } Buffer(long address, @Nullable ByteBuffer container, int mark, int pos, int lim, int cap) { super(address, container, mark, pos, lim, cap); } @Override protected Buffer self() { return this; } @Override protected CUDA_MEMCPY3D_PEER getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@code srcXInBytes} field. */ @NativeType("size_t") public long srcXInBytes() { return CUDA_MEMCPY3D_PEER.nsrcXInBytes(address()); } /** @return the value of the {@code srcY} field. */ @NativeType("size_t") public long srcY() { return CUDA_MEMCPY3D_PEER.nsrcY(address()); } /** @return the value of the {@code srcZ} field. */ @NativeType("size_t") public long srcZ() { return CUDA_MEMCPY3D_PEER.nsrcZ(address()); } /** @return the value of the {@code srcLOD} field. */ @NativeType("size_t") public long srcLOD() { return CUDA_MEMCPY3D_PEER.nsrcLOD(address()); } /** @return the value of the {@code srcMemoryType} field. */ @NativeType("CUmemorytype") public int srcMemoryType() { return CUDA_MEMCPY3D_PEER.nsrcMemoryType(address()); } /** * @return a {@link ByteBuffer} view of the data pointed to by the {@code srcHost} field. * * @param capacity the number of elements in the returned buffer */ @Nullable @NativeType("void const *") public ByteBuffer srcHost(int capacity) { return CUDA_MEMCPY3D_PEER.nsrcHost(address(), capacity); } /** @return the value of the {@code srcDevice} field. */ @NativeType("CUdeviceptr") public long srcDevice() { return CUDA_MEMCPY3D_PEER.nsrcDevice(address()); } /** @return the value of the {@code srcArray} field. */ @NativeType("CUarray") public long srcArray() { return CUDA_MEMCPY3D_PEER.nsrcArray(address()); } /** @return the value of the {@code srcContext} field. */ @NativeType("CUcontext") public long srcContext() { return CUDA_MEMCPY3D_PEER.nsrcContext(address()); } /** @return the value of the {@code srcPitch} field. */ @NativeType("size_t") public long srcPitch() { return CUDA_MEMCPY3D_PEER.nsrcPitch(address()); } /** @return the value of the {@code srcHeight} field. */ @NativeType("size_t") public long srcHeight() { return CUDA_MEMCPY3D_PEER.nsrcHeight(address()); } /** @return the value of the {@code dstXInBytes} field. */ @NativeType("size_t") public long dstXInBytes() { return CUDA_MEMCPY3D_PEER.ndstXInBytes(address()); } /** @return the value of the {@code dstY} field. */ @NativeType("size_t") public long dstY() { return CUDA_MEMCPY3D_PEER.ndstY(address()); } /** @return the value of the {@code dstZ} field. */ @NativeType("size_t") public long dstZ() { return CUDA_MEMCPY3D_PEER.ndstZ(address()); } /** @return the value of the {@code dstLOD} field. */ @NativeType("size_t") public long dstLOD() { return CUDA_MEMCPY3D_PEER.ndstLOD(address()); } /** @return the value of the {@code dstMemoryType} field. */ @NativeType("CUmemorytype") public int dstMemoryType() { return CUDA_MEMCPY3D_PEER.ndstMemoryType(address()); } /** * @return a {@link ByteBuffer} view of the data pointed to by the {@code dstHost} field. * * @param capacity the number of elements in the returned buffer */ @Nullable @NativeType("void *") public ByteBuffer dstHost(int capacity) { return CUDA_MEMCPY3D_PEER.ndstHost(address(), capacity); } /** @return the value of the {@code dstDevice} field. */ @NativeType("CUdeviceptr") public long dstDevice() { return CUDA_MEMCPY3D_PEER.ndstDevice(address()); } /** @return the value of the {@code dstArray} field. */ @NativeType("CUarray") public long dstArray() { return CUDA_MEMCPY3D_PEER.ndstArray(address()); } /** @return the value of the {@code dstContext} field. */ @NativeType("CUcontext") public long dstContext() { return CUDA_MEMCPY3D_PEER.ndstContext(address()); } /** @return the value of the {@code dstPitch} field. */ @NativeType("size_t") public long dstPitch() { return CUDA_MEMCPY3D_PEER.ndstPitch(address()); } /** @return the value of the {@code dstHeight} field. */ @NativeType("size_t") public long dstHeight() { return CUDA_MEMCPY3D_PEER.ndstHeight(address()); } /** @return the value of the {@code WidthInBytes} field. */ @NativeType("size_t") public long WidthInBytes() { return CUDA_MEMCPY3D_PEER.nWidthInBytes(address()); } /** @return the value of the {@code Height} field. */ @NativeType("size_t") public long Height() { return CUDA_MEMCPY3D_PEER.nHeight(address()); } /** @return the value of the {@code Depth} field. */ @NativeType("size_t") public long Depth() { return CUDA_MEMCPY3D_PEER.nDepth(address()); } /** Sets the specified value to the {@code srcXInBytes} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcXInBytes(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nsrcXInBytes(address(), value); return this; } /** Sets the specified value to the {@code srcY} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcY(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nsrcY(address(), value); return this; } /** Sets the specified value to the {@code srcZ} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcZ(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nsrcZ(address(), value); return this; } /** Sets the specified value to the {@code srcLOD} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcLOD(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nsrcLOD(address(), value); return this; } /** Sets the specified value to the {@code srcMemoryType} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcMemoryType(@NativeType("CUmemorytype") int value) { CUDA_MEMCPY3D_PEER.nsrcMemoryType(address(), value); return this; } /** Sets the address of the specified {@link ByteBuffer} to the {@code srcHost} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcHost(@Nullable @NativeType("void const *") ByteBuffer value) { CUDA_MEMCPY3D_PEER.nsrcHost(address(), value); return this; } /** Sets the specified value to the {@code srcDevice} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcDevice(@NativeType("CUdeviceptr") long value) { CUDA_MEMCPY3D_PEER.nsrcDevice(address(), value); return this; } /** Sets the specified value to the {@code srcArray} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcArray(@NativeType("CUarray") long value) { CUDA_MEMCPY3D_PEER.nsrcArray(address(), value); return this; } /** Sets the specified value to the {@code srcContext} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcContext(@NativeType("CUcontext") long value) { CUDA_MEMCPY3D_PEER.nsrcContext(address(), value); return this; } /** Sets the specified value to the {@code srcPitch} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcPitch(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nsrcPitch(address(), value); return this; } /** Sets the specified value to the {@code srcHeight} field. */ public CUDA_MEMCPY3D_PEER.Buffer srcHeight(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nsrcHeight(address(), value); return this; } /** Sets the specified value to the {@code dstXInBytes} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstXInBytes(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.ndstXInBytes(address(), value); return this; } /** Sets the specified value to the {@code dstY} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstY(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.ndstY(address(), value); return this; } /** Sets the specified value to the {@code dstZ} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstZ(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.ndstZ(address(), value); return this; } /** Sets the specified value to the {@code dstLOD} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstLOD(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.ndstLOD(address(), value); return this; } /** Sets the specified value to the {@code dstMemoryType} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstMemoryType(@NativeType("CUmemorytype") int value) { CUDA_MEMCPY3D_PEER.ndstMemoryType(address(), value); return this; } /** Sets the address of the specified {@link ByteBuffer} to the {@code dstHost} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstHost(@Nullable @NativeType("void *") ByteBuffer value) { CUDA_MEMCPY3D_PEER.ndstHost(address(), value); return this; } /** Sets the specified value to the {@code dstDevice} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstDevice(@NativeType("CUdeviceptr") long value) { CUDA_MEMCPY3D_PEER.ndstDevice(address(), value); return this; } /** Sets the specified value to the {@code dstArray} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstArray(@NativeType("CUarray") long value) { CUDA_MEMCPY3D_PEER.ndstArray(address(), value); return this; } /** Sets the specified value to the {@code dstContext} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstContext(@NativeType("CUcontext") long value) { CUDA_MEMCPY3D_PEER.ndstContext(address(), value); return this; } /** Sets the specified value to the {@code dstPitch} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstPitch(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.ndstPitch(address(), value); return this; } /** Sets the specified value to the {@code dstHeight} field. */ public CUDA_MEMCPY3D_PEER.Buffer dstHeight(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.ndstHeight(address(), value); return this; } /** Sets the specified value to the {@code WidthInBytes} field. */ public CUDA_MEMCPY3D_PEER.Buffer WidthInBytes(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nWidthInBytes(address(), value); return this; } /** Sets the specified value to the {@code Height} field. */ public CUDA_MEMCPY3D_PEER.Buffer Height(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nHeight(address(), value); return this; } /** Sets the specified value to the {@code Depth} field. */ public CUDA_MEMCPY3D_PEER.Buffer Depth(@NativeType("size_t") long value) { CUDA_MEMCPY3D_PEER.nDepth(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy