Searched defs:blockLength (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/gif/
H A Dgifdecoder.c184 int blockLength = 0; local
251 blockh, remain, blockLength + 1);
257 remain += blockLength;
260 blockLength = 0;
262 blockLength = block[remain];
264 if (blockLength == 0) {
322 fprintf(stdout, "flushing %d bytes\n", blockLength);
326 blockh, 0, blockLength + 1) != 0
333 blockLength = block[blockLength];
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java85 int blockLength = 0; field in class:GIFImageReader
311 if (nextByte >= blockLength) {
313 blockLength = stream.readUnsignedByte();
314 if (blockLength == 0) {
318 int left = blockLength;
890 this.blockLength = stream.readUnsignedByte();
891 int left = blockLength;
1012 blockLength = 0;
/openjdk7/corba/src/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...]

Completed in 48 milliseconds