/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/ |
D | BitInputStream.java | 122 int toSkip = bitsCachedSize % Byte.SIZE; in alignWithByteBoundary() local 123 if (toSkip > 0) { in alignWithByteBoundary() 124 readCachedBits(toSkip); in alignWithByteBoundary()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | ZipArchiveInputStream.java | 1122 BigInteger toSkip = len.add(BigInteger.valueOf(DWORD - suspectLocalFileHeader.length in isApkSigningBlock() local 1127 if (toSkip.signum() < 0) { in isApkSigningBlock() 1129 int off = suspectLocalFileHeader.length + toSkip.intValue(); in isApkSigningBlock() 1134 int bytesInBuffer = Math.abs(toSkip.intValue()); in isApkSigningBlock() 1140 while (toSkip.compareTo(LONG_MAX) > 0) { in isApkSigningBlock() 1142 toSkip = toSkip.add(LONG_MAX.negate()); in isApkSigningBlock() 1144 realSkip(toSkip.longValue()); in isApkSigningBlock() 1264 final long toSkip = max >= 0 ? Math.min(n, max - pos) : n; in skip() local 1265 final long skippedBytes = IOUtils.skip(in, toSkip); in skip()
|
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/ |
D | H265Reader.java | 248 int toSkip = 0; in parseMediaFormat() local 251 toSkip += 89; in parseMediaFormat() 254 toSkip += 8; in parseMediaFormat() 257 bitArray.skipBits(toSkip); in parseMediaFormat()
|
/external/okio/okio/src/commonMain/kotlin/okio/internal/ |
D | RealBufferedSource.kt | 304 val toSkip = minOf(byteCount, buffer.size) in commonSkip() constant 305 buffer.skip(toSkip) in commonSkip() 306 byteCount -= toSkip in commonSkip()
|
D | Buffer.kt | 422 val toSkip = minOf(byteCount, head.limit - head.pos).toInt() in commonClear() constant 423 size -= toSkip.toLong() in commonClear() 424 byteCount -= toSkip.toLong() in commonClear() 425 head.pos += toSkip in commonClear()
|
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/ |
D | RealBufferedSource.java | 294 long toSkip = Math.min(byteCount, buffer.size()); in skip() local 295 buffer.skip(toSkip); in skip() 296 byteCount -= toSkip; in skip()
|
D | Buffer.java | 775 int toSkip = (int) Math.min(byteCount, head.limit - head.pos); 776 size -= toSkip; 777 byteCount -= toSkip; 778 head.pos += toSkip;
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | RealBufferedSource.java | 293 long toSkip = Math.min(byteCount, buffer.size()); in skip() local 294 buffer.skip(toSkip); in skip() 295 byteCount -= toSkip; in skip()
|
D | Buffer.java | 773 int toSkip = (int) Math.min(byteCount, head.limit - head.pos); 774 size -= toSkip; 775 byteCount -= toSkip; 776 head.pos += toSkip;
|
/external/guava/guava/src/com/google/common/collect/ |
D | Iterables.java | 860 int toSkip = Math.min(list.size(), numberToSkip); 861 return list.subList(toSkip, list.size()).iterator(); 899 int toSkip = Math.min(list.size(), numberToSkip); 900 return list.subList(toSkip, list.size()).spliterator();
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | OutdatedPaths.java | 191 Boolean toSkip = SKIP_PATHS.get(distinguishedPath); in isOutdated() local 192 if (toSkip != null) { in isOutdated()
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | LiteralByteStringTest.java | 252 long toSkip = n; in skipFully() local 258 long skipped = toSkip - n; in skipFully() 263 + toSkip in skipFully()
|
D | NioByteStringTest.java | 267 long toSkip = n; in skipFully() local 273 long skipped = toSkip - n; in skipFully() 278 + toSkip in skipFully()
|
/external/guice/core/src/com/google/inject/spi/ |
D | Elements.java | 570 int toSkip = 0; in getPartialCallStack() local 572 toSkip = moduleSource.getStackTraceSize(); in getPartialCallStack() 575 int chunkSize = callStack.length - toSkip - 1; in getPartialCallStack()
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
D | MockWebServer.java | 837 long toSkip = byteCount - toRead; 838 if (toSkip > 0) { 839 source.skip(toSkip);
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | Iterables.java | 872 int toSkip = Math.min(list.size(), numberToSkip); 873 return list.subList(toSkip, list.size()).iterator();
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedInputStream.java | 3046 int toSkip = size - totalSkipped; in skipRawBytesSlowPath() local 3047 long skipped = input.skip(toSkip); in skipRawBytesSlowPath() 3048 if (skipped < 0 || skipped > toSkip) { in skipRawBytesSlowPath()
|