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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.c49 * - Make hbuf[] unsigned char to match parameter type in inflate.c
411 hbuf[0] = (unsigned char)(word); \
412 hbuf[1] = (unsigned char)((word) >> 8); \
413 check = crc32(check, hbuf, 2); \
418 hbuf[0] = (unsigned char)(word); \
419 hbuf[1] = (unsigned char)((word) >> 8); \
420 hbuf[2] = (unsigned char)((word) >> 16); \
421 hbuf[3] = (unsigned char)((word) >> 24); \
422 check = crc32(check, hbuf, 4); \
596 unsigned char hbuf[ local
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java1745 private final byte[] hbuf = new byte[MAX_HEADER_SIZE]; field in class:ObjectOutputStream.BlockDataOutputStream
1881 hbuf[0] = TC_BLOCKDATA;
1882 hbuf[1] = (byte) len;
1883 out.write(hbuf, 0, 2);
1885 hbuf[0] = TC_BLOCKDATALONG;
1886 Bits.putInt(hbuf, 1, len);
1887 out.write(hbuf, 0, 5);
H A DObjectInputStream.java2375 private final byte[] hbuf = new byte[MAX_HEADER_SIZE]; field in class:ObjectInputStream.BlockDataInputStream
2478 in.readFully(hbuf, 0, 2);
2479 return hbuf[1] & 0xFF;
2485 in.readFully(hbuf, 0, 5);
2486 int len = Bits.getInt(hbuf, 1);

Completed in 69 milliseconds