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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.hpp51 // * _max_length (returned by max_length()) is the maximum number of
109 void initialize(HeapWord* bottom, HeapWord* end, uint max_length);
127 uint max_length() const { return _max_length; } function in class:HeapRegionSeq
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlass.hpp39 jint max_length() { return _max_length; } function in class:typeArrayKlass
H A Dsymbol.hpp135 static int max_length() { return max_symbol_length; } function in class:Symbol
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfData.cpp421 jint max_length,
425 if (max_length == 0 && s != NULL) max_length = (jint)strlen(s);
427 assert(max_length != 0, "PerfStringVariable with length 0");
429 PerfStringVariable* p = new PerfStringVariable(ns, name, max_length, s);
419 create_string_variable(CounterNS ns, const char* name, jint max_length, const char* s, TRAPS) argument
H A DperfData.hpp551 * after initialization. If the string value is >= max_length, then
552 * it will be truncated to max_length characters. The copied string
564 PerfStringVariable(CounterNS ns, const char* namep, jint max_length, argument
566 : PerfString(ns, namep, V_Variable, max_length+1,
769 int max_length,
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dtrees.c150 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
523 int max_length = desc->stat_desc->max_length; local
541 if (bits > max_length) bits = max_length, overflow++;
561 bits = max_length-1;
565 s->bl_count[max_length]--;
567 * but this does not affect bl_count[max_length]
577 for (bits = max_length; bits != 0; bits--) {
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c2360 long max_length; local
2441 max_length = file_len*2 + 512; /* Twice as big + 512 */
2442 new_image = allocate(&ci, (int)max_length);
2456 max_length);

Completed in 48 milliseconds