OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:days_in_month
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/bionic/
time64.c
85
static const int
days_in_month
[2][12] = {
variable
258
assert(tm->tm_mday <=
days_in_month
[IS_LEAP(tm->tm_year)][tm->tm_mon]);
589
while (m >= (Time64_T)
days_in_month
[leap][v_tm_mon]) {
590
m -= (Time64_T)
days_in_month
[leap][v_tm_mon];
613
while (m < (Time64_T) -
days_in_month
[leap][v_tm_mon]) {
614
m += (Time64_T)
days_in_month
[leap][v_tm_mon];
617
m += (Time64_T)
days_in_month
[leap][v_tm_mon];
/external/qemu/hw/timer/
mc146818rtc.c
347
int
days_in_month
;
local
362
days_in_month
= get_days_in_month(tm->tm_mon,
367
} else if (tm->tm_mday >
days_in_month
) {
Completed in 421 milliseconds