Symbol: lt
bin/date/date.c
193
badv = vary_apply(v, tval, &lt);
bin/date/date.c
210
strftime(buf, sizeof(buf), format, &lt);
bin/date/date.c
212
strftime(tzbuf, sizeof(tzbuf), "%z", &lt);
bin/date/date.c
228
struct tm *lt;
bin/date/date.c
234
lt = localtime(&tval);
bin/date/date.c
235
t = strptime(p, fmt, lt);
bin/date/date.c
255
lt = localtime(&tval);
bin/date/date.c
261
lt->tm_sec = ATOI2(dot);
bin/date/date.c
262
if (lt->tm_sec > 61)
bin/date/date.c
265
lt->tm_sec = 0;
bin/date/date.c
271
lt->tm_year = ATOI2(p) * 100 - TM_YEAR_BASE;
bin/date/date.c
276
lt->tm_year += ATOI2(p);
bin/date/date.c
278
lt->tm_year = ATOI2(p);
bin/date/date.c
279
if (lt->tm_year < 69)
bin/date/date.c
280
lt->tm_year += 2000 - TM_YEAR_BASE;
bin/date/date.c
282
lt->tm_year += 1900 - TM_YEAR_BASE;
bin/date/date.c
286
lt->tm_mon = ATOI2(p);
bin/date/date.c
287
if (lt->tm_mon > 12)
bin/date/date.c
289
--lt->tm_mon; /* time struct is 0 - 11 */
bin/date/date.c
292
lt->tm_mday = ATOI2(p);
bin/date/date.c
293
if (lt->tm_mday > 31)
bin/date/date.c
297
lt->tm_hour = ATOI2(p);
bin/date/date.c
298
if (lt->tm_hour > 23)
bin/date/date.c
302
lt->tm_min = ATOI2(p);
bin/date/date.c
303
if (lt->tm_min > 59)
bin/date/date.c
312
lt->tm_isdst = -1;
bin/date/date.c
315
if ((tval = mktime(lt)) == -1)
bin/date/date.c
83
struct tm lt;
bin/pax/sel_subs.c
526
struct tm *lt;
bin/pax/sel_subs.c
529
lt = localtime(tval);
bin/pax/sel_subs.c
537
if ((lt->tm_sec = ATOI2(dot)) > 61)
bin/pax/sel_subs.c
540
lt->tm_sec = 0;
bin/pax/sel_subs.c
548
if ((lt->tm_year = ATOI2(str)) < 69)
bin/pax/sel_subs.c
549
lt->tm_year += 100;
bin/pax/sel_subs.c
557
if ((lt->tm_mon = ATOI2(str)) > 12)
bin/pax/sel_subs.c
559
--lt->tm_mon;
bin/pax/sel_subs.c
566
if ((lt->tm_mday = ATOI2(str)) > 31)
bin/pax/sel_subs.c
574
if ((lt->tm_hour = ATOI2(str)) > 23)
bin/pax/sel_subs.c
582
if ((lt->tm_min = ATOI2(str)) > 59)
bin/pax/sel_subs.c
591
if ((*tval = mktime(lt)) == -1)
crypto/libressl/crypto/bn/bn_lcl.h
432
BN_ULONG m,m1,lt,ht; \
crypto/libressl/crypto/bn/bn_lcl.h
434
lt=l; \
crypto/libressl/crypto/bn/bn_lcl.h
436
m =(bh)*(lt); \
crypto/libressl/crypto/bn/bn_lcl.h
437
lt=(bl)*(lt); \
crypto/libressl/crypto/bn/bn_lcl.h
443
lt=(lt+m1)&BN_MASK2; if (lt < m1) ht++; \
crypto/libressl/crypto/bn/bn_lcl.h
444
(l)=lt; \
crypto/libressl/crypto/bn/bn_lib.c
776
int gt, lt;
crypto/libressl/crypto/bn/bn_lib.c
799
lt = -1;
crypto/libressl/crypto/bn/bn_lib.c
802
lt = 1;
crypto/libressl/crypto/bn/bn_lib.c
808
return (lt);
crypto/libressl/crypto/bn/bn_lib.c
815
return (lt);
crypto/openssh/ed25519.c
542
b = lt(r->v[i],pb);
crypto/openssh/ed25519.c
590
b = lt(r1[i],pb);
games/hack/hack.unix.c
122
struct tm *lt = getlt();
games/hack/hack.unix.c
125
lt->tm_year % 100, lt->tm_mon + 1, lt->tm_mday);
games/hack/hack.unix.c
134
struct tm *lt = getlt();
games/hack/hack.unix.c
137
diy = lt->tm_yday;
games/hack/hack.unix.c
138
golden = (lt->tm_year % 19) + 1;
lib/libc/string/timingsafe_memcmp.c
30
int lt = (p1[i] - p2[i]) >> CHAR_BIT;
lib/libc/string/timingsafe_memcmp.c
36
int cmp = lt - gt;
lib/libc/string/timingsafe_memcmp.c
42
done |= lt | gt;
lib/libutil/login_ok.c
102
lt = *ltptr;
lib/libutil/login_ok.c
103
else if ((lt = realloc(*ltptr, j * sizeof(struct login_time))) != NULL) {
lib/libutil/login_ok.c
105
*ltptr = lt;
lib/libutil/login_ok.c
107
if (lt != NULL) {
lib/libutil/login_ok.c
111
lt[i] = parse_lt(tl[i]);
lib/libutil/login_ok.c
112
lt[i].lt_dow = LTM_NONE;
lib/libutil/login_ok.c
115
return lt;
lib/libutil/login_ok.c
229
struct login_time *lt;
lib/libutil/login_ok.c
231
lt = login_timelist(lc, "times.allow", &ltimesno, &ltimes);
lib/libutil/login_ok.c
232
if (lt != NULL && in_ltms(lt, tptr, NULL) == -1)
lib/libutil/login_ok.c
236
lt = login_timelist(lc, "times.deny", &ltimesno, &ltimes);
lib/libutil/login_ok.c
237
if (lt != NULL && in_ltms(lt, tptr, NULL) != -1)
lib/libutil/login_ok.c
94
struct login_time *lt = NULL;
sbin/shutdown/shutdown.c
414
struct tm *lt;
sbin/shutdown/shutdown.c
469
lt = localtime(&now); /* current time val */
sbin/shutdown/shutdown.c
474
this_year = lt->tm_year;
sbin/shutdown/shutdown.c
475
lt->tm_year = ATOI2(timearg);
sbin/shutdown/shutdown.c
481
if (lt->tm_year < (this_year % 100) - 1)
sbin/shutdown/shutdown.c
482
lt->tm_year += 100;
sbin/shutdown/shutdown.c
484
lt->tm_year += (this_year - (this_year % 100));
sbin/shutdown/shutdown.c
487
lt->tm_mon = ATOI2(timearg);
sbin/shutdown/shutdown.c
488
if (--lt->tm_mon < 0 || lt->tm_mon > 11)
sbin/shutdown/shutdown.c
493
lt->tm_mday = ATOI2(timearg);
sbin/shutdown/shutdown.c
494
if (lt->tm_mday < 1 || lt->tm_mday > 31)
sbin/shutdown/shutdown.c
498
lt->tm_hour = ATOI2(timearg);
sbin/shutdown/shutdown.c
499
if (lt->tm_hour < 0 || lt->tm_hour > 23)
sbin/shutdown/shutdown.c
501
lt->tm_min = ATOI2(timearg);
sbin/shutdown/shutdown.c
502
if (lt->tm_min < 0 || lt->tm_min > 59)
sbin/shutdown/shutdown.c
504
lt->tm_sec = 0;
sbin/shutdown/shutdown.c
505
if ((shuttime = mktime(lt)) == -1)
sbin/shutdown/shutdown.c
517
lt->tm_mday++;
sbin/shutdown/shutdown.c
518
if ((shuttime = mktime(lt)) == -1)
sys/dev/serial/sio/sio.c
2081
struct termios *lt = mynor & CALLOUT_MASK
sys/dev/serial/sio/sio.c
2084
dt->c_iflag = (tp->t_iflag & lt->c_iflag)
sys/dev/serial/sio/sio.c
2085
| (dt->c_iflag & ~lt->c_iflag);
sys/dev/serial/sio/sio.c
2086
dt->c_oflag = (tp->t_oflag & lt->c_oflag)
sys/dev/serial/sio/sio.c
2087
| (dt->c_oflag & ~lt->c_oflag);
sys/dev/serial/sio/sio.c
2088
dt->c_cflag = (tp->t_cflag & lt->c_cflag)
sys/dev/serial/sio/sio.c
2089
| (dt->c_cflag & ~lt->c_cflag);
sys/dev/serial/sio/sio.c
2090
dt->c_lflag = (tp->t_lflag & lt->c_lflag)
sys/dev/serial/sio/sio.c
2091
| (dt->c_lflag & ~lt->c_lflag);
sys/dev/serial/sio/sio.c
2093
if (lt->c_cc[cc] != 0)
sys/dev/serial/sio/sio.c
2095
if (lt->c_ispeed != 0)
sys/dev/serial/sio/sio.c
2097
if (lt->c_ospeed != 0)
sys/netinet6/in6.c
618
const struct in6_addrlifetime *lt;
sys/netinet6/in6.c
625
lt = &ifr->ifr_ifru.ifru_lifetime;
sys/netinet6/in6.c
626
if (lt->ia6t_vltime != ND6_INFINITE_LIFETIME &&
sys/netinet6/in6.c
627
lt->ia6t_vltime + time_uptime < time_uptime)
sys/netinet6/in6.c
629
if (lt->ia6t_pltime != ND6_INFINITE_LIFETIME &&
sys/netinet6/in6.c
630
lt->ia6t_pltime + time_uptime < time_uptime)
sys/netinet6/in6.c
883
struct in6_addrlifetime *lt;
sys/netinet6/in6.c
973
lt = &ifra->ifra_lifetime;
sys/netinet6/in6.c
974
if (lt->ia6t_vltime != ND6_INFINITE_LIFETIME
sys/netinet6/in6.c
975
&& lt->ia6t_vltime + time_uptime < time_uptime) {
sys/netinet6/in6.c
978
if (lt->ia6t_vltime == 0) {
sys/netinet6/in6.c
987
if (lt->ia6t_pltime != ND6_INFINITE_LIFETIME
sys/netinet6/in6.c
988
&& lt->ia6t_pltime + time_uptime < time_uptime) {
usr.bin/at/parsetime.c
409
struct tm *lt;
usr.bin/at/parsetime.c
413
lt = localtime(&now);
usr.bin/at/parsetime.c
416
year += rounddown(lt->tm_year, 100);
usr.bin/at/parsetime.c
418
if (year == lt->tm_year - 1) year++;
usr.bin/at/parsetime.c
419
else if (year < lt->tm_year)
usr.bin/calendar/sun.c
319
double lt = depression_moment(tapprox, loc->latitude, loc->longitude,
usr.bin/calendar/sun.c
321
if (isnan(lt))
usr.bin/calendar/sun.c
324
return lt - loc->longitude / 360.0 + loc->zone;
usr.bin/calendar/sun.c
339
double lt = depression_moment(tapprox, loc->latitude, loc->longitude,
usr.bin/calendar/sun.c
341
if (isnan(lt))
usr.bin/calendar/sun.c
344
return lt - loc->longitude / 360.0 + loc->zone;
usr.bin/chpass/util.c
120
lt->tm_year = year - 1900;
usr.bin/chpass/util.c
121
lt->tm_mon = month - 1;
usr.bin/chpass/util.c
122
lt->tm_mday = day;
usr.bin/chpass/util.c
123
lt->tm_hour = 0;
usr.bin/chpass/util.c
124
lt->tm_min = 0;
usr.bin/chpass/util.c
125
lt->tm_sec = 0;
usr.bin/chpass/util.c
126
lt->tm_isdst = -1;
usr.bin/chpass/util.c
127
if ((tval = mktime(lt)) < 0)
usr.bin/chpass/util.c
76
static struct tm *lt;
usr.bin/chpass/util.c
86
if (!lt) {
usr.bin/chpass/util.c
89
lt = localtime(&tval);
usr.bin/rwall/rwall.c
127
struct tm *lt;
usr.bin/rwall/rwall.c
149
lt = localtime(&now);
usr.bin/rwall/rwall.c
163
lt->tm_hour, lt->tm_min);
usr.bin/systat/vmstat.c
411
uint64_t lt; \
usr.bin/systat/vmstat.c
412
lt=s.fld; \
usr.bin/systat/vmstat.c
415
s1.fld=lt; \
usr.bin/systat/vmstat.c
416
lt=fld; \
usr.bin/systat/vmstat.c
419
old_##fld=lt; \
usr.bin/unifdef/unifdef.c
1008
lt = LT_IF;
usr.bin/unifdef/unifdef.c
1012
lt = *valp ? LT_TRUE : LT_FALSE;
usr.bin/unifdef/unifdef.c
1019
lt = LT_IF;
usr.bin/unifdef/unifdef.c
1023
lt = LT_FALSE;
usr.bin/unifdef/unifdef.c
1028
lt = *valp ? LT_TRUE : LT_FALSE;
usr.bin/unifdef/unifdef.c
1039
return (lt);
usr.bin/unifdef/unifdef.c
1051
Linetype lt, rt;
usr.bin/unifdef/unifdef.c
1055
lt = ops->inner(ops+1, valp, &cp);
usr.bin/unifdef/unifdef.c
1056
if (lt == LT_ERROR)
usr.bin/unifdef/unifdef.c
1070
lt = op->fn(valp, lt, *valp, rt, val);
usr.bin/unifdef/unifdef.c
1075
debug("eval%ld lt = %s", prec(ops), linetype_name[lt]);
usr.bin/unifdef/unifdef.c
1076
return (lt);
usr.bin/unifdef/unifdef.c
84
#define linetype_if2elif(lt) ((Linetype)(lt - LT_IF + LT_ELIF))
usr.bin/unifdef/unifdef.c
85
#define linetype_2dodgy(lt) ((Linetype)(lt + LT_DODGY))
usr.bin/unifdef/unifdef.c
963
Linetype lt;
usr.bin/unifdef/unifdef.c
969
lt = eval_unary(ops, valp, &cp);
usr.bin/unifdef/unifdef.c
970
if (lt == LT_ERROR)
usr.bin/unifdef/unifdef.c
972
if (lt != LT_IF) {
usr.bin/unifdef/unifdef.c
974
lt = *valp ? LT_TRUE : LT_FALSE;
usr.bin/unifdef/unifdef.c
979
lt = eval_table(eval_ops, valp, &cp);
usr.bin/unifdef/unifdef.c
980
if (lt == LT_ERROR)
usr.bin/unifdef/unifdef.c
990
lt = *valp ? LT_TRUE : LT_FALSE;
usr.bin/wall/wall.c
168
struct tm *lt;
usr.bin/wall/wall.c
193
lt = localtime(&now);
usr.bin/wall/wall.c
209
lt->tm_hour, lt->tm_min, lt->tm_zone);
usr.sbin/makefs/msdos/msdosfs_vnops.c
116
struct tm lt = {0};
usr.sbin/makefs/msdos/msdosfs_vnops.c
119
localtime_r(&t1, &lt);
usr.sbin/makefs/msdos/msdosfs_vnops.c
121
unsigned long fat_time = ((lt.tm_year - 80) << 25) |
usr.sbin/makefs/msdos/msdosfs_vnops.c
122
((lt.tm_mon + 1) << 21) |
usr.sbin/makefs/msdos/msdosfs_vnops.c
123
(lt.tm_mday << 16) |
usr.sbin/makefs/msdos/msdosfs_vnops.c
124
(lt.tm_hour << 11) |
usr.sbin/makefs/msdos/msdosfs_vnops.c
125
(lt.tm_min << 5) |
usr.sbin/makefs/msdos/msdosfs_vnops.c
126
(lt.tm_sec >> 1);