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 LongPointerLongPointer. capacity(long capacity)LongPointerLongPointer. get(long[] array)LongPointerLongPointer. get(long[] array, int offset, int length)Reads a portion of the native array into a Java array.LongPointerLongPointer. getPointer(long i)LongPointerLongPointer. limit(long limit)LongPointerLongPointer. position(long position)LongPointerLongPointer. put(long l)LongPointerLongPointer. put(long... array)LongPointerLongPointer. put(long[] array, int offset, int length)Writes a portion of a Java array into the native array.LongPointerLongPointer. put(long i, long l)Copies thelong longvalue 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 LongPointerLongRawIndexer. pointerThe backing pointer.protected LongPointerULongRawIndexer. pointerThe backing pointer.Methods in org.bytedeco.javacpp.indexer with parameters of type LongPointer Modifier and Type Method Description static LongIndexerLongIndexer. create(LongPointer pointer)Returnsnew LongRawIndexer(pointer)static LongIndexerLongIndexer. create(LongPointer pointer, long... sizes)Returnsnew LongRawIndexer(pointer, sizes)static LongIndexerLongIndexer. create(LongPointer pointer, long[] sizes, long[] strides)Returnsnew LongRawIndexer(pointer, sizes, strides)static LongIndexerLongIndexer. create(LongPointer pointer, long[] sizes, long[] strides, boolean direct)Returnscreate(pointer, Index.create(sizes, strides), direct)static LongIndexerLongIndexer. create(LongPointer pointer, Index index)Returnsnew LongRawIndexer(pointer, index)static LongIndexerLongIndexer. create(LongPointer pointer, Index index, boolean direct)Creates a long indexer to access efficiently the data of a pointer.static ULongIndexerULongIndexer. create(LongPointer pointer)Returnsnew ULongRawIndexer(pointer)static ULongIndexerULongIndexer. create(LongPointer pointer, long... sizes)Returnsnew ULongRawIndexer(pointer, sizes)static ULongIndexerULongIndexer. create(LongPointer pointer, long[] sizes, long[] strides)Returnsnew ULongRawIndexer(pointer, sizes, strides)static ULongIndexerULongIndexer. create(LongPointer pointer, long[] sizes, long[] strides, boolean direct)Returnscreate(pointer, Index.create(sizes, strides), direct)static ULongIndexerULongIndexer. create(LongPointer pointer, Index index)Returnsnew ULongRawIndexer(pointer, index)static ULongIndexerULongIndexer. 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.pointerandIndexer.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.pointerandIndexer.index.
-