bestfit 281 lib/tdb/common/freelist.c } bestfit;
bestfit 298 lib/tdb/common/freelist.c bestfit.rec_ptr = 0;
bestfit 299 lib/tdb/common/freelist.c bestfit.last_ptr = 0;
bestfit 300 lib/tdb/common/freelist.c bestfit.rec_len = 0;
bestfit 313 lib/tdb/common/freelist.c if (bestfit.rec_ptr == 0 ||
bestfit 314 lib/tdb/common/freelist.c rec->rec_len < bestfit.rec_len) {
bestfit 315 lib/tdb/common/freelist.c bestfit.rec_len = rec->rec_len;
bestfit 316 lib/tdb/common/freelist.c bestfit.rec_ptr = rec_ptr;
bestfit 317 lib/tdb/common/freelist.c bestfit.last_ptr = last_ptr;
bestfit 329 lib/tdb/common/freelist.c if (bestfit.rec_len > 0 &&
bestfit 330 lib/tdb/common/freelist.c bestfit.rec_len < length * multiplier) {
bestfit 341 lib/tdb/common/freelist.c if (bestfit.rec_ptr != 0) {
bestfit 342 lib/tdb/common/freelist.c if (tdb_rec_free_read(tdb, bestfit.rec_ptr, rec) == -1) {
bestfit 346 lib/tdb/common/freelist.c newrec_ptr = tdb_allocate_ofs(tdb, length, bestfit.rec_ptr,
bestfit 347 lib/tdb/common/freelist.c rec, bestfit.last_ptr);