Searched defs:_b (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/test/runtime/6626217/
H A DYou_Have_Been_P0wned.java6 int _b; field in class:You_Have_Been_P0wned
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DChunkedOutputStream.java262 public synchronized void write(int _b) { argument
263 byte b[] = {(byte)_b};
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp98 Block *_b; // Block for this struct member in struct:OopFlow
104 _b(NULL), _next(NULL), C(c) { }
126 for( uint i=0; i<_b->_nodes.size(); i++ ) {
127 Node *n = _b->_nodes[i];
183 assert( _b == NULL, "merging into a happy flow" );
184 assert( flow->_b, "this flow is still alive" );
202 _b = flow->_b;
604 rootflow->_b = entry;
638 assert( p_flow->_b
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DDecoder.java197 protected int _b; field in class:Decoder
637 String system_identifier = ((_b & EncodingConstants.NOTATIONS_SYSTEM_IDENTIFIER_FLAG) > 0)
639 String public_identifier = ((_b & EncodingConstants.NOTATIONS_PUBLIC_IDENTIFIER_FLAG) > 0)
664 String public_identifier = ((_b & EncodingConstants.UNPARSED_ENTITIES_PUBLIC_IDENTIFIER_FLAG) > 0)
702 final int i = (((_b & EncodingConstants.INTEGER_3RD_BIT_MEDIUM_MASK) << 8) | read())
709 if ((_b & EncodingConstants.INTEGER_3RD_BIT_LARGE_LARGE_FLAG) == 0x20) {
711 i = (((_b & EncodingConstants.INTEGER_3RD_BIT_LARGE_MASK) << 16) | (read() << 8) | read())
1385 _b = _octetBuffer[_octetBufferStart++] & 0xFF;
1388 int bit = ((_b & (1 << --_bitsLeftInOctet)) > 0) ? 1 : 0;
H A DEncoder.java206 protected int _b; field in class:Encoder
632 _b = EncodingConstants.DOCUMENT_INITIAL_VOCABULARY_FLAG;
633 write(_b);
639 _b = EncodingConstants.INITIAL_VOCABULARY_EXTERNAL_VOCABULARY_FLAG;
640 write(_b);
650 _b = EncodingConstants.DOCUMENT_INITIAL_VOCABULARY_FLAG;
651 write(_b);
653 _b = EncodingConstants.INITIAL_VOCABULARY_EXTERNAL_VOCABULARY_FLAG;
654 write(_b);
678 switch (_b) {
[all...]

Completed in 41 milliseconds