Uses of Class
org.bytedeco.javacpp.LongPointer
-
Packages that use LongPointer Package Description org.bytedeco.javacpp Contains the main set of classes for JavaCPP at runtime.org.bytedeco.javacpp.indexer Contains classes for multidimensional access of arrays and buffers. -
-
Uses of LongPointer in org.bytedeco.javacpp
Methods in org.bytedeco.javacpp that return LongPointer Modifier and Type Method Description LongPointer
LongPointer. capacity(long capacity)
LongPointer
LongPointer. get(long[] array)
LongPointer
LongPointer. get(long[] array, int offset, int length)
Reads a portion of the native array into a Java array.LongPointer
LongPointer. getPointer(long i)
LongPointer
LongPointer. limit(long limit)
LongPointer
LongPointer. position(long position)
LongPointer
LongPointer. put(long l)
LongPointer
LongPointer. put(long... array)
LongPointer
LongPointer. put(long[] array, int offset, int length)
Writes a portion of a Java array into the native array.LongPointer
LongPointer. put(long i, long l)
Copies thelong long
value to the i-th element of a native array. -
Uses of LongPointer in org.bytedeco.javacpp.indexer
Fields in org.bytedeco.javacpp.indexer declared as LongPointer Modifier and Type Field Description protected LongPointer
LongRawIndexer. pointer
The backing pointer.protected LongPointer
ULongRawIndexer. pointer
The backing pointer.Methods in org.bytedeco.javacpp.indexer with parameters of type LongPointer Modifier and Type Method Description static LongIndexer
LongIndexer. create(LongPointer pointer)
Returnsnew LongRawIndexer(pointer)
static LongIndexer
LongIndexer. create(LongPointer pointer, long... sizes)
Returnsnew LongRawIndexer(pointer, sizes)
static LongIndexer
LongIndexer. create(LongPointer pointer, long[] sizes, long[] strides)
Returnsnew LongRawIndexer(pointer, sizes, strides)
static LongIndexer
LongIndexer. create(LongPointer pointer, long[] sizes, long[] strides, boolean direct)
Returnscreate(pointer, Index.create(sizes, strides), direct)
static LongIndexer
LongIndexer. create(LongPointer pointer, Index index)
Returnsnew LongRawIndexer(pointer, index)
static LongIndexer
LongIndexer. create(LongPointer pointer, Index index, boolean direct)
Creates a long indexer to access efficiently the data of a pointer.static ULongIndexer
ULongIndexer. create(LongPointer pointer)
Returnsnew ULongRawIndexer(pointer)
static ULongIndexer
ULongIndexer. create(LongPointer pointer, long... sizes)
Returnsnew ULongRawIndexer(pointer, sizes)
static ULongIndexer
ULongIndexer. create(LongPointer pointer, long[] sizes, long[] strides)
Returnsnew ULongRawIndexer(pointer, sizes, strides)
static ULongIndexer
ULongIndexer. create(LongPointer pointer, long[] sizes, long[] strides, boolean direct)
Returnscreate(pointer, Index.create(sizes, strides), direct)
static ULongIndexer
ULongIndexer. create(LongPointer pointer, Index index)
Returnsnew ULongRawIndexer(pointer, index)
static ULongIndexer
ULongIndexer. create(LongPointer pointer, Index index, boolean direct)
Creates a long indexer to access efficiently the data of a pointer.Constructors in org.bytedeco.javacpp.indexer with parameters of type LongPointer Constructor Description LongRawIndexer(LongPointer pointer)
CallsLongRawIndexer(pointer, Index.create(pointer.limit() - pointer.position()))
.LongRawIndexer(LongPointer pointer, long... sizes)
CallsLongRawIndexer(pointer, Index.create(sizes))
.LongRawIndexer(LongPointer pointer, long[] sizes, long[] strides)
CallsLongRawIndexer(pointer, Index.create(sizes, strides))
.LongRawIndexer(LongPointer pointer, Index index)
Constructor to set theLongRawIndexer.pointer
andIndexer.index
.ULongRawIndexer(LongPointer pointer)
CallsULongRawIndexer(pointer, Index.create(pointer.limit() - pointer.position()))
.ULongRawIndexer(LongPointer pointer, long... sizes)
CallsULongRawIndexer(pointer, Index.create(sizes))
.ULongRawIndexer(LongPointer pointer, long[] sizes, long[] strides)
CallsULongRawIndexer(pointer, Index.create(sizes, strides))
.ULongRawIndexer(LongPointer pointer, Index index)
Constructor to set theULongRawIndexer.pointer
andIndexer.index
.
-