OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:offSet
(Results
1 - 6
of
6
) 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];
Completed in 2901 milliseconds