static ByteVector |
ByteVector.fromByteArray(VectorSpecies<Byte> species,
byte[] a,
int offset,
ByteOrder bo) |
Loads a vector from a byte array starting at an offset.
|
static ByteVector |
ByteVector.fromByteArray(VectorSpecies<Byte> species,
byte[] a,
int offset,
ByteOrder bo,
VectorMask<Byte> m) |
Loads a vector from a byte array starting at an offset
and using a mask.
|
static DoubleVector |
DoubleVector.fromByteArray(VectorSpecies<Double> species,
byte[] a,
int offset,
ByteOrder bo) |
Loads a vector from a byte array starting at an offset.
|
static DoubleVector |
DoubleVector.fromByteArray(VectorSpecies<Double> species,
byte[] a,
int offset,
ByteOrder bo,
VectorMask<Double> m) |
Loads a vector from a byte array starting at an offset
and using a mask.
|
static FloatVector |
FloatVector.fromByteArray(VectorSpecies<Float> species,
byte[] a,
int offset,
ByteOrder bo) |
Loads a vector from a byte array starting at an offset.
|
static FloatVector |
FloatVector.fromByteArray(VectorSpecies<Float> species,
byte[] a,
int offset,
ByteOrder bo,
VectorMask<Float> m) |
Loads a vector from a byte array starting at an offset
and using a mask.
|
static IntVector |
IntVector.fromByteArray(VectorSpecies<Integer> species,
byte[] a,
int offset,
ByteOrder bo) |
Loads a vector from a byte array starting at an offset.
|
static IntVector |
IntVector.fromByteArray(VectorSpecies<Integer> species,
byte[] a,
int offset,
ByteOrder bo,
VectorMask<Integer> m) |
Loads a vector from a byte array starting at an offset
and using a mask.
|
static LongVector |
LongVector.fromByteArray(VectorSpecies<Long> species,
byte[] a,
int offset,
ByteOrder bo) |
Loads a vector from a byte array starting at an offset.
|
static LongVector |
LongVector.fromByteArray(VectorSpecies<Long> species,
byte[] a,
int offset,
ByteOrder bo,
VectorMask<Long> m) |
Loads a vector from a byte array starting at an offset
and using a mask.
|
static ShortVector |
ShortVector.fromByteArray(VectorSpecies<Short> species,
byte[] a,
int offset,
ByteOrder bo) |
Loads a vector from a byte array starting at an offset.
|
static ShortVector |
ShortVector.fromByteArray(VectorSpecies<Short> species,
byte[] a,
int offset,
ByteOrder bo,
VectorMask<Short> m) |
Loads a vector from a byte array starting at an offset
and using a mask.
|
Vector<E> |
VectorSpecies.fromByteArray(byte[] a,
int offset,
ByteOrder bo) |
Loads a vector of this species from a byte array starting
at an offset.
|
static ByteVector |
ByteVector.fromByteBuffer(VectorSpecies<Byte> species,
ByteBuffer bb,
int offset,
ByteOrder bo) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer.
|
static ByteVector |
ByteVector.fromByteBuffer(VectorSpecies<Byte> species,
ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Byte> m) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer
and using a mask.
|
static DoubleVector |
DoubleVector.fromByteBuffer(VectorSpecies<Double> species,
ByteBuffer bb,
int offset,
ByteOrder bo) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer.
|
static DoubleVector |
DoubleVector.fromByteBuffer(VectorSpecies<Double> species,
ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Double> m) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer
and using a mask.
|
static FloatVector |
FloatVector.fromByteBuffer(VectorSpecies<Float> species,
ByteBuffer bb,
int offset,
ByteOrder bo) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer.
|
static FloatVector |
FloatVector.fromByteBuffer(VectorSpecies<Float> species,
ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Float> m) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer
and using a mask.
|
static IntVector |
IntVector.fromByteBuffer(VectorSpecies<Integer> species,
ByteBuffer bb,
int offset,
ByteOrder bo) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer.
|
static IntVector |
IntVector.fromByteBuffer(VectorSpecies<Integer> species,
ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Integer> m) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer
and using a mask.
|
static LongVector |
LongVector.fromByteBuffer(VectorSpecies<Long> species,
ByteBuffer bb,
int offset,
ByteOrder bo) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer.
|
static LongVector |
LongVector.fromByteBuffer(VectorSpecies<Long> species,
ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Long> m) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer
and using a mask.
|
static ShortVector |
ShortVector.fromByteBuffer(VectorSpecies<Short> species,
ByteBuffer bb,
int offset,
ByteOrder bo) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer.
|
static ShortVector |
ShortVector.fromByteBuffer(VectorSpecies<Short> species,
ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Short> m) |
Loads a vector from a byte buffer
starting at an offset into the byte buffer
and using a mask.
|
void |
ByteVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo) |
Stores this vector into a byte array starting at an offset
using explicit byte order.
|
void |
ByteVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo,
VectorMask<Byte> m) |
Stores this vector into a byte array starting at an offset
using explicit byte order and a mask.
|
void |
DoubleVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo) |
Stores this vector into a byte array starting at an offset
using explicit byte order.
|
void |
DoubleVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo,
VectorMask<Double> m) |
Stores this vector into a byte array starting at an offset
using explicit byte order and a mask.
|
void |
FloatVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo) |
Stores this vector into a byte array starting at an offset
using explicit byte order.
|
void |
FloatVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo,
VectorMask<Float> m) |
Stores this vector into a byte array starting at an offset
using explicit byte order and a mask.
|
void |
IntVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo) |
Stores this vector into a byte array starting at an offset
using explicit byte order.
|
void |
IntVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo,
VectorMask<Integer> m) |
Stores this vector into a byte array starting at an offset
using explicit byte order and a mask.
|
void |
LongVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo) |
Stores this vector into a byte array starting at an offset
using explicit byte order.
|
void |
LongVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo,
VectorMask<Long> m) |
Stores this vector into a byte array starting at an offset
using explicit byte order and a mask.
|
void |
ShortVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo) |
Stores this vector into a byte array starting at an offset
using explicit byte order.
|
void |
ShortVector.intoByteArray(byte[] a,
int offset,
ByteOrder bo,
VectorMask<Short> m) |
Stores this vector into a byte array starting at an offset
using explicit byte order and a mask.
|
abstract void |
Vector.intoByteArray(byte[] a,
int offset,
ByteOrder bo) |
Stores this vector into a byte array starting at an offset
using explicit byte order.
|
abstract void |
Vector.intoByteArray(byte[] a,
int offset,
ByteOrder bo,
VectorMask<E> m) |
Stores this vector into a byte array starting at an offset
using explicit byte order and a mask.
|
void |
ByteVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order.
|
void |
ByteVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Byte> m) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order and a mask.
|
void |
DoubleVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order.
|
void |
DoubleVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Double> m) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order and a mask.
|
void |
FloatVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order.
|
void |
FloatVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Float> m) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order and a mask.
|
void |
IntVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order.
|
void |
IntVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Integer> m) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order and a mask.
|
void |
LongVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order.
|
void |
LongVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Long> m) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order and a mask.
|
void |
ShortVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order.
|
void |
ShortVector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<Short> m) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order and a mask.
|
abstract void |
Vector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order.
|
abstract void |
Vector.intoByteBuffer(ByteBuffer bb,
int offset,
ByteOrder bo,
VectorMask<E> m) |
Stores this vector into a byte buffer starting at an offset
using explicit byte order and a mask.
|