Searched defs:last_index (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DquickSort.hpp53 int last_index = length - 1; local
58 if (comparator(array[0], array[last_index]) == 1) {
59 swap(array, 0, last_index);
61 if (comparator(array[middle_index], array[last_index]) == 1) {
62 swap(array, middle_index, last_index);
H A DnumberSeq.cpp185 unsigned last_index = (_next + _length - 1) % _length; local
186 return _sequence[last_index];
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.cpp398 int last_index = (monitor_base - stack_base) / monitor_size - 1; local
399 int index = last_index - (addr - stack_base) / monitor_size;
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp340 size_t last_index = last_active_index(); local
348 while (next_index <= last_index) {
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DPoller.c137 int last_index; member in struct:ioevent
290 ioeh->last_index = 0;
345 for (i = 0; i < ioeh->last_index; i++)
424 for (idx = ioeh->last_index - 1; idx >= 0; idx--) {
429 else if (ioeh->last_index >= ioeh->max_index)
442 new_total = ioeh->last_index;
446 for (i = ioeh->last_index; i <= new_total; i++)
450 idx = ioeh->last_index;
451 ioeh->total_free = new_total - ioeh->last_index - 1;
453 ioeh->last_index, new_tota
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp2317 uint last_index = hr->last_hc_index(); local
2318 for (uint i = first_index; i < last_index; i += 1) {
5868 uint last_index = hr->last_hc_index(); local
5873 while (i < last_index) {

Completed in 50 milliseconds