Home
last modified time | relevance | path

Searched refs:numToSkip (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
DIOUtils.java108 public static long skip(final InputStream input, long numToSkip) throws IOException { in skip() argument
109 final long available = numToSkip; in skip()
110 while (numToSkip > 0) { in skip()
111 final long skipped = input.skip(numToSkip); in skip()
115 numToSkip -= skipped; in skip()
118 while (numToSkip > 0) { in skip()
120 (int) Math.min(numToSkip, SKIP_BUF_SIZE)); in skip()
124 numToSkip -= read; in skip()
126 return available - numToSkip; in skip()
/external/skqp/src/gpu/glsl/
DGrGLSLFragmentProcessor.h56 int numToSkip = 0; in childInputs() local
60 return BuilderInputProvider(child, fTs + numToSkip); in childInputs()
62 numToSkip += (fp->*COUNT)(); in childInputs()
/external/skia/src/gpu/glsl/
DGrGLSLFragmentProcessor.h53 int numToSkip = 0; in childInputs() local
56 return BuilderInputProvider(child, fTs + numToSkip); in childInputs()
58 numToSkip += (fp.*COUNT)(); in childInputs()