Uses of Class
org.bytedeco.javacpp.indexer.ShortIndexer
Packages that use ShortIndexer
Package
Description
Contains classes for multidimensional access of arrays and buffers.
-
Uses of ShortIndexer in org.bytedeco.javacpp.indexer
Subclasses of ShortIndexer in org.bytedeco.javacpp.indexerModifier and TypeClassDescriptionclass
An indexer for ashort[]
array.class
An indexer for aShortBuffer
.class
An indexer for aShortPointer
using theRaw
instance.Methods in org.bytedeco.javacpp.indexer that return ShortIndexerModifier and TypeMethodDescriptionstatic ShortIndexer
ShortIndexer.create
(short[] array) Returnsnew ShortArrayIndexer(array)
static ShortIndexer
ShortIndexer.create
(short[] array, long... sizes) Returnsnew ShortArrayIndexer(array, sizes)
static ShortIndexer
ShortIndexer.create
(short[] array, long[] sizes, long[] strides) Returnsnew ShortArrayIndexer(array, sizes, strides)
static ShortIndexer
Returnsnew ShortArrayIndexer(array, index)
static ShortIndexer
ShortIndexer.create
(ShortBuffer buffer) Returnsnew ShortBufferIndexer(buffer)
static ShortIndexer
ShortIndexer.create
(ShortBuffer buffer, long... sizes) Returnsnew ShortBufferIndexer(buffer, sizes)
static ShortIndexer
ShortIndexer.create
(ShortBuffer buffer, long[] sizes, long[] strides) Returnsnew ShortBufferIndexer(buffer, sizes, strides)
static ShortIndexer
ShortIndexer.create
(ShortBuffer buffer, Index index) Returnsnew ShortBufferIndexer(buffer, index)
static ShortIndexer
ShortIndexer.create
(ShortPointer pointer) Returnsnew ShortRawIndexer(pointer)
static ShortIndexer
ShortIndexer.create
(ShortPointer pointer, long... sizes) Returnsnew ShortRawIndexer(pointer, sizes)
static ShortIndexer
ShortIndexer.create
(ShortPointer pointer, long[] sizes, long[] strides) Returnsnew ShortRawIndexer(pointer, sizes, strides)
static ShortIndexer
ShortIndexer.create
(ShortPointer pointer, long[] sizes, long[] strides, boolean direct) Returnscreate(pointer, Index.create(sizes, strides), direct)
static ShortIndexer
ShortIndexer.create
(ShortPointer pointer, Index index) Returnsnew ShortRawIndexer(pointer, index)
static ShortIndexer
ShortIndexer.create
(ShortPointer pointer, Index index, boolean direct) Creates a short indexer to access efficiently the data of a pointer.ShortArrayIndexer.get
(long[] indices, short[] s, int offset, int length) ShortArrayIndexer.get
(long i, long j, short[] s, int offset, int length) ShortArrayIndexer.get
(long i, short[] s, int offset, int length) ShortBufferIndexer.get
(long[] indices, short[] s, int offset, int length) ShortBufferIndexer.get
(long i, long j, short[] s, int offset, int length) ShortBufferIndexer.get
(long i, short[] s, int offset, int length) ShortIndexer.get
(long[] indices, short[] s) Returnsthis
wheres = array/buffer[index(indices)]
abstract ShortIndexer
ShortIndexer.get
(long[] indices, short[] s, int offset, int length) Returnsthis
wheres[offset:offset + length] = array/buffer[index(indices)]
ShortIndexer.get
(long i, long j, short[] s) Returnsthis
wheres = array/buffer[index(i, j)]
abstract ShortIndexer
ShortIndexer.get
(long i, long j, short[] s, int offset, int length) Returnsthis
wheres[offset:offset + length] = array/buffer[index(i, j)]
ShortIndexer.get
(long i, short[] s) Returnsthis
wheres = array/buffer[index(i)]
abstract ShortIndexer
ShortIndexer.get
(long i, short[] s, int offset, int length) Returnsthis
wheres[offset:offset + length] = array/buffer[index(i)]
ShortRawIndexer.get
(long[] indices, short[] s, int offset, int length) ShortRawIndexer.get
(long i, long j, short[] s, int offset, int length) ShortRawIndexer.get
(long i, short[] s, int offset, int length) ShortArrayIndexer.put
(long[] indices, short s) ShortArrayIndexer.put
(long[] indices, short[] s, int offset, int length) ShortArrayIndexer.put
(long i, long j, long k, short s) ShortArrayIndexer.put
(long i, long j, short s) ShortArrayIndexer.put
(long i, long j, short[] s, int offset, int length) ShortArrayIndexer.put
(long i, short s) ShortArrayIndexer.put
(long i, short[] s, int offset, int length) ShortBufferIndexer.put
(long[] indices, short s) ShortBufferIndexer.put
(long[] indices, short[] s, int offset, int length) ShortBufferIndexer.put
(long i, long j, long k, short s) ShortBufferIndexer.put
(long i, long j, short s) ShortBufferIndexer.put
(long i, long j, short[] s, int offset, int length) ShortBufferIndexer.put
(long i, short s) ShortBufferIndexer.put
(long i, short[] s, int offset, int length) abstract ShortIndexer
ShortIndexer.put
(long[] indices, short s) Returnsthis
wherearray/buffer[index(indices)] = s
ShortIndexer.put
(long[] indices, short... s) Returnsthis
wherearray/buffer[index(indices)] = s
abstract ShortIndexer
ShortIndexer.put
(long[] indices, short[] s, int offset, int length) Returnsthis
wherearray/buffer[index(indices)] = s[offset:offset + length]
abstract ShortIndexer
ShortIndexer.put
(long i, long j, long k, short s) Returnsthis
wherearray/buffer[index(i, j, k)] = s
abstract ShortIndexer
ShortIndexer.put
(long i, long j, short s) Returnsthis
wherearray/buffer[index(i, j)] = s
ShortIndexer.put
(long i, long j, short... s) Returnsthis
wherearray/buffer[index(i, j)] = s
abstract ShortIndexer
ShortIndexer.put
(long i, long j, short[] s, int offset, int length) Returnsthis
wherearray/buffer[index(i, j)] = s[offset:offset + length]
abstract ShortIndexer
ShortIndexer.put
(long i, short s) Returnsthis
wherearray/buffer[index(i)] = s
ShortIndexer.put
(long i, short... s) Returnsthis
wherearray/buffer[index(i)] = s
abstract ShortIndexer
ShortIndexer.put
(long i, short[] s, int offset, int length) Returnsthis
wherearray/buffer[index(i)] = s[offset:offset + length]
ShortRawIndexer.put
(long[] indices, short s) ShortRawIndexer.put
(long[] indices, short[] s, int offset, int length) ShortRawIndexer.put
(long i, long j, long k, short s) ShortRawIndexer.put
(long i, long j, short s) ShortRawIndexer.put
(long i, long j, short[] s, int offset, int length) ShortRawIndexer.put
(long i, short s) ShortRawIndexer.put
(long i, short[] s, int offset, int length) ShortIndexer.putDouble
(long[] indices, double s) ShortRawIndexer.putRaw
(long i, short s)