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