Home
last modified time | relevance | path

Searched refs:lt (Results 1 – 25 of 422) sorted by relevance

12345678910>>...17

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cpp140 return lt; in CreateLogicalThread()
189 cb->lt->ctx, m, wlock, cb->lt->nlocked); in MutexBeforeLock()
191 DDLogicalThread *lt = cb->lt; in MutexBeforeLock() local
206 ThreadMutex *tm = &lt->locked[lt->nlocked++]; in MutexBeforeLock()
270 DDLogicalThread *lt = cb->lt; in MutexAfterLock() local
293 ThreadMutex *tm = &lt->locked[lt->nlocked++]; in MutexAfterLock()
301 cb->lt->ctx, m, wlock, cb->lt->nlocked); in MutexBeforeUnlock()
302 DDLogicalThread *lt = cb->lt; in MutexBeforeUnlock() local
316 lt->locked[i] = lt->locked[last]; in MutexBeforeUnlock()
326 DDLogicalThread *lt = cb->lt; in MutexDestroy() local
[all …]
H A Dsanitizer_deadlock_detector1.cpp80 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt)); in CreateLogicalThread() local
81 lt->ctx = ctx; in CreateLogicalThread()
82 lt->dd.clear(); in CreateLogicalThread()
84 return lt; in CreateLogicalThread()
89 InternalFree(lt); in DestroyLogicalThread()
105 DDLogicalThread *lt = cb->lt; in MutexBeforeLock() local
109 MutexEnsureID(lt, m); in MutexBeforeLock()
120 DDLogicalThread *lt = cb->lt; in ReportDeadlock() local
153 DDLogicalThread *lt = cb->lt; in MutexAfterLock() local
164 MutexEnsureID(lt, m); in MutexAfterLock()
[all …]
/freebsd-14.2/bin/date/
H A Ddate.c103 struct tm *lt; in main() local
202 if (lt == NULL) in main()
265 struct tm *lt; in setthetime() local
270 if (lt == NULL) in setthetime()
300 if (lt->tm_sec > 61) in setthetime()
303 lt->tm_sec = 0; in setthetime()
325 if (lt->tm_mon > 12) in setthetime()
331 if (lt->tm_mday > 31) in setthetime()
341 if (lt->tm_min > 59) in setthetime()
350 lt->tm_yday = -1; in setthetime()
[all …]
/freebsd-14.2/contrib/sendmail/src/
H A Darpadate.c63 register struct tm *lt; variable
126 lt = localtime(&t);
128 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
131 if (lt->tm_year < gmt.tm_year)
133 else if (lt->tm_year > gmt.tm_year)
135 else if (lt->tm_yday < gmt.tm_yday)
137 else if (lt->tm_yday > gmt.tm_yday)
151 tz = lt->tm_name;
154 tz = lt->tm_zone;
160 if (lt->tm_isdst > 0)
[all …]
/freebsd-14.2/lib/libutil/
H A Dlogin_ok.c93 struct login_time *lt = NULL; in login_timelist() local
101 lt = *ltptr; in login_timelist()
104 *ltptr = lt; in login_timelist()
106 if (lt != NULL) { in login_timelist()
110 lt[i] = parse_lt(tl[i]); in login_timelist()
111 lt[i].lt_dow = LTM_NONE; in login_timelist()
114 return lt; in login_timelist()
228 struct login_time *lt; in auth_timeok() local
230 lt = login_timelist(lc, "times.allow", &ltimesno, &ltimes); in auth_timeok()
231 if (lt != NULL && in_ltms(lt, tptr, NULL) == -1) in auth_timeok()
[all …]
/freebsd-14.2/bin/pax/
H A Dsel_subs.c533 struct tm *lt; in str_sec() local
552 lt = localtime(tval); in str_sec()
558 if (lt->tm_sec > 61) in str_sec()
562 lt->tm_sec = 0; in str_sec()
580 lt->tm_mon = ATOI2(p); in str_sec()
581 if ((lt->tm_mon > 12) || !lt->tm_mon) in str_sec()
586 lt->tm_mday = ATOI2(p); in str_sec()
587 if ((lt->tm_mday > 31) || !lt->tm_mday) in str_sec()
592 if (lt->tm_hour > 23) in str_sec()
596 lt->tm_min = ATOI2(p); in str_sec()
[all …]
/freebsd-14.2/usr.bin/chpass/
H A Dutil.c85 static struct tm *lt; in atot() local
95 if (!lt) { in atot()
98 lt = localtime(&tval); in atot()
129 lt->tm_year = year - 1900; in atot()
130 lt->tm_mon = month - 1; in atot()
131 lt->tm_mday = day; in atot()
132 lt->tm_hour = 0; in atot()
133 lt->tm_min = 0; in atot()
134 lt->tm_sec = 0; in atot()
135 lt->tm_isdst = -1; in atot()
[all …]
/freebsd-14.2/sbin/shutdown/
H A Dshutdown.c442 struct tm *lt; in getoffset() local
500 this_year = lt->tm_year; in getoffset()
508 lt->tm_year += 100; in getoffset()
513 lt->tm_mon = ATOI2(timearg); in getoffset()
514 if (--lt->tm_mon < 0 || lt->tm_mon > 11) in getoffset()
520 if (lt->tm_mday < 1 || lt->tm_mday > 31) in getoffset()
525 if (lt->tm_hour < 0 || lt->tm_hour > 23) in getoffset()
527 lt->tm_min = ATOI2(timearg); in getoffset()
528 if (lt->tm_min < 0 || lt->tm_min > 59) in getoffset()
530 lt->tm_sec = 0; in getoffset()
[all …]
/freebsd-14.2/contrib/llvm-project/lld/Common/
H A DDWARF.cpp25 const DWARFDebugLine::LineTable *lt = nullptr; in DWARFCache() local
27 lt = *expectedLT; in DWARFCache()
30 if (!lt) in DWARFCache()
32 lineTables.push_back(lt); in DWARFCache()
49 if (!lt->hasFileAtIndex(file)) in DWARFCache()
65 variableLoc.insert({name, {lt, file, line}}); in DWARFCache()
81 if (!it->second.lt->getFileNameByIndex( in getVariableLoc()
94 for (const llvm::DWARFDebugLine::LineTable *lt : lineTables) { in getDILineInfo() local
95 if (lt->getFileLineInfoForAddress( in getDILineInfo()
/freebsd-14.2/contrib/sendmail/libsm/
H A Dt-types.c25 LONGLONG_T volatile lt; variable
64 lt = LLONG_MIN - 1;
65 SM_TEST(lt > ll);
76 lt = ll + 1;
77 SM_TEST(lt < ll);
/freebsd-14.2/usr.bin/tip/libacu/
H A Ddn11.c56 int lt, nw; in dn_dialer() local
85 nw = write(dn, num, lt = strlen(num)); in dn_dialer()
86 exit(nw != lt); in dn_dialer()
106 while ((nw = wait(&lt)) != child && nw != -1) in dn_dialer()
110 if (lt != 0) { in dn_dialer()
/freebsd-14.2/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_cli.sgml74 with "CTRL-REQ-&lt;type&gt;-&lt;id&gt;:&lt;text&gt;"
75 prefix. &lt;type&gt; is IDENTITY, PASSWORD, or OTP
76 (one-time-password). &lt;id&gt; is a unique identifier for the
77 current network. &lt;text&gt; is description of the request. In
227 <term>level &lt;debug level&gt;</term>
280 <term>preauthenticate &lt;BSSID&gt;</term>
287 <term>identity &lt;network id&gt; &lt;identity&gt;</term>
294 <term>password &lt;network id&gt; &lt;password&gt;</term>
301 <term>pin &lt;network id&gt; &lt;pin&gt;</term>
308 <term>otp &lt;network id&gt; &lt;password&gt;</term>
[all …]
/freebsd-14.2/contrib/unifdef/
H A Dunifdef.c84 #define linetype_if2elif(lt) ((Linetype)(lt - LT_IF + LT_ELIF)) argument
85 #define linetype_2dodgy(lt) ((Linetype)(lt + LT_DODGY)) argument
1032 Linetype lt; in eval_unary() local
1041 if (lt != LT_IF) { in eval_unary()
1097 lt = LT_IF; in eval_unary()
1108 lt = LT_IF; in eval_unary()
1112 lt = LT_FALSE; in eval_unary()
1128 return (lt); in eval_unary()
1140 Linetype lt, rt; in eval_table() local
1166 lt = op->fn(valp, lt, *valp, rt, val); in eval_table()
[all …]
/freebsd-14.2/contrib/ntp/
H A Dbootstrap76 lt=
81 lt="$lt $fb"
84 touch $lt
85 echo "Touching <$lt>"
/freebsd-14.2/contrib/ldns/
H A Derror.c193 ldns_lookup_table *lt; in ldns_get_errorstr_by_id() local
195 lt = ldns_lookup_by_id(ldns_error_str, err); in ldns_get_errorstr_by_id()
197 if (lt) { in ldns_get_errorstr_by_id()
198 return lt->name; in ldns_get_errorstr_by_id()
/freebsd-14.2/lib/libc/string/
H A Dtimingsafe_memcmp.c32 int lt = (p1[i] - p2[i]) >> CHAR_BIT; in __timingsafe_memcmp() local
38 int cmp = lt - gt; in __timingsafe_memcmp()
44 done |= lt | gt; in __timingsafe_memcmp()
/freebsd-14.2/contrib/dialog/po/
H A Dlt.po3 # Gintautas Miliauskas <gintas@akl.lt>, 2008.
4 # Rimas Kudelis <rq@akl.lt>, 2013.
11 "Last-Translator: Rimas Kudelis <rq@akl.lt>\n"
12 "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
13 "Language: lt\n"
/freebsd-14.2/usr.bin/rwall/
H A Drwall.c127 struct tm *lt; in makemsg() local
149 lt = localtime(&now); in makemsg()
164 lt->tm_hour, lt->tm_min); in makemsg()
/freebsd-14.2/crypto/openssl/doc/man3/
H A DBN_set_bit.pod27 BN_set_bit() sets bit B<n> in B<a> to 1 (C<a|=(1E<lt>E<lt>n)>). The
30 BN_clear_bit() sets bit B<n> in B<a> to 0 (C<a&=~(1E<lt>E<lt>n)>). An
36 (C<a&=~((~0)E<lt>E<lt>n)>). An error occurs if B<n> is negative. An error is
/freebsd-14.2/contrib/libfido2/.github/ISSUE_TEMPLATE/
H A Dbug_report.md55 $ fido2-token -I &lt;device&gt;
74 $ &lt;command1&gt;
75 $ &lt;command2&gt;
77 $ &lt;commandn&gt;
/freebsd-14.2/contrib/unbound/sldns/
H A Dwire2str.c945 if (lt && lt->name) { in sldns_wire2str_opcode_print()
954 if (lt && lt->name) { in sldns_wire2str_rcode_print()
964 if (lt && lt->name) { in sldns_wire2str_class_print()
984 if (lt && lt->name) { in sldns_wire2str_edns_option_code_print()
1655 sldns_lookup_table *lt; in sldns_wire2str_cert_alg_scan() local
1660 if(lt && lt->name) in sldns_wire2str_cert_alg_scan()
2058 sldns_lookup_table *lt; in sldns_wire2str_tsigerror_scan() local
2063 if(lt && lt->name) in sldns_wire2str_tsigerror_scan()
2158 if(lt && lt->name) in sldns_wire2str_edns_dau_print()
2173 if(lt && lt->name) in sldns_wire2str_edns_dhu_print()
[all …]
/freebsd-14.2/contrib/sendmail/libsmutil/
H A Dt-lockfile.c251 int lt; local
275 lt = LOCK_SH;
277 lt = LOCK_EX;
282 locked = lockfile(fd, filename, "[client]", lt|LOCK_NB);
292 locked = lockfile(fd, filename, "[client]", lt);
/freebsd-14.2/usr.bin/wall/
H A Dwall.c190 struct tm *lt; in makemsg() local
216 lt = localtime(&now); in makemsg()
232 lt->tm_hour, lt->tm_min, lt->tm_zone); in makemsg()
/freebsd-14.2/usr.sbin/makefs/msdos/
H A Dmsdosfs_vnops.c114 struct tm lt = {0}; in unix2fattime() local
117 localtime_r(&t1, &lt); in unix2fattime()
119 unsigned long fat_time = ((lt.tm_year - 80) << 25) | in unix2fattime()
120 ((lt.tm_mon + 1) << 21) | in unix2fattime()
121 (lt.tm_mday << 16) | in unix2fattime()
122 (lt.tm_hour << 11) | in unix2fattime()
123 (lt.tm_min << 5) | in unix2fattime()
124 (lt.tm_sec >> 1); in unix2fattime()
/freebsd-14.2/contrib/libarchive/libarchive/
H A Darchive_read_support_format_lha.c126 } lt, pt; member
1918 ds->lt.len_bits = 9; in lzh_decode_init()
2265 ds->lt.len_avail = lzh_br_bits(br, ds->lt.len_bits); in lzh_read_blocks()
2272 ds->lt.len_bits)) { in lzh_read_blocks()
2284 } else if (ds->lt.len_avail > ds->lt.len_size) in lzh_read_blocks()
2287 memset(ds->lt.freq, 0, sizeof(ds->lt.freq)); in lzh_read_blocks()
2310 ds->lt.freq[c]++; in lzh_read_blocks()
2311 ds->lt.bitlen[i++] = c; in lzh_read_blocks()
2314 ds->lt.bitlen[i++] = 0; in lzh_read_blocks()
2336 if (i > ds->lt.len_avail || in lzh_read_blocks()
[all …]

12345678910>>...17