Lines Matching defs:scratch_i

178 // Append the current entry at scratch_i in scratch_cp to *merge_cp_p
190 int scratch_i, constantPoolHandle *merge_cp_p, int *merge_cp_length_p,
194 switch (scratch_cp->tag_at(scratch_i).value()) {
210 scratch_cp->klass_name_at(scratch_i));
212 if (scratch_i != *merge_cp_length_p) {
215 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
225 constantPoolOopDesc::copy_entry_to(scratch_cp, scratch_i, *merge_cp_p, *merge_cp_length_p,
228 if (scratch_i != *merge_cp_length_p) {
231 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
250 constantPoolOopDesc::copy_entry_to(scratch_cp, scratch_i, *merge_cp_p, *merge_cp_length_p,
253 if (scratch_i != *merge_cp_length_p) {
256 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
264 int name_ref_i = scratch_cp->name_ref_index_at(scratch_i);
293 int signature_ref_i = scratch_cp->signature_ref_index_at(scratch_i);
342 if (scratch_i != *merge_cp_length_p) {
345 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
355 int klass_ref_i = scratch_cp->uncached_klass_ref_index_at(scratch_i);
387 scratch_cp->uncached_name_and_type_ref_index_at(scratch_i);
428 switch (scratch_cp->tag_at(scratch_i).value()) {
460 if (scratch_i != *merge_cp_length_p) {
463 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
488 jbyte bad_value = scratch_cp->tag_at(scratch_i).value();
1126 int scratch_i; // index into scratch_cp
1135 for (scratch_i = 1; scratch_i < pass1a_length; scratch_i += increment) {
1136 switch (scratch_cp->tag_at(scratch_i).value()) {
1148 bool match = scratch_cp->compare_entry_to(scratch_i, *merge_cp_p,
1149 scratch_i, CHECK_0);
1153 } else if (is_unresolved_class_mismatch(scratch_cp, scratch_i,
1154 *merge_cp_p, scratch_i)) {
1161 } else if (is_unresolved_string_mismatch(scratch_cp, scratch_i,
1162 *merge_cp_p, scratch_i)) {
1166 // happens to be at scratch_i in *merge_cp_p.
1170 int found_i = scratch_cp->find_matching_entry(scratch_i, *merge_cp_p,
1173 guarantee(found_i != scratch_i,
1178 map_index(scratch_cp, scratch_i, found_i);
1191 append_entry(scratch_cp, scratch_i, merge_cp_p, merge_cp_length_p,
1197 ("after pass 1a: merge_cp_len=%d, scratch_i=%d, index_map_len=%d",
1198 *merge_cp_length_p, scratch_i, _index_map_count));
1200 if (scratch_i < scratch_cp->length()) {
1206 for (; scratch_i < scratch_cp->length(); scratch_i += increment) {
1207 switch (scratch_cp->tag_at(scratch_i).value()) {
1220 scratch_cp->find_matching_entry(scratch_i, *merge_cp_p, CHECK_0);
1224 map_index(scratch_cp, scratch_i, found_i);
1230 append_entry(scratch_cp, scratch_i, merge_cp_p, merge_cp_length_p,
1235 ("after pass 1b: merge_cp_len=%d, scratch_i=%d, index_map_len=%d",
1236 *merge_cp_length_p, scratch_i, _index_map_count));