Searched refs:dim_array (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp341 arrayOop Reflection::reflect_new_multi_array(oop element_mirror, typeArrayOop dim_array, TRAPS) { argument
342 assert(dim_array->is_typeArray(), "just checking");
343 assert(typeArrayKlass::cast(dim_array->klass())->element_type() == T_INT, "just checking");
349 int len = dim_array->length();
356 int d = dim_array->int_at(i);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp215 jint dim_array[small_dims]; variable
216 jint *dims = &dim_array[0];
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp3562 arrayOop dim_array = check_array(env, dim, true, CHECK_NULL); variable
3564 assert(dim_array->is_typeArray(), "just checking");
3565 oop result = Reflection::reflect_new_multi_array(element_mirror, typeArrayOop(dim_array), CHECK_NULL);

Completed in 59 milliseconds