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

/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.hpp68 int _cur_size, _cur_pos; member in class:BciMap
73 _cur_size = 50;
74 _old_bci = (int*) malloc(sizeof(int) * _cur_size);
75 _new_st_bci = (int*) malloc(sizeof(int) * _cur_size);
76 _new_end_bci = (int*) malloc(sizeof(int) * _cur_size);
101 if (_cur_pos == _cur_size) {
102 _cur_size += 10;
103 _old_bci = (int*) realloc(_old_bci, sizeof(int) * _cur_size);
104 _new_st_bci = (int*) realloc(_new_st_bci, sizeof(int) * _cur_size);
105 _new_end_bci = (int*) realloc(_new_end_bci, sizeof(int) * _cur_size);
[all...]

Completed in 47 milliseconds