Lines Matching refs:num2str
86 static void num2str(char *c, int i) in num2str() function
263 num2str(buf + 8, t->tm_mday); in asctime_r()
267 num2str(buf + 11, t->tm_hour); in asctime_r()
269 num2str(buf + 14, t->tm_min); in asctime_r()
271 num2str(buf + 17, t->tm_sec); in asctime_r()
273 num2str(buf + 20, 2000 / 100); in asctime_r()
274 num2str(buf + 22, 2000 % 100); in asctime_r()
283 num2str(buf + 8, t->tm_mday); in asctime_r()
287 num2str(buf + 11, t->tm_hour); in asctime_r()
289 num2str(buf + 14, t->tm_min); in asctime_r()
291 num2str(buf + 17, t->tm_sec); in asctime_r()
293 num2str(buf + 20, (t->tm_year + 1900) / 100); in asctime_r()
294 num2str(buf + 22, (t->tm_year + 1900) % 100); in asctime_r()