Lines Matching defs:age
795 segselect_cb_rosenblum(struct lfs *fs, int sn, SEGUSE *sup, long age)
810 return (256 * benefit * age) / cost;
816 long age;
818 age = time_second - sup->su_lastmod;
819 if (age < 0)
820 age = 0;
821 return segselect_cb_rosenblum(fs, sn, sup, age);
831 * age, we should record the serial number in su_lastmod instead of
839 uint64_t age, serial;
853 age = lfs_sb_getserial(fs) - serial;
854 return segselect_cb_rosenblum(fs, sn, sup, age);