Lines Matching defs:end_idx
776 void StringTable::buckets_do(OopClosure* f, int start_idx, int end_idx) {
781 assert(0 <= end_idx && end_idx <= limit,
782 err_msg("end_idx (" INT32_FORMAT ") oob?", end_idx));
783 assert(start_idx <= end_idx,
784 err_msg("Ordering: start_idx=" INT32_FORMAT", end_idx=" INT32_FORMAT,
785 start_idx, end_idx));
787 for (int i = start_idx; i < end_idx; i += 1) {
822 int end_idx = MIN2(limit, start_idx + ClaimChunkSize);
823 buckets_do(f, start_idx, end_idx);