HomeSort by relevance Sort by last modified time
    Searched defs:blockBuffer (Results 1 - 7 of 7) sorted by null

  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
TapeInputStream.java 38 private byte[] blockBuffer = new byte[DumpArchiveConstants.TP_SIZE];
74 final byte[] oldBuffer = blockBuffer;
77 blockBuffer = new byte[blockSize];
78 System.arraycopy(oldBuffer, 0, blockBuffer, 0, RECORD_SIZE);
79 readFully(blockBuffer, RECORD_SIZE, blockSize - RECORD_SIZE);
148 System.arraycopy(blockBuffer, readOffset, b, off, n);
238 System.arraycopy(blockBuffer, readOffset, b, 0, b.length);
274 readFully(blockBuffer, 0, blockSize);
277 readFully(blockBuffer, 0, 4);
280 final int h = DumpArchiveUtil.convert32(blockBuffer, 0)
    [all...]
DumpArchiveInputStream.java 60 private byte[] blockBuffer;
124 blockBuffer = new byte[4 * DumpArchiveConstants.TP_SIZE];
343 if (blockBuffer.length < datalen) {
344 blockBuffer = new byte[datalen];
347 if (raw.read(blockBuffer, 0, datalen) != datalen) {
355 final int ino = DumpArchiveUtil.convert32(blockBuffer, i);
356 reclen = DumpArchiveUtil.convert16(blockBuffer, i + 4);
358 final byte type = blockBuffer[i + 6];
360 final String name = DumpArchiveUtil.decode(zipEncoding, blockBuffer, i + 8, blockBuffer[i + 7])
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 46 private byte[] blockBuffer;
153 this.blockBuffer = new byte[engine.getOutputBlockSize()];
330 byte[] data = (useStrictLength & (block.length != engine.getOutputBlockSize())) ? blockBuffer : block;
376 data = blockBuffer;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 48 private byte[] blockBuffer;
155 this.blockBuffer = new byte[engine.getOutputBlockSize()];
332 byte[] data = (useStrictLength & (block.length != engine.getOutputBlockSize())) ? blockBuffer : block;
378 data = blockBuffer;
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 

Completed in 90 milliseconds