Uses of Class
edu.rit.mp.IntegerBuf
Packages that use IntegerBuf
Package
Description
The MP package provides low-level support for Message Passing.
The BUF package provides data buffers for Message Passing.
-
Uses of IntegerBuf in edu.rit.mp
Methods in edu.rit.mp that return IntegerBufModifier and TypeMethodDescriptionstatic IntegerBufIntegerBuf.buffer(int[] theArray) Create a buffer for the entire given integer array.static IntegerBufIntegerBuf.buffer(int[][] theMatrix) Create a buffer for the entire given integer matrix.static IntegerBufIntegerBuf.buffer(SharedInteger item) Create a buffer for a shared integer item.static IntegerBufIntegerBuf.buffer(SharedIntegerArray theArray) Create a buffer for the entire given shared integer array.static IntegerBufIntegerBuf.colSliceBuffer(int[][] theMatrix, Range theColRange) Create a buffer for one column slice of the given integer matrix.static IntegerBuf[]IntegerBuf.colSliceBuffers(int[][] theMatrix, Range[] theColRanges) Create an array of buffers for multiple column slices of the given integer matrix.static IntegerBufIntegerBuf.emptyBuffer()Create an empty buffer.static IntegerBufIntegerBuf.patchBuffer(int[][] theMatrix, Range theRowRange, Range theColRange) Create a buffer for one patch of the given integer matrix.static IntegerBuf[]IntegerBuf.patchBuffers(int[][] theMatrix, Range[] theRowRanges, Range[] theColRanges) Create an array of buffers for multiple patches of the given integer matrix.static IntegerBufIntegerBuf.rowSliceBuffer(int[][] theMatrix, Range theRowRange) Create a buffer for one row slice of the given integer matrix.static IntegerBuf[]IntegerBuf.rowSliceBuffers(int[][] theMatrix, Range[] theRowRanges) Create an array of buffers for multiple row slices of the given integer matrix.static IntegerBufIntegerBuf.sliceBuffer(int[] theArray, Range theRange) Create a buffer for one slice of the given integer array.static IntegerBufIntegerBuf.sliceBuffer(SharedIntegerArray theArray, Range theRange) Create a buffer for one slice of the given shared integer array.static IntegerBuf[]IntegerBuf.sliceBuffers(int[] theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given integer array.static IntegerBuf[]IntegerBuf.sliceBuffers(SharedIntegerArray theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given shared integer array.Methods in edu.rit.mp with parameters of type IntegerBufModifier and TypeMethodDescriptionprotected static voidIntegerBuf.defaultCopy(IntegerBuf theSrc, IntegerBuf theDst) Copy items from the given source buffer to the given destination buffer. -
Uses of IntegerBuf in edu.rit.mp.buf
Subclasses of IntegerBuf in edu.rit.mp.bufModifier and TypeClassDescriptionclassClass EmptyIntegerBuf provides an integer buffer that contains no items for messages using the Message Protocol (MP).classClass IntegerArrayBuf provides a buffer for an array of integer items sent or received using the Message Protocol (MP).classClass IntegerArrayBuf_1 provides a buffer for an array of integer items sent or received using the Message Protocol (MP).classClass IntegerItemBuf provides a buffer for a single integer item sent or received using the Message Protocol (MP).classClass IntegerMatrixBuf provides a buffer for a matrix of integer items sent or received using the Message Protocol (MP).classClass IntegerMatrixBuf_1 provides a buffer for a matrix of integer items sent or received using the Message Protocol (MP).classClass SharedIntegerArrayBuf provides a buffer for a multiple thread safe array of integer items sent or received using the Message Protocol (MP).classClass SharedIntegerArrayBuf_1 provides a buffer for a multiple thread safe array of integer items sent or received using the Message Protocol (MP).classClass SharedIntegerBuf provides a buffer for a shared integer item sent or received using the Message Protocol (MP).