Class libxl.RowBuffer

java.lang.Object
gov.nih.mipav.model.file.libxl.RowBuffer
Enclosing class:
libxl

class libxl.RowBuffer extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) float[]
     
    (package private) int[]
     
    (package private) int
     
    (package private) int
     
    (package private) int
     
    (package private) int
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Allocate_float(int num_rows, int rowsize)
     
    void
    Allocate_int(int num_rows, int rowsize)
     
    (package private) void
    CopyRow_float(int dst_row, int src_row, int border)
     
    (package private) void
    CopyRow_int(int dst_row, int src_row, int border)
     
    (package private) void
    FillRow_float(int y, float val, int len)
     
    (package private) void
    FillRow_int(int y, int val, int len)
     
    (package private) void
    PadRow_float(int y, int from, int border)
     
    (package private) void
    PadRow_int(int y, int from, int border)
     
    (package private) int
    Row(int y)
     
    (package private) int
     
    (package private) int
     
    (package private) int
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • xsize_

      int xsize_
    • ysize_

      int ysize_
    • stride_

      int stride_
    • offset_

      int offset_
    • data_int

      int[] data_int
    • data_float

      float[] data_float
  • Constructor Details

    • RowBuffer

      RowBuffer()
  • Method Details

    • Allocate_int

      public void Allocate_int(int num_rows, int rowsize)
    • Allocate_float

      public void Allocate_float(int num_rows, int rowsize)
    • Row

      int Row(int y)
    • xsize

      int xsize()
    • ysize

      int ysize()
    • stride

      int stride()
    • PadRow_float

      void PadRow_float(int y, int from, int border)
    • PadRow_int

      void PadRow_int(int y, int from, int border)
    • CopyRow_float

      void CopyRow_float(int dst_row, int src_row, int border)
    • CopyRow_int

      void CopyRow_int(int dst_row, int src_row, int border)
    • FillRow_float

      void FillRow_float(int y, float val, int len)
    • FillRow_int

      void FillRow_int(int y, int val, int len)