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

/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp636 uint new_max = _max; local
637 if( new_max == 0 ) {
647 while( new_max <= len ) new_max <<= 1; // Find next power-of-2
650 //if( new_max >= limit ) new_max = limit-1;
651 _in = (Node**)arena->Arealloc(_in, _max*sizeof(Node*), new_max*sizeof(Node*));
652 Copy::zero_to_bytes(&_in[_max], (new_max-_max)*sizeof(Node*)); // NULL all new space
653 _max = new_max; // Record new max length
655 // represent the numerical value of new_max
664 uint new_max = _outmax; local
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBuffer.java428 LongMonitor new_max = (LongMonitor)map.get(new_max_name);
444 lb.put(new_max.longValue());
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngpread.c792 png_size_t new_max; local
801 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
804 (png_size_t)new_max);
814 png_ptr->save_buffer_max = new_max;

Completed in 41 milliseconds