Searched refs:_length (Results 1 - 25 of 56) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/ci/
H A DciArray.hpp39 int _length; member in class:ciArray
42 ciArray( arrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {}
43 ciArray( objArrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {}
44 ciArray(typeArrayHandle h_a) : ciObject(h_a), _length(h_a()->length()) {}
46 ciArray(ciKlass* klass, int len) : ciObject(klass), _length(len) {}
55 int length() { return _length; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/helpers/
H A DEncodingAlgorithmAttributesImpl.java73 private int _length; field in class:EncodingAlgorithmAttributesImpl
138 for (int i = 0; i < _length; i++) {
142 _length = 0;
164 if (_length >= _algorithmData.length) {
168 int i = _length * SIZE;
174 _toIndex[_length] = false;
175 _alphabets[_length] = null;
177 _length++;
202 if (_length >= _algorithmData.length) {
206 int i = _length * SIZ
[all...]
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DgcCause.hpp96 static const int _length = 128; member in class:GCCauseString
97 char _buffer[_length];
103 _position = jio_snprintf(_buffer, _length, "%s (%s)", prefix, GCCause::to_string(cause));
105 _position = jio_snprintf(_buffer, _length, "%s", prefix);
107 assert(_position >= 0 && _position <= _length,
112 int res = jio_snprintf(_buffer + _position, _length - _position, "%s", str);
114 assert(res >= 0 && _position <= _length,
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DcollectionSetChooser.cpp85 _curr_index(0), _length(0), _first_par_unreserved_idx(0),
93 guarantee(_length <= regions_length(),
94 err_msg("_length: %u regions length: %u", _length, regions_length()));
95 guarantee(_curr_index <= _length,
96 err_msg("_curr_index: %u _length: %u", _curr_index, _length));
105 while (index < _length) {
133 assert(_length <= regions_length(), "Requirement");
135 for (uint i = 0; i < _length;
[all...]
H A DcollectionSetChooser.hpp56 uint _length; member in class:CollectionSetChooser
76 if (_curr_index < _length) {
90 assert(_curr_index < _length, "pre-condition");
117 uint length() { return _length; }
139 uint remaining_regions() { return _length - _curr_index; }
H A Dg1GCPhaseTimes.hpp34 uint _length; member in class:WorkerDataArray
50 _length(length), _print_format(print_format), _print_sum(print_sum), _has_new_data(true) {
52 _data = NEW_C_HEAP_ARRAY(T, _length, mtGC);
60 assert(worker_i < _length, err_msg("Worker %d is greater than max: %d", worker_i, _length));
67 assert(worker_i < _length, err_msg("Worker %d is greater than max: %d", worker_i, _length));
73 assert(worker_i < _length, err_msg("Worker %d is greater than max: %d", worker_i, _length));
102 for (uint i = 0; i < _length;
[all...]
H A DheapRegionSeq.cpp81 _length = 0;
131 increment_length(&_length);
234 decrement_length(&_length);
237 // the active set by decreasing _length, we still have it
247 guarantee(_length <= _allocated_length,
248 err_msg("invariant: _length: %u _allocated_length: %u",
249 _length, _allocated_length));
253 guarantee(_next_search_index <= _length,
254 err_msg("invariant: _next_search_index: %u _length: %u",
255 _next_search_index, _length));
[all...]
H A DheapRegionSeq.hpp47 // * _length (returned by length()) is the number of currently
54 // and maintain that: _length <= _allocated_length <= _max_length
66 uint _length; member in class:HeapRegionSeq
124 uint length() const { return _length; }
H A DvmStructs_g1.hpp37 nonstatic_field(HeapRegionSeq, _length, uint) \
53 nonstatic_field(HeapRegionSetBase, _length, uint) \
H A DheapRegionSet.inline.hpp35 _length += 1;
50 assert(_length > 0, hrs_ext_msg(this, "pre-condition"));
51 _length -= 1;
H A Dg1GCPhaseTimes.cpp84 if (_length == 1) {
99 for (uint i = 0; i < _length; ++i) {
114 double avg = (double)sum / (double)_length;
140 for (uint i = 0; i < _length; i++) {
147 for (uint i = 0; i < _length; i++) {
H A DheapRegionSet.hpp70 uint _length; member in class:VALUE_OBJ_CLASS_SPEC
74 // _length. If the set contains only humongous regions, this will
158 uint length() { return _length; }
160 bool is_empty() { return _length == 0; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DContiguousCharArrayArray.java38 public int[] _length; field in class:ContiguousCharArrayArray
53 _length = new int[initialCapacity];
99 _length = getCompleteLengthArray();
129 return _length;
132 final int[] a = new int[_readOnlyArraySize + _length.length];
141 return (s != null) ? s : (_cachedStrings[i] = new String(_array, _offset[i], _length[i]));
150 return _cachedStrings[i] = new String(_array, _offset[i], _length[i]);
166 _length[_size++] = l;
181 _length[_size++] = l;
208 System.arraycopy(_length,
[all...]
H A DCharArray.java40 public CharArray(char[] _ch, int _start, int _length, boolean copy) { argument
41 set(_ch, _start, _length, copy);
44 public final void set(char[] _ch, int _start, int _length, boolean copy) { argument
46 ch = new char[_length];
48 length = _length;
49 System.arraycopy(_ch, _start, ch, 0, _length);
53 length = _length;
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.cpp96 : _bfr(bufr), _sol(soln), _line(ln), _offset(off), _length(len) {
110 FileBuffRegion *br = new FileBuffRegion(_bfr,_sol,_line,_offset,_length);
127 if( _offset+_length < br->_offset ) { // "this" ends before "br"
131 int l = br->_offset + br->_length - _offset;
132 if( l > _length ) _length = l; // Pick larger region
139 if( br->_offset+br->_length < _offset ) { // "br" ends before "this"
140 FileBuffRegion *nr = new FileBuffRegion(_bfr,_sol,_line,_offset,_length);
147 int l = _offset + _length - br->_offset;
148 if( l > _length ) _lengt
[all...]
H A Dfilebuff.hpp95 int _offset, _length; // The file area member in class:FileBuffRegion
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp135 AbsSeq(alpha), _length(length), _next(0) {
136 _sequence = NEW_C_HEAP_ARRAY(double, _length, mtInternal);
137 for (int i = 0; i < _length; ++i)
160 _next = (_next + 1) % _length;
163 if (_num < _length)
185 unsigned last_index = (_next + _length - 1) % _length;
192 else if (_num < _length)
213 int first = (_next + _length - _num) % _length;
[all...]
H A Darray.hpp38 int _length; // the number of array elements member in class:ResourceArray
46 _length = 0;
61 _length = length;
77 int length() const { return _length; }
84 int _length; // the number of array elements member in class:CHeapArray
89 _length = 0;
96 _length = length;
111 int length() const { return _length; }
171 _length = i+1; \
182 /* _length
[all...]
H A Darray.cpp87 _length--;
96 _length--;
H A Devents.hpp82 int _length; member in class:EventLogBase
90 _length(length),
106 if (_count < _length) _count++;
108 if (_index >= _length) _index = 0;
257 if (_count < _length) {
262 for (int i = _index; i < _length; i++) {
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.hpp106 unsigned short _length; // number of UTF8 characters in the symbol member in class:Symbol
110 // max_symbol_length is constrained by type of _length
120 assert(index >=0 && index < _length, "symbol index overflow");
145 assert(index >=0 && index < _length, "symbol index overflow");
151 int utf8_length() const { return _length; }
H A DklassVtable.hpp47 int _length; // length of vtable (number of entries) member in class:klassVtable
61 _tableOffset = (address)base - (address)h_klass(); _length = length;
67 int length() const { return _length; }
73 int index_of(methodOop m) const { return index_of(m, _length); }
180 assert(i >= 0 && i < _length, "index out of bounds");
187 assert(i >= 0 && i < _length, "index out of bounds");
193 assert(i >= 0 && i <= _length, "index out of bounds");
/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.cpp32 if (_length >= _size) {
39 assert(_length < _size, "sanity check");
40 _table[_length++] = entry;
46 while (i < _length) {
63 _length = 0;
70 _length = nm->handler_table_size() / sizeof(HandlerTableEntry);
133 while (i < _length) {
H A DexceptionHandlerTable.hpp88 int _length; // the current length of the table member in class:VALUE_OBJ_CLASS_SPEC
117 int size_in_bytes() const { return round_to(_length * sizeof(HandlerTableEntry), oopSize); }
/openjdk7/hotspot/src/share/vm/memory/
H A Dheap.hpp38 size_t _length; // the length in segments member in struct:VALUE_OBJ_CLASS_SPEC::Header
51 void initialize(size_t length) { _header._length = length; set_used(); }
55 size_t length() const { return _header._length; }
73 void set_length(size_t l) { _header._length = l; }

Completed in 62 milliseconds

123