HomeSort by relevance Sort by last modified time
    Searched refs:filterBuf (Results 1 - 5 of 5) sorted by null

  /external/xz-java/src/org/tukaani/xz/
SimpleInputStream.java 22 private final byte[] filterBuf = new byte[FILTER_BUF_SIZE];
73 System.arraycopy(filterBuf, pos, buf, off, copySize);
80 // If end of filterBuf was reached, move the pending data to
82 // copied into filterBuf on the next loop iteration.
84 System.arraycopy(filterBuf, pos, filterBuf, 0,
96 inSize = in.read(filterBuf, pos + filtered + unfiltered,
106 // Filter the data in filterBuf.
108 filtered = simpleFilter.code(filterBuf, pos, unfiltered);
SimpleOutputStream.java 21 private final byte[] filterBuf = new byte[FILTER_BUF_SIZE];
59 // Copy more unfiltered data into filterBuf.
61 System.arraycopy(buf, off, filterBuf, pos + unfiltered, copySize);
66 // Filter the data in filterBuf.
67 int filtered = simpleFilter.code(filterBuf, pos, unfiltered);
73 out.write(filterBuf, pos, filtered);
81 // If end of filterBuf was reached, move the pending unfiltered
83 // be copied into filterBuf on the next loop iteration.
85 System.arraycopy(filterBuf, pos, filterBuf, 0, unfiltered)
    [all...]
DeltaOutputStream.java 20 private final byte[] filterBuf = new byte[FILTER_BUF_SIZE];
53 delta.encode(buf, off, FILTER_BUF_SIZE, filterBuf);
54 out.write(filterBuf);
59 delta.encode(buf, off, len, filterBuf);
60 out.write(filterBuf, 0, len);
  /external/lzma/CPP/Windows/
CommonDialog.cpp 128 CHAR filterBuf[kFilterBufSize];
130 CDoubleZeroStringListA dz(filterBuf, kFilterBufSize);
134 p.lpstrFilter = filterBuf;
159 WCHAR filterBuf[kFilterBufSize];
161 CDoubleZeroStringListW dz(filterBuf, kFilterBufSize);
165 p.lpstrFilter = filterBuf;
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.osgi_3.13.0.v20180409-1500.jar 

Completed in 372 milliseconds