Searched refs:_i (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.hpp35 intptr_t _i; // Blank java stack slot value member in class:StackValue
41 _i = value;
46 _i = scalar_replaced;
48 assert(_i == 0 || _o.is_null(), "not null object should not be marked as scalar replaced");
53 _i = 0;
60 _i = o;
70 return _i != 0;
80 return _i;
86 return _i;
91 _i
[all...]
H A DstackValue.cpp194 st->print("%d (int) %f (float) %x (hex)", *(int *)&_i, *(float *)&_i, *(int *)&_i);
H A Ddeoptimization.cpp792 int _i; member in class:FieldReassigner
795 _fr(fr), _reg_map(reg_map), _sv(sv), _obj(obj), _i(0) {}
797 int i() const { return _i; }
814 StackValue::create_stack_value(_fr, _reg_map, _sv->field_at(++_i));
850 _i++;
/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.hpp110 uint _i; // Counter over the bins member in class:DictI
117 int test(void) { return _i<_d->_size;} // Test for end of iteration
H A Ddict.cpp365 _i = (uint)-1; // Before the first bin
375 _key = _d->_bin[_i]._keyvals[_j+_j];
376 _value = _d->_bin[_i]._keyvals[_j+_j+1];
380 while( ++_i < _d->_size ) { // Else scan for non-zero bucket
381 _j = _d->_bin[_i]._cnt;
384 _key = _d->_bin[_i]._keyvals[_j+_j];
385 _value = _d->_bin[_i]._keyvals[_j+_j+1];
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.hpp111 int _i; // Counter over the bins member in class:DictI
118 int test(void) { return _i<_d->_size;} // Test for end of iteration
H A Ddict2.cpp332 _i = (int)-1; // Before the first bin
342 _key = _d->_bin[_i]._keyvals[_j+_j];
343 _value = _d->_bin[_i]._keyvals[_j+_j+1];
347 while( ++_i < _d->_size ) { // Else scan for non-zero bucket
348 _j = _d->_bin[_i]._cnt;
351 _key = _d->_bin[_i]._keyvals[_j+_j];
352 _value = _d->_bin[_i]._keyvals[_j+_j+1];
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DCertsInFilesystemDirectoryResolver.java164 /** Field _i */
165 int _i; field in class:CertsInFilesystemDirectoryResolver.FilesystemIterator
174 this._i = 0;
179 return (this._i < this._certs.size());
184 return this._certs.get(this._i++);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp1153 CASE(_i##opcname): \
1220 CASE(_i##opcname): \

Completed in 86 milliseconds