Home
last modified time | relevance | path

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

/bionic/tests/
Dtime_test.cpp72 ASSERT_EQ(1, broken_down->tm_mday); in TEST()
85 ASSERT_EQ(1, broken_down->tm_mday); in TEST()
91 struct tm tm = {.tm_year = 70, .tm_mon = 0, .tm_mday = 1}; in TEST()
133 t.tm_mday = 2; in TEST()
142 t.tm_mday = 2; in TEST()
150 struct tm tm = {.tm_year = 2100 - 1900, .tm_mon = 2, .tm_mday = 10}; in TEST()
183 t.tm_mday = 10; in TEST()
205 t.tm_mday = 45; in TEST()
219 t.tm_mday = 31; in TEST()
233 struct tm tm = {.tm_year = 2150 - 1900, .tm_mon = 2, .tm_mday = 10, .tm_isdst = -1}; in TEST()
[all …]
Dwchar_test.cpp666 t.tm_mday = 10; in TEST()
/bionic/libc/bionic/
Dtime64.c232 days += date->tm_mday - 1; in timegm64()
257 assert(tm->tm_mday >= 1); in check_tm()
258 assert(tm->tm_mday <= days_in_month[IS_LEAP(tm->tm_year)][tm->tm_mon]); in check_tm()
371 dest->tm_mday = src->tm_mday; in copy_tm_to_TM()
403 dest->tm_mday = src->tm_mday; in copy_TM_to_tm()
634 p->tm_mday = (int) m + 1; in gmtime64_r()
776 date->tm_mday, date->tm_hour, in asctime64_r()
/bionic/libc/tzcode/
Dstrftime.c281 pt = _conv(t->tm_mday, getformat(modifier, "02", " 2", " ", "02"), pt, ptlim); in _fmt()
303 pt = _conv(t->tm_mday, getformat(modifier, " 2", " 2", " ", "02"), pt, ptlim); in _fmt()
386 tm.tm_mday = t->tm_mday; in _fmt()
Dasctime.c101 timeptr->tm_mday, timeptr->tm_hour, in asctime_r()
Dstrptime.c280 if (!(_conv_num(&bp, &tm->tm_mday, 1, 31))) in _strptime()
570 tm->tm_yday = tm->tm_mday - 1; in _strptime()
594 tm->tm_mday = days + 1; in _strptime()
Dlocaltime.c1889 tmp->tm_mday = idays + 1; in timesub()
2003 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp()
2018 dest->tm_mday = src->tm_mday; in mktmcpy()
2057 if (normalize_overflow(&yourtm.tm_mday, &yourtm.tm_hour, HOURSPERDAY)) in time2sub()
2068 while (yourtm.tm_mday <= 0) { in time2sub()
2072 yourtm.tm_mday += year_lengths[isleap(li)]; in time2sub()
2074 while (yourtm.tm_mday > DAYSPERLYEAR) { in time2sub()
2076 yourtm.tm_mday -= year_lengths[isleap(li)]; in time2sub()
2082 if (yourtm.tm_mday <= i) in time2sub()
2084 yourtm.tm_mday -= i; in time2sub()
/bionic/libc/kernel/uapi/linux/
Drtc.h16 int tm_mday; member
/bionic/tests/headers/posix/
Dtime_h.c51 STRUCT_MEMBER(struct tm, int, tm_mday); in time_h()
/bionic/libc/include/
Dtime.h82 int tm_mday; member
/bionic/libc/dns/resolv/
Dres_debug.c1194 mytime->tm_year, mytime->tm_mon, mytime->tm_mday, in p_secstodate()