Home
last modified time | relevance | path

Searched refs:entryEnd (Results 1 – 2 of 2) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/ar/
DArArchiveInputStream.java95 final long entryEnd = entryOffset + currentEntry.getLength(); in getNextArEntry() local
96 long skipped = IOUtils.skip(input, entryEnd - offset); in getNextArEntry()
267 final long entryEnd = entryOffset + currentEntry.getLength(); in read() local
268 if (len < 0 || offset >= entryEnd) { in read()
271 final int toRead = (int) Math.min(len, entryEnd - offset); in read()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ra.cpp1568 const int32_t entryEnd = offset + size; in assignSlot() local
1575 while (it != slots.end() && it->offset < entryEnd) { in assignSlot()
1581 if (it == slots.end() || it->offset >= entryEnd) { in assignSlot()
1583 for (; bgn != slots.end() && bgn->offset < entryEnd; ++bgn) { in assignSlot()