Home | History | Annotate | Download | only in boxes

Lines Matching refs:offsets

51     private List<Long> offsets = new LinkedList<Long>();
61 return 8 + (getVersion() == 0 ? 4 * offsets.size() : 8 * offsets.size()) + ((getFlags() & 1) == 1 ? 8 : 0);
72 IsoTypeWriter.writeUInt32(byteBuffer, offsets.size());
73 for (Long offset : offsets) {
92 offsets.clear();
96 offsets.add(IsoTypeReader.readUInt32(content));
98 offsets.add(IsoTypeReader.readUInt64(content));
121 return offsets;
124 public void setOffsets(List<Long> offsets) {
125 this.offsets = offsets;