Home | History | Annotate | Download | only in base

Lines Matching refs:amount

743   explicit SubtractFromOffset(size_t amount)
744 : amount(amount) {}
747 if (offset >= amount)
748 offset -= amount;
754 size_t amount;
758 explicit AddToOffset(size_t amount)
759 : amount(amount) {}
762 offset += amount;
765 size_t amount;