OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tm_mon
(Results
1 - 25
of
265
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
/src/external/bsd/mdocml/dist/
test-strptime.c
9
tm.tm_year == 114 && tm.
tm_mon
== 0 && tm.tm_mday == 4);
/src/crypto/external/bsd/heimdal/dist/lib/asn1/
timegm.c
71
if (tm->
tm_mon
< 0 || tm->
tm_mon
> 11)
73
if (tm->tm_mday < 1 || tm->tm_mday > (int)ndays[is_leap(tm->tm_year)][tm->
tm_mon
])
85
for (i = 0; i < tm->
tm_mon
; ++i)
126
tm->
tm_mon
= 0;
129
unsigned daysinmonth = ndays[is_leap(tm->tm_year)][tm->
tm_mon
];
133
tm->
tm_mon
++;
check-timegm.c
49
tm.
tm_mon
= 9;
65
tm.
tm_mon
!= 9 ||
/src/lib/libc/time/
getdate.c
98
rtm.tm_mday = rtm.
tm_mon
= rtm.tm_year = TMSENTINEL;
144
rtm.
tm_mon
== TMSENTINEL && rtm.tm_mday == TMSENTINEL) {
146
rtm.
tm_mon
= tmnow.
tm_mon
;
155
if (rtm.
tm_mon
!= TMSENTINEL) {
158
((rtm.
tm_mon
< tmnow.
tm_mon
)? 1 : 0);
175
tm.
tm_mon
= rtm.
tm_mon
;
198
rtm.tm_year == TMSENTINEL && rtm.
tm_mon
== TMSENTINEL &
[
all
...]
asctime.c
112
if (timeptr->
tm_mon
< 0 || timeptr->
tm_mon
>= MONSPERYEAR)
114
else mn = mon_name[timeptr->
tm_mon
];
/src/crypto/external/bsd/heimdal/dist/lib/roken/
timegm.c
63
if (tm->
tm_mon
< 0 || tm->
tm_mon
> 11)
65
if (tm->tm_mday < 1 || tm->tm_mday > ndays[is_leap(tm->tm_year)][tm->
tm_mon
])
77
for (i = 0; i < tm->
tm_mon
; ++i)
strftime.c
195
"%s", abb_month[tm->
tm_mon
]);
199
"%s", full_month[tm->
tm_mon
]);
205
tm->
tm_mon
+ 1,
222
tm->
tm_mon
+ 1,
233
tm->
tm_mon
+ 1, tm->tm_mday);
265
"%02d", tm->
tm_mon
+ 1);
335
tm->
tm_mon
+ 1,
/src/external/gpl2/rcs/dist/src/
maketime.c
80
int m = tm->
tm_mon
;
158
if (--t->
tm_mon
< 0) {
160
t->
tm_mon
= 11;
175
if (11 < ++t->
tm_mon
) {
177
t->
tm_mon
= 0;
213
if (12 <= (unsigned)tm->
tm_mon
)
216
tm->tm_yday = month_yday[tm->
tm_mon
] + tm->tm_mday
217
- (tm->
tm_mon
<2 || ! isleap(tm->tm_year + TM_YEAR_ORIGIN));
239
| (tm->
tm_mon
^ gtm->
tm_mon
)
[
all
...]
/src/external/bsd/less/dist/
mkhelp.py
9
(time.tm_hour, time.tm_min, time.tm_year, time.
tm_mon
, time.tm_mday))
/src/external/bsd/unbound/dist/compat/
gmtime_r.c
94
for (tmp->
tm_mon
= 0; days >= (long) ip[tmp->
tm_mon
]; ++(tmp->
tm_mon
))
95
days = days - (long) ip[tmp->
tm_mon
];
/src/tests/lib/libutil/
t_parsedate.c
96
ATF_CHECK_MSG(tm.
tm_mon
+ 1 == month,
98
argstr, month, (int)tm.
tm_mon
);
266
.tm_year = 2013-1900, .
tm_mon
= 7-1, .tm_mday = 9,
378
tm.
tm_mon
++;
379
if (tm.
tm_mon
== 1 &&
382
else if ((tm.
tm_mon
== 3 || tm.
tm_mon
== 5 ||
383
tm.
tm_mon
== 8 || tm.
tm_mon
== 10) && tm.tm_mday == 31)
389
tm.
tm_mon
+= 2; /* "next" means add 2 ... *
[
all
...]
/src/external/bsd/ntp/dist/libntp/
mktime.c
161
(result = (atmp->
tm_mon
- btmp->
tm_mon
)) == 0)
203
normalize(&yourtm.tm_year, &yourtm.
tm_mon
, MONSPERYEAR);
211
TM_YEAR_BASE)][yourtm.
tm_mon
];
215
if (++yourtm.
tm_mon
>= MONSPERYEAR) {
216
yourtm.
tm_mon
= 0;
humandate.c
32
tm->tm_mday, months[tm->
tm_mon
],
/src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
locale_facets.cc
174
return (mon_yday[is_leap (1900 + tm->tm_year)][tm->
tm_mon
]
198
// We don't have
tm_mon
and/or tm_mday, compute them.
204
tm->
tm_mon
= t_mon - 1;
212
// Don't crash in day_of_the_week if
tm_mon
is uninitialized.
213
if (_M_have_mon || (unsigned) tm->
tm_mon
<= 11)
215
= day_of_the_week (tm->tm_year, tm->
tm_mon
, tm->tm_mday);
219
&& (_M_have_mon || (unsigned) tm->
tm_mon
<= 11))
238
tm->
tm_mon
= t_mon - 1;
/src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
locale_facets.cc
174
return (mon_yday[is_leap (1900 + tm->tm_year)][tm->
tm_mon
]
198
// We don't have
tm_mon
and/or tm_mday, compute them.
204
tm->
tm_mon
= t_mon - 1;
212
// Don't crash in day_of_the_week if
tm_mon
is uninitialized.
213
if (_M_have_mon || (unsigned) tm->
tm_mon
<= 11)
215
= day_of_the_week (tm->tm_year, tm->
tm_mon
, tm->tm_mday);
219
&& (_M_have_mon || (unsigned) tm->
tm_mon
<= 11))
238
tm->
tm_mon
= t_mon - 1;
/src/lib/libresolv/
ns_date.c
69
tim.
tm_mon
= datepart(cp + 4, 2, 01, 12, errp) - 1;
91
for (i = 0; i < tim.
tm_mon
; i++)
94
if (tim.
tm_mon
> 1 && isleap(1900+tim.tm_year))
/src/external/bsd/libbind/dist/nameser/
ns_date.c
72
time.
tm_mon
= datepart(cp + 4, 2, 01, 12, errp) - 1;
94
for (i = 0; i < time.
tm_mon
; i++)
97
if (time.
tm_mon
> 1 && isleap(1900+time.tm_year))
/src/usr.bin/at/
stime.c
93
t->
tm_mon
= ATOI2(arg);
94
--t->
tm_mon
; /* Convert from 01-12 to 00-11 */
/src/crypto/external/apache2/openssl/dist/test/
gmdifftest.c
37
|| !TEST_int_eq(tm1.
tm_mon
, tm2.
tm_mon
)
/src/crypto/external/bsd/openssl/dist/test/
gmdifftest.c
37
|| !TEST_int_eq(tm1.
tm_mon
, tm2.
tm_mon
)
/src/crypto/external/bsd/openssl.old/dist/test/
gmdifftest.c
37
|| !TEST_int_eq(tm1.
tm_mon
, tm2.
tm_mon
)
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/stdc/
time.d
34
int
tm_mon
; /// months since January - [0, 11]
/src/games/pom/
pom.c
246
lt->
tm_mon
= ATOI2(p);
247
if ((lt->
tm_mon
> 12) || !lt->
tm_mon
)
249
--lt->
tm_mon
; /* time struct is 0 - 11 */
/src/usr.bin/moduli/qsieve/
qfile.c
61
gtm->
tm_mon
+ 1,
/src/external/mpl/bind/dist/lib/dns/
time.c
66
tm.
tm_mon
= 0;
67
while ((secs = month_secs(tm.
tm_mon
, tm.tm_year + 1900)) <= t) {
69
tm.
tm_mon
++;
89
tm.tm_year + 1900, tm.
tm_mon
+ 1, tm.tm_mday, tm.tm_hour,
Completed in 134 milliseconds
1
2
3
4
5
6
7
8
9
10
11
Indexes created Sun Mar 01 05:31:48 UTC 2026