Home | History | Annotate | Download | only in zip

Lines Matching refs:end

28  * end of the interval is exclusive.
58 private final long end;
70 * @param end the end of the entry (first byte no longer in the entry)
73 private FileUseMapEntry(long start, long end, @Nullable T store) {
75 Preconditions.checkArgument(end > start, "end <= start");
78 this.end = end;
86 * @param end the end of the entry (first byte no longer in the entry)
89 public static FileUseMapEntry<Object> makeFree(long start, long end) {
90 return new FileUseMapEntry<>(start, end, null);
97 * @param end the end of the entry (first byte no longer in the entry)
102 public static <T> FileUseMapEntry<T> makeUsed(long start, long end, @Nonnull T store) {
104 return new FileUseMapEntry<>(start, end, store);
123 return end;
132 return end - start;
158 .add("end", end)