Symbol: days_in_month
usr/src/cmd/smbsrv/test-msgbuf/test_misc.c
224
sec_per_month = days_in_month[month] * SECSPERDAY;
usr/src/cmd/smbsrv/test-msgbuf/test_misc.c
285
dd = days_in_month[mm] * SECSPERDAY;
usr/src/cmd/smbsrv/test-msgbuf/test_misc.c
59
static const int days_in_month[] = {
usr/src/lib/gss_mechs/mech_krb5/krb5/os/gmt_mktime.c
22
static const int days_in_month[12] = {
usr/src/lib/gss_mechs/mech_krb5/krb5/os/gmt_mktime.c
98
accum += days_in_month[t->tm_mon];
usr/src/ucbcmd/touch/touch.c
115
int days_in_month;
usr/src/ucbcmd/touch/touch.c
169
days_in_month = dmsize[tp->tm_mon];
usr/src/ucbcmd/touch/touch.c
171
days_in_month = 29; /* February in leap year */
usr/src/ucbcmd/touch/touch.c
173
tp->tm_mday < 1 || tp->tm_mday > days_in_month ||
usr/src/uts/common/fs/pcfs/pc_subr.c
145
for (month = 1; unixtime >= 86400 * days_in_month(month, year);
usr/src/uts/common/fs/pcfs/pc_subr.c
147
unixtime -= 86400 * days_in_month(month, year);
usr/src/uts/common/fs/pcfs/pc_subr.c
168
ASSERT(day >= 1 && day <= days_in_month(month, year));
usr/src/uts/common/fs/pcfs/pc_subr.c
212
day < 1 || day > days_in_month(month, year) ||
usr/src/uts/common/fs/pcfs/pc_subr.c
230
*unixtime += 86400 * (int64_t)days_in_month(month, year);
usr/src/uts/common/fs/smbsrv/smb_kutil.c
1304
sec_per_month = days_in_month[month] * SECSPERDAY;
usr/src/uts/common/fs/smbsrv/smb_kutil.c
1365
dd = days_in_month[mm] * SECSPERDAY;
usr/src/uts/common/fs/smbsrv/smb_kutil.c
72
static const int days_in_month[] = {
usr/src/uts/intel/io/vmm/vmm_sol_glue.c
519
ct->day > days_in_month(year, ct->mon) ||
usr/src/uts/intel/io/vmm/vmm_sol_glue.c
539
days += days_in_month(year, i);
usr/src/uts/intel/io/vmm/vmm_sol_glue.c
572
for (i = 1; days >= days_in_month(year, i); i++)
usr/src/uts/intel/io/vmm/vmm_sol_glue.c
573
days -= days_in_month(year, i);