Searched refs:filterBuf (Results 1 – 4 of 4) sorted by relevance
/external/xz-java/src/org/tukaani/xz/ |
D | SimpleOutputStream.java | 21 private final byte[] filterBuf = new byte[FILTER_BUF_SIZE]; field in SimpleOutputStream 61 System.arraycopy(buf, off, filterBuf, pos + unfiltered, copySize); in write() 67 int filtered = simpleFilter.code(filterBuf, pos, unfiltered); in write() 73 out.write(filterBuf, pos, filtered); in write() 85 System.arraycopy(filterBuf, pos, filterBuf, 0, unfiltered); in write() 98 out.write(filterBuf, pos, unfiltered); in writePending()
|
D | SimpleInputStream.java | 22 private final byte[] filterBuf = new byte[FILTER_BUF_SIZE]; field in SimpleInputStream 73 System.arraycopy(filterBuf, pos, buf, off, copySize); in read() 84 System.arraycopy(filterBuf, pos, filterBuf, 0, in read() 96 inSize = in.read(filterBuf, pos + filtered + unfiltered, in read() 108 filtered = simpleFilter.code(filterBuf, pos, unfiltered); in read()
|
D | DeltaOutputStream.java | 20 private final byte[] filterBuf = new byte[FILTER_BUF_SIZE]; field in DeltaOutputStream 53 delta.encode(buf, off, FILTER_BUF_SIZE, filterBuf); in write() 54 out.write(filterBuf); in write() 59 delta.encode(buf, off, len, filterBuf); in write() 60 out.write(filterBuf, 0, len); in write()
|
/external/lzma/CPP/Windows/ |
D | CommonDialog.cpp | 128 CHAR filterBuf[kFilterBufSize]; in MyGetOpenFileName() local 130 CDoubleZeroStringListA dz(filterBuf, kFilterBufSize); in MyGetOpenFileName() 134 p.lpstrFilter = filterBuf; in MyGetOpenFileName() 159 WCHAR filterBuf[kFilterBufSize]; in MyGetOpenFileName() local 161 CDoubleZeroStringListW dz(filterBuf, kFilterBufSize); in MyGetOpenFileName() 165 p.lpstrFilter = filterBuf; in MyGetOpenFileName()
|