Searched refs:nof_dims (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp208 int nof_dims = number_of_dimensions(thread); variable
210 assert(nof_dims >= 1, "multianewarray rank must be nonzero");
217 if (nof_dims > small_dims) {
218 dims = (jint*) NEW_RESOURCE_ARRAY(jint, nof_dims);
220 for (int index = 0; index < nof_dims; index++) {
225 oop obj = arrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
H A DbytecodeTracer.cpp448 int nof_dims = get_index_u1(); local
451 st->print_cr(" %s %d", name->as_C_string(), nof_dims);

Completed in 35 milliseconds