Uses of Class
edu.rit.mp.LongBuf
Packages that use LongBuf
Package
Description
The MP package provides low-level support for Message Passing.
The BUF package provides data buffers for Message Passing.
-
Uses of LongBuf in edu.rit.mp
Methods in edu.rit.mp that return LongBufModifier and TypeMethodDescriptionstatic LongBufLongBuf.buffer(long[] theArray) Create a buffer for the entire given long array.static LongBufLongBuf.buffer(long[][] theMatrix) Create a buffer for the entire given long matrix.static LongBufLongBuf.buffer(SharedLong item) Create a buffer for a shared long item.static LongBufLongBuf.buffer(SharedLongArray theArray) Create a buffer for the entire given shared long array.static LongBufLongBuf.colSliceBuffer(long[][] theMatrix, Range theColRange) Create a buffer for one column slice of the given long matrix.static LongBuf[]LongBuf.colSliceBuffers(long[][] theMatrix, Range[] theColRanges) Create an array of buffers for multiple column slices of the given long matrix.static LongBufLongBuf.emptyBuffer()Create an empty buffer.static LongBufLongBuf.patchBuffer(long[][] theMatrix, Range theRowRange, Range theColRange) Create a buffer for one patch of the given long matrix.static LongBuf[]LongBuf.patchBuffers(long[][] theMatrix, Range[] theRowRanges, Range[] theColRanges) Create an array of buffers for multiple patches of the given long matrix.static LongBufLongBuf.rowSliceBuffer(long[][] theMatrix, Range theRowRange) Create a buffer for one row slice of the given long matrix.static LongBuf[]LongBuf.rowSliceBuffers(long[][] theMatrix, Range[] theRowRanges) Create an array of buffers for multiple row slices of the given long matrix.static LongBufLongBuf.sliceBuffer(long[] theArray, Range theRange) Create a buffer for one slice of the given long array.static LongBufLongBuf.sliceBuffer(SharedLongArray theArray, Range theRange) Create a buffer for one slice of the given shared long array.static LongBuf[]LongBuf.sliceBuffers(long[] theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given long array.static LongBuf[]LongBuf.sliceBuffers(SharedLongArray theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given shared long array.Methods in edu.rit.mp with parameters of type LongBufModifier and TypeMethodDescriptionprotected static voidLongBuf.defaultCopy(LongBuf theSrc, LongBuf theDst) Copy items from the given source buffer to the given destination buffer. -
Uses of LongBuf in edu.rit.mp.buf
Subclasses of LongBuf in edu.rit.mp.bufModifier and TypeClassDescriptionclassClass EmptyLongBuf provides a long buffer that contains no items for messages using the Message Protocol (MP).classClass LongArrayBuf provides a buffer for an array of long items sent or received using the Message Protocol (MP).classClass LongArrayBuf_1 provides a buffer for an array of long items sent or received using the Message Protocol (MP).classClass LongItemBuf provides a buffer for a single long item sent or received using the Message Protocol (MP).classClass LongMatrixBuf provides a buffer for a matrix of long items sent or received using the Message Protocol (MP).classClass LongMatrixBuf_1 provides a buffer for a matrix of long items sent or received using the Message Protocol (MP).classClass SharedLongArrayBuf provides a buffer for a multiple thread safe array of long items sent or received using the Message Protocol (MP).classClass SharedLongArrayBuf_1 provides a buffer for a multiple thread safe array of long items sent or received using the Message Protocol (MP).classClass SharedLongBuf provides a buffer for a shared long item sent or received using the Message Protocol (MP).