Lines Matching refs:last
564 /** The tick of the last reset */
568 /** The tick that current last changed. */
569 mutable Tick last;
579 : current(0), lastReset(0), total(0), last(0)
583 * Set the current count to the one provided, update the total and last
590 total += current * (curTick() - last);
591 last = curTick();
620 assert(last == curTick());
635 total += current * (curTick() - last);
636 last = curTick();
646 last = curTick();