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 IntegerBuf
    Modifier and Type
    Method
    Description
    static IntegerBuf
    IntegerBuf.buffer(int[] theArray)
    Create a buffer for the entire given integer array.
    static IntegerBuf
    IntegerBuf.buffer(int[][] theMatrix)
    Create a buffer for the entire given integer matrix.
    static IntegerBuf
    IntegerBuf.buffer(SharedInteger item)
    Create a buffer for a shared integer item.
    static IntegerBuf
    IntegerBuf.buffer(SharedIntegerArray theArray)
    Create a buffer for the entire given shared integer array.
    static IntegerBuf
    IntegerBuf.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 IntegerBuf
    IntegerBuf.emptyBuffer()
    Create an empty buffer.
    static IntegerBuf
    IntegerBuf.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 IntegerBuf
    IntegerBuf.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 IntegerBuf
    IntegerBuf.sliceBuffer(int[] theArray, Range theRange)
    Create a buffer for one slice of the given integer array.
    static IntegerBuf
    IntegerBuf.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 IntegerBuf
    Modifier and Type
    Method
    Description
    protected static void
    IntegerBuf.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.buf
    Modifier and Type
    Class
    Description
    class 
    Class EmptyIntegerBuf provides an integer buffer that contains no items for messages using the Message Protocol (MP).
    class 
    Class IntegerArrayBuf provides a buffer for an array of integer items sent or received using the Message Protocol (MP).
    class 
    Class IntegerArrayBuf_1 provides a buffer for an array of integer items sent or received using the Message Protocol (MP).
    class 
    Class IntegerItemBuf provides a buffer for a single integer item sent or received using the Message Protocol (MP).
    class 
    Class IntegerMatrixBuf provides a buffer for a matrix of integer items sent or received using the Message Protocol (MP).
    class 
    Class IntegerMatrixBuf_1 provides a buffer for a matrix of integer items sent or received using the Message Protocol (MP).
    class 
    Class SharedIntegerArrayBuf provides a buffer for a multiple thread safe array of integer items sent or received using the Message Protocol (MP).
    class 
    Class SharedIntegerArrayBuf_1 provides a buffer for a multiple thread safe array of integer items sent or received using the Message Protocol (MP).
    class 
    Class SharedIntegerBuf provides a buffer for a shared integer item sent or received using the Message Protocol (MP).