Searched defs:next_index (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.cpp168 int next_index = current_index + current->size_in_bytes(); local
169 ciProfileData* next = data_at(next_index);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.hpp75 int next_index() const { return _next_index; } function in class:SparsePRTEntry
H A DconcurrentMark.cpp194 jint next_index = index+1; local
195 jint res = Atomic::cmpxchg(next_index, &_index, index);
200 NOT_PRODUCT(_max_depth = MAX2(_max_depth, next_index));
215 jint next_index = index + n; local
216 if (next_index > _capacity) {
220 jint res = Atomic::cmpxchg(next_index, &_index, index);
227 NOT_PRODUCT(_max_depth = MAX2(_max_depth, next_index));
238 jint next_index = start + n;
239 if (next_index > _capacity) {
244 _index = next_index;
[all...]
H A Dg1CollectedHeap.cpp4799 int next_index = to_obj_array->length(); local
4800 assert(0 <= next_index && next_index < length,
4801 err_msg("invariant, next index: %d, length: %d", next_index, length));
4803 int start = next_index;
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp339 size_t next_index = 1; local
348 while (next_index <= last_index) {
351 HeapWord* p = _array->address_for_index(next_index) + 1;
364 next_index++;
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp730 int next_index = current_index + current->size_in_bytes(); local
731 ProfileData* next = data_at(next_index);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c118 TableIndex next_index; /* Next element available. */ member in struct:LookupTable
146 #define SANITY_CHECK_INDEX(ltable,i) SANITY_CHECK((i) < ltable->next_index)
289 HPROF_ASSERT(ltable->freed_start < ltable->next_index);
309 HPROF_ASSERT(ltable->freed_start < ltable->next_index);
314 for( ; istart < ltable->next_index ; istart += BV_CHUNK_BITSIZE ) {
322 HPROF_ASSERT(istart < ltable->next_index);
334 HPROF_ASSERT(i < ltable->next_index);
337 HPROF_ASSERT((i+1) < ltable->next_index);
411 if ( ( ltable->hash_bucket_count < (ltable->next_index >> 4) )
428 new_size = (ltable->next_index >>
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp3618 Node* next_index = _gvn.transform(new (C) SubXNode(index, __ ConX(sizeof(intptr_t)))); local
3621 Node *log_addr = __ AddP(no_base, buffer, next_index);
3624 __ store(__ ctrl(), index_adr, next_index, index_bt, Compile::AliasIdxRaw); local
3661 Node* next_index = _gvn.transform(new (C) SubXNode(index, __ ConX(sizeof(intptr_t)))); local
3662 Node* log_addr = __ AddP(no_base, buffer, next_index);
3665 __ store(__ ctrl(), index_adr, next_index, TypeX_X->basic_type(), Compile::AliasIdxRaw); local

Completed in 144 milliseconds