Home | History | Annotate | Download | only in linear

Lines Matching refs:iRow

870         final int iRow    = row - iBlock * BLOCK_SIZE;
879 System.arraycopy(block, iRow * jWidth, outBlock, outIndex, available);
881 System.arraycopy(block, iRow * jWidth, outBlock, 0, jWidth - available);
884 System.arraycopy(block, iRow * jWidth, outBlock, outIndex, jWidth);
930 final int iRow = row - iBlock * BLOCK_SIZE;
939 System.arraycopy(mBlock, mIndex, block, iRow * jWidth, available);
941 System.arraycopy(mBlock, 0, block, iRow * jWidth, jWidth - available);
944 System.arraycopy(mBlock, mIndex, block, iRow * jWidth, jWidth);
1048 final int iRow = row - iBlock * BLOCK_SIZE;
1053 System.arraycopy(block, iRow * jWidth, outData, outIndex, jWidth);
1118 final int iRow = row - iBlock * BLOCK_SIZE;
1123 System.arraycopy(block, iRow * jWidth, out, outIndex, jWidth);
1146 final int iRow = row - iBlock * BLOCK_SIZE;
1151 System.arraycopy(array, outIndex, block, iRow * jWidth, jWidth);