456457458459460461462463
/** * Works out what block follows the specified one. */ protected int getNextBlock(final int offset) { BATBlockAndIndex bai = getBATBlockAndIndex(offset); return bai.getBlock().getValueAt( bai.getIndex() ); }
464465466467468469470471472473
/** * Changes the record of what block follows the specified one. */ protected void setNextBlock(final int offset, final int nextBlock) { BATBlockAndIndex bai = getBATBlockAndIndex(offset); bai.getBlock().setValueAt( bai.getIndex(), nextBlock ); }
103104105106107108109110
111112113114115116117118119120
431432433434435436437438
439440441442443444445446447448
450451452453454455456457
458459460461462463464465466467
129130131132133134135136
137138139140141142143144145146