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

/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp3949 int max_transitive_size = 0; local
3954 max_transitive_size += super_size;
3960 max_transitive_size += instanceKlass::cast(l)->transitive_interfaces()->length();
3963 max_transitive_size += local_size;
3966 if (max_transitive_size == 0) {
3969 } else if (max_transitive_size == super_size) {
3972 } else if (max_transitive_size == local_size) {
3977 objArrayOop new_objarray = oopFactory::new_system_objArray(max_transitive_size, CHECK_(nullHandle));
3993 if (index != max_transitive_size) {
3994 assert(index < max_transitive_size, "jus
[all...]

Completed in 100 milliseconds