Home
last modified time | relevance | path

Searched refs:hhmm (Results 1 – 1 of 1) sorted by relevance

/glibc-2.36/time/
Dtst-strptime2.c61 mkbuf (char *buf, bool neg, bool colon, unsigned int hhmm, size_t ndigits) in mkbuf() argument
66 unsigned int hh = hhmm / 100; in mkbuf()
67 unsigned int mm = hhmm % 100; in mkbuf()
81 snprintf (buf + i, ndigits + 1, "%04u", hhmm); in mkbuf()
162 unsigned int hhmm; in do_test() local
191 for (hhmm = 0; hhmm <= 9999; hhmm += step) in do_test()
195 expect = mkbuf (buf, false, false, hhmm, ndigits); in do_test()
198 expect = mkbuf (buf, true, false, hhmm, ndigits); in do_test()
205 expect = mkbuf (buf, false, true, hhmm, ndigits); in do_test()
208 expect = mkbuf (buf, true, true, hhmm, ndigits); in do_test()