Lines Matching defs:age
766 segselect_cb_rosenblum(struct lfs *fs, int sn, SEGUSE *sup, long age)
781 return (256 * benefit * age) / cost;
787 long age;
789 age = time_second - sup->su_lastmod;
790 if (age < 0)
791 age = 0;
792 return segselect_cb_rosenblum(fs, sn, sup, age);
802 * age, we should record the serial number in su_lastmod instead of
810 uint64_t age, serial;
824 age = lfs_sb_getserial(fs) - serial;
825 return segselect_cb_rosenblum(fs, sn, sup, age);