Lines Matching refs:age
743 segselect_cb_rosenblum(struct lfs *fs, int sn, SEGUSE *sup, long age)
758 return (256 * benefit * age) / cost;
764 long age;
766 age = time_second - sup->su_lastmod;
767 if (age < 0)
768 age = 0;
769 return segselect_cb_rosenblum(fs, sn, sup, age);
779 * age, we should record the serial number in su_lastmod instead of
787 uint64_t age, serial;
801 age = lfs_sb_getserial(fs) - serial;
802 return segselect_cb_rosenblum(fs, sn, sup, age);