Lines Matching refs:snprintf
85 (void)snprintf(buf, len, "%" PRId64, val); in intprt()
117 (void)snprintf(buf, len, "%" PRId64 "years", years); in timeprt()
121 (void)snprintf(buf, len, "%" PRId64 "months", months); in timeprt()
125 (void)snprintf(buf, len, "%" PRId64 "weeks", weeks); in timeprt()
129 (void)snprintf(buf, len, "%" PRId64 "days", days); in timeprt()
133 (void)snprintf(buf, len, "%2d:%d", in timeprt()
137 (void)snprintf(buf, len, "%2d", (int)minutes); in timeprt()
151 (void)snprintf(buf, len, "%" PRId64, seconds); in timepprt()
156 i += snprintf(buf + i, len - i, "%" PRId64 "W", seconds / WEEK); in timepprt()
164 i += snprintf(buf + i, len - i, "%" PRId64 "D", seconds / DAY); in timepprt()
172 i += snprintf(buf + i, len - i, "%" PRId64 "H", seconds / HOUR); in timepprt()
180 i += snprintf(buf + i , len - i, "%" PRId64 "M", in timepprt()
188 (void)snprintf(buf + i, len - i, "%" PRId64 "S", seconds); in timepprt()