Home | History | Annotate | Download | only in ext2fs

Lines Matching refs:bestfit

2494 	} bestfit;
2509 bestfit.rec_ptr = 0;
2510 bestfit.last_ptr = 0;
2511 bestfit.rec_len = 0;
2524 if (bestfit.rec_ptr == 0 ||
2525 rec->rec_len < bestfit.rec_len) {
2526 bestfit.rec_len = rec->rec_len;
2527 bestfit.rec_ptr = rec_ptr;
2528 bestfit.last_ptr = last_ptr;
2532 if (bestfit.rec_len < 2*length) {
2543 if (bestfit.rec_ptr != 0) {
2544 if (tdb_rec_free_read(tdb, bestfit.rec_ptr, rec) == -1) {
2548 newrec_ptr = tdb_allocate_ofs(tdb, length, bestfit.rec_ptr, rec, bestfit.last_ptr);