Searched refs:_values (Results 1 - 10 of 10) sorted by relevance

/openjdk10/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp34 GrowableArray<StackValue*>* _values; member in class:StackValueCollection
37 StackValueCollection() { _values = new GrowableArray<StackValue*>(); }
38 StackValueCollection(int length) { _values = new GrowableArray<StackValue*>(length); }
40 void add(StackValue *val) const { _values->push(val); }
41 int size() const { return _values->length(); }
43 StackValue* at(int i) const { return _values->at(i); }
H A Dframe.cpp1314 _values.append(fv);
1320 _values.sort(compare);
1324 for (int i = _values.length() - 1; i >= 0; i--) {
1325 FrameValue fv = _values.at(i);
1347 _values.sort(compare);
1353 int max_index = _values.length() - 1;
1354 intptr_t* v0 = _values.at(min_index).location;
1355 intptr_t* v1 = _values.at(max_index).location;
1359 v0 = _values.at(++min_index).location;
1362 v1 = _values
[all...]
H A Dframe.hpp452 GrowableArray<FrameValue> _values; member in class:FrameValues
/openjdk10/hotspot/src/share/vm/utilities/
H A DchunkedList.hpp36 T _values[BufferSize]; member in class:ChunkedList
43 return &_values[BufferSize];
47 ChunkedList<T, F>() : _top(_values), _next_used(NULL), _next_free(NULL) {}
54 _top = _values;
72 return pointer_delta(_top, _values, sizeof(T));
77 return _values[i];
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/sax/
H A DAttributesHolder.java51 private String[] _values; field in class:AttributesHolder
59 _values = new String[DEFAULT_CAPACITY];
94 final String value = _values[index];
106 return _values[index] = convertEncodingAlgorithmDataToString(
148 return _values[index];
177 return _values[index];
185 _values[i] = null;
220 _values[_attributeCount++] = value;
228 _values[_attributeCount] = null;
254 System.arraycopy(_values,
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeSortRecord.java80 private Object[] _values; // Contains Comparable objects field in class:NodeSortRecord
110 _values = new Object[levels];
174 _values[_scanned++] = key;
177 return((Comparable)_values[level]);
196 _values[_scanned++] = num;
199 return((Double)_values[level]);
/openjdk10/hotspot/src/share/vm/code/
H A DoopRecorder.cpp163 ObjectLookup::ObjectLookup(): _gc_count(Universe::heap()->total_collections()), _values(4) {}
170 _values.sort(sort_by_address);
195 int location = _values.find_sorted<oop, sort_oop_by_address>(object, found);
199 _values.insert_before(location, r);
202 return _values.at(location).index();
H A DoopRecorder.hpp165 GrowableArray<ObjectEntry> _values; member in class:ObjectLookup
/openjdk10/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp59 int _values[max_Entries]; member in class:CodeOffsets
63 _values[Entry ] = 0;
64 _values[Verified_Entry] = 0;
65 _values[Frame_Complete] = frame_never_safe;
66 _values[OSR_Entry ] = 0;
67 _values[Exceptions ] = -1;
68 _values[Deopt ] = -1;
69 _values[DeoptMH ] = -1;
70 _values[UnwindHandler ] = -1;
73 int value(Entries e) { return _values[
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp492 GrowableArray<Value> _values; member in class:FieldBuffer
498 _values.trunc_to(0);
504 if (offset < _values.length()) {
505 return _values.at(offset);
514 _values.at_put_grow(offset, value, NULL);
526 // arrays _objects and _values are used for O and V. Loads of O.F can
537 FieldBuffer _values; member in class:MemoryBuffer
572 _values.at_put(field, value);
622 result = _values.at(field);
667 _values
[all...]

Completed in 142 milliseconds