Searched refs:tm_wday (Results 1 - 13 of 13) sorted by relevance

/bionic/libc/tzcode/
H A Dasctime.c90 if (timeptr->tm_wday < 0 || timeptr->tm_wday >= DAYSPERWEEK)
92 else wn = wday_name[timeptr->tm_wday];
H A Dstrftime.c205 pt = _add((t->tm_wday < 0 ||
206 t->tm_wday >= DAYSPERWEEK) ?
207 "?" : Locale->weekday[t->tm_wday],
211 pt = _add((t->tm_wday < 0 ||
212 t->tm_wday >= DAYSPERWEEK) ?
213 "?" : Locale->wday[t->tm_wday],
378 t->tm_wday) / DAYSPERWEEK,
388 pt = _conv((t->tm_wday == 0) ?
389 DAYSPERWEEK : t->tm_wday,
423 wday = t->tm_wday;
[all...]
H A Dstrptime.c227 tm->tm_wday = i;
376 if (!(_conv_num(&bp, &tm->tm_wday, 0, 6)))
H A Dlocaltime.c1678 tmp->tm_wday = EPOCH_WDAY +
1684 tmp->tm_wday %= DAYSPERWEEK;
1685 if (tmp->tm_wday < 0)
1686 tmp->tm_wday += DAYSPERWEEK;
/bionic/libc/upstream-openbsd/lib/libc/time/
H A Dwcsftime.c154 pt = _add((t->tm_wday < 0 ||
155 t->tm_wday >= DAYSPERWEEK) ?
156 UNKNOWN : Locale->weekday[t->tm_wday],
160 pt = _add((t->tm_wday < 0 ||
161 t->tm_wday >= DAYSPERWEEK) ?
162 UNKNOWN : Locale->wday[t->tm_wday],
309 t->tm_wday) / DAYSPERWEEK,
319 pt = _conv((t->tm_wday == 0) ?
320 DAYSPERWEEK : t->tm_wday,
354 wday = t->tm_wday;
[all...]
/bionic/libc/kernel/uapi/linux/
H A Drtc.h28 int tm_wday; member in struct:rtc_time
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Drtc.h28 int tm_wday; member in struct:rtc_time
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Drtc.h28 int tm_wday; member in struct:rtc_time
/bionic/libc/bionic/
H A Dtime64.c263 assert(tm->tm_wday >= 0);
264 assert(tm->tm_wday <= 6);
374 dest->tm_wday = src->tm_wday;
406 dest->tm_wday = src->tm_wday;
635 p->tm_wday = v_tm_wday;
734 if( 0 <= date->tm_wday && date->tm_wday <= 6 )
769 wday_name[date->tm_wday],
[all...]
/bionic/libc/include/
H A Dtime.h53 int tm_wday; member in struct:tm
/bionic/tests/headers/posix/
H A Dtime_h.c54 STRUCT_MEMBER(struct tm, int, tm_wday);
/bionic/tools/versioner/current/
H A Dtime.h53 int tm_wday; member in struct:tm
/bionic/tests/
H A Dtime_test.cpp901 EXPECT_EQ(5, tm.tm_wday);
916 EXPECT_EQ(5, tm.tm_wday);

Completed in 210 milliseconds