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

  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterTest.java 115 int offSet = 1;
123 x += defl.deflate(outPutBuf, offSet, length);
126 outPutBuf, offSet, length));
135 infl.setInput(outPutBuf, offSet, length);
151 // Set of tests testing the boundaries of the offSet/length
157 offSet = outPutBuf.length + 1;
160 offSet = 0;
164 defl.deflate(outPutBuf, offSet, length);
306 int offSet = 2;
309 defl.setInput(byteArray, offSet, length)
    [all...]
InflaterTest.java 167 int offSet = 0;// seems only can start as 0
172 inflate2.setInput(outPutBuff1, offSet, length);
230 int offSet = 0;// seems only can start as 0
238 y += inflate.inflate(outPutInf, offSet, length);
386 int offSet = 0;
392 inflate.inflate(outPutInf, offSet, lengthError);
402 assertEquals(0, inflate.inflate(outPutInf, offSet, 0));
408 inflate.inflate(outPutInf, offSet, 1);
710 int offSet = 6;
713 inflate.setInput(byteArray, offSet, length)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DEROutputStream.java 107 public void write(byte[] buf, int offSet, int len)
110 out.write(buf, offSet, len);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 183 int offSet = 0;
194 offSet = 1;
197 return engine.processBlock(block, offSet, block.length - offSet);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
GeneralName.java 339 private void parseIPv4Mask(String mask, byte[] addr, int offset)
345 addr[(i / 8) + offset] |= 1 << (i % 8);
349 private void parseIPv4(String ip, byte[] addr, int offset)
356 addr[offset + index++] = (byte)Integer.parseInt(sTok.nextToken());
372 private void copyInts(int[] parsedIp, byte[] addr, int offSet)
376 addr[(i * 2) + offSet] = (byte)(parsedIp[i] >> 8);
377 addr[(i * 2 + 1) + offSet] = (byte)parsedIp[i];
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEECPublicKey.java 409 private void extractBytes(byte[] encKey, int offSet, BigInteger bI)
421 encKey[offSet + i] = val[val.length - 1 - i];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 

Completed in 1924 milliseconds