Lines Matching defs:remainder
37 std::string remainder;
41 remainder = std::to_string(us);
42 if (remainder.length() < MaxUsLength) {
43 remainder = std::string(MaxUsLength - remainder.length(), '0') + remainder;
48 remainder = std::to_string(ms);
49 if (remainder.length() < MaxMsLength) {
50 remainder = std::string(MaxMsLength - remainder.length(), '0') + remainder;
62 return std::string(sysTime) + remainder;