Lines Matching defs:fl

905   virtual void do_list(FreeList<Chunk>* fl) = 0;
954 void do_list(FreeList<Chunk>* fl) {
956 fl->compute_desired(_inter_sweep_current, _inter_sweep_estimate, _intra_sweep_estimate);
957 fl->set_coal_desired((ssize_t)((double)fl->desired() * coalSurplusPercent));
958 fl->set_before_sweep(fl->count());
959 fl->set_bfr_surp(fl->surplus());
970 virtual bool do_list(FreeList<Chunk>* fl) = 0;
1013 bool do_list(FreeList<Chunk>* fl) {
1014 Chunk* item = fl->head();
1051 void do_list(FreeList<Chunk>* fl) {
1052 fl->set_returned_bytes(0);
1067 void do_list(FreeList<Chunk>* fl) {
1068 _dict_returned_bytes += fl->returned_bytes();
1087 void do_list(FreeList<Chunk>* fl) {
1106 void do_list(FreeList<Chunk>* fl) {
1108 fl->set_surplus(fl->count() -
1109 (ssize_t)((double)fl->desired() * splitSurplusPercent));
1125 void do_list(FreeList<Chunk>* fl) {
1126 fl->set_hint(hint);
1127 assert(fl->hint() == 0 || fl->hint() > fl->size(),
1129 if (fl->surplus() > 0) {
1130 hint = fl->size();
1144 void do_list(FreeList<Chunk>* fl) {
1145 fl->set_prev_sweep(fl->count());
1146 fl->set_coal_births(0);
1147 fl->set_coal_deaths(0);
1148 fl->set_split_births(0);
1149 fl->set_split_deaths(0);
1204 void do_list(FreeList<Chunk>* fl) {
1209 fl->print_on(gclog_or_tty);
1210 _total_free += fl->count() * fl->size() ;
1211 total()->set_count( total()->count() + fl->count() );
1212 total()->set_bfr_surp( total()->bfr_surp() + fl->bfr_surp() );
1213 total()->set_surplus( total()->split_deaths() + fl->surplus() );
1214 total()->set_desired( total()->desired() + fl->desired() );
1215 total()->set_prev_sweep( total()->prev_sweep() + fl->prev_sweep() );
1216 total()->set_before_sweep(total()->before_sweep() + fl->before_sweep());
1217 total()->set_coal_births( total()->coal_births() + fl->coal_births() );
1218 total()->set_coal_deaths( total()->coal_deaths() + fl->coal_deaths() );
1219 total()->set_split_births(total()->split_births() + fl->split_births());
1220 total()->set_split_deaths(total()->split_deaths() + fl->split_deaths());
1256 void do_list(FreeList<Chunk>* fl) {
1261 fl->print_on(gclog_or_tty);
1262 size_t sz = fl->size();
1263 for (Chunk* fc = fl->head(); fc != NULL;