Searched refs:blockLength (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/native/libawt/awt/image/gif/
H A Dgifdecoder.c184 int blockLength = 0; local
251 blockh, remain, blockLength + 1);
252 if (len > blockLength + 1) len = blockLength + 1;
258 remain += blockLength;
261 blockLength = 0;
263 blockLength = block[remain];
265 if (blockLength == 0) {
326 fprintf(stdout, "flushing %d bytes\n", blockLength);
329 blockh, 0, blockLength
[all...]
/openjdk9/jdk/src/java.base/share/classes/com/sun/crypto/provider/
H A DPBMAC1Core.java49 private final int blockLength; // in octets field in class:PBMAC1Core
55 PBMAC1Core(String kdfAlgo, String hashAlgo, int blockLength) argument
57 super(hashAlgo, blockLength);
60 this.blockLength = blockLength;
167 new PBEKeySpec(passwdChars, salt, iCount, blockLength);
H A DPKCS12PBECipherCore.java74 String hashAlgo, int blockLength) {
96 int v = blockLength;
73 derive(char[] chars, byte[] salt, int ic, int n, int type, String hashAlgo, int blockLength) argument
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DTryCatchBlockSorter.java105 int len1 = blockLength(t1);
106 int len2 = blockLength(t2);
110 private int blockLength(TryCatchBlockNode block) {
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/encoding/
H A DCDRInputStream_1_0.java169 protected int blockLength = maxBlockLength; field in class:CDRInputStream_1_0
327 // If it isn't a chunk length, blockLength will
329 if (blockLength == get_offset()) {
331 blockLength = maxBlockLength;
340 if (blockLength == maxBlockLength)
344 if (blockLength < get_offset()) {
359 if (blockLength != maxBlockLength &&
360 blockLength < get_offset() + requiredNumBytes) {
1479 // if called from alignAndCheck, need to reset blockLength
1481 blockLength
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java86 int blockLength = 0; field in class:GIFImageReader
342 if (nextByte >= blockLength) {
344 blockLength = stream.readUnsignedByte();
345 if (blockLength == 0) {
349 int left = blockLength;
924 this.blockLength = stream.readUnsignedByte();
925 int left = blockLength;
1046 blockLength = 0;
/openjdk9/jdk/src/java.base/share/classes/java/math/
H A DMutableBigInteger.java1396 * Returns a {@code MutableBigInteger} containing {@code blockLength} ints from
1397 * {@code this} number, starting at {@code index*blockLength}.<br/>
1401 * @param blockLength length of one block in units of 32 bits
1404 private MutableBigInteger getBlock(int index, int numBlocks, int blockLength) { argument
1405 int blockStart = index * blockLength;
1414 blockEnd = (index+1) * blockLength;

Completed in 142 milliseconds