Searched refs:_bitsLeftInOctet (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DDecoder.java1375 private int _bitsLeftInOctet; field in class:Decoder
1378 _bitsLeftInOctet = 0;
1384 if (_bitsLeftInOctet == 0) {
1386 _bitsLeftInOctet = 8;
1388 int bit = ((_b & (1 << --_bitsLeftInOctet)) > 0) ? 1 : 0;
H A DEncoder.java1996 private int _bitsLeftInOctet; field in class:Encoder
1999 _bitsLeftInOctet = 8;
2006 _b |= bit << (--_bitsLeftInOctet);
2007 if (_bitsLeftInOctet == 0) {
2009 _bitsLeftInOctet = 8;

Completed in 42 milliseconds