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

/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;
/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...]

Completed in 37 milliseconds