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

    Modifier and Type
    Class
    Description
    class 
    An indexer for a short[] array.
    class 
    An indexer for a ShortBuffer.
    class 
    An indexer for a ShortPointer using the Raw instance.
    Modifier and Type
    Method
    Description
    ShortIndexer.create(short[] array)
    Returns new ShortArrayIndexer(array)
    ShortIndexer.create(short[] array, long... sizes)
    Returns new ShortArrayIndexer(array, sizes)
    ShortIndexer.create(short[] array, long[] sizes, long[] strides)
    Returns new ShortArrayIndexer(array, sizes, strides)
    ShortIndexer.create(short[] array, Index index)
    Returns new ShortArrayIndexer(array, index)
    ShortIndexer.create(ShortBuffer buffer)
    Returns new ShortBufferIndexer(buffer)
    ShortIndexer.create(ShortBuffer buffer, long... sizes)
    Returns new ShortBufferIndexer(buffer, sizes)
    ShortIndexer.create(ShortBuffer buffer, long[] sizes, long[] strides)
    Returns new ShortBufferIndexer(buffer, sizes, strides)
    ShortIndexer.create(ShortBuffer buffer, Index index)
    Returns new ShortBufferIndexer(buffer, index)
    ShortIndexer.create(ShortPointer pointer)
    Returns new ShortRawIndexer(pointer)
    ShortIndexer.create(ShortPointer pointer, long... sizes)
    Returns new ShortRawIndexer(pointer, sizes)
    ShortIndexer.create(ShortPointer pointer, long[] sizes, long[] strides)
    Returns new ShortRawIndexer(pointer, sizes, strides)
    ShortIndexer.create(ShortPointer pointer, long[] sizes, long[] strides, boolean direct)
    Returns create(pointer, Index.create(sizes, strides), direct)
    ShortIndexer.create(ShortPointer pointer, Index index)
    Returns new ShortRawIndexer(pointer, index)
    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)
    Returns this where s = array/buffer[index(indices)]
    abstract ShortIndexer
    ShortIndexer.get(long[] indices, short[] s, int offset, int length)
    Returns this where s[offset:offset + length] = array/buffer[index(indices)]
    ShortIndexer.get(long i, long j, short[] s)
    Returns this where s = array/buffer[index(i, j)]
    abstract ShortIndexer
    ShortIndexer.get(long i, long j, short[] s, int offset, int length)
    Returns this where s[offset:offset + length] = array/buffer[index(i, j)]
    ShortIndexer.get(long i, short[] s)
    Returns this where s = array/buffer[index(i)]
    abstract ShortIndexer
    ShortIndexer.get(long i, short[] s, int offset, int length)
    Returns this where s[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)
    Returns this where array/buffer[index(indices)] = s
    ShortIndexer.put(long[] indices, short... s)
    Returns this where array/buffer[index(indices)] = s
    abstract ShortIndexer
    ShortIndexer.put(long[] indices, short[] s, int offset, int length)
    Returns this where array/buffer[index(indices)] = s[offset:offset + length]
    abstract ShortIndexer
    ShortIndexer.put(long i, long j, long k, short s)
    Returns this where array/buffer[index(i, j, k)] = s
    abstract ShortIndexer
    ShortIndexer.put(long i, long j, short s)
    Returns this where array/buffer[index(i, j)] = s
    ShortIndexer.put(long i, long j, short... s)
    Returns this where array/buffer[index(i, j)] = s
    abstract ShortIndexer
    ShortIndexer.put(long i, long j, short[] s, int offset, int length)
    Returns this where array/buffer[index(i, j)] = s[offset:offset + length]
    abstract ShortIndexer
    ShortIndexer.put(long i, short s)
    Returns this where array/buffer[index(i)] = s
    ShortIndexer.put(long i, short... s)
    Returns this where array/buffer[index(i)] = s
    abstract ShortIndexer
    ShortIndexer.put(long i, short[] s, int offset, int length)
    Returns this where array/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)
     
    ShortArrayIndexer.reindex(Index index)
     
    ShortBufferIndexer.reindex(Index index)
     
    ShortRawIndexer.reindex(Index index)