Home
last modified time | relevance | path

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

12345678910>>...18

/freebsd/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/bin/date/
H A Ddate.c90 struct tm *lt; in main() local
189 if (lt == NULL) in main()
252 struct tm *lt; in setthetime() local
257 if (lt == NULL) in setthetime()
287 if (lt->tm_sec > 61) in setthetime()
290 lt->tm_sec = 0; in setthetime()
312 if (lt->tm_mon > 12) in setthetime()
318 if (lt->tm_mday > 31) in setthetime()
328 if (lt->tm_min > 59) in setthetime()
337 lt->tm_yday = -1; in setthetime()
[all …]
/freebsd/contrib/libdiff/test/
H A Dtest126.right.txt100 struct tm *lt;
110 lt = tm;
111 if (lt == NULL)
112 lt = &ltm;
113 memset(lt, 0, sizeof(*lt));
146 lt->tm_year += 100;
149 if (lt->tm_mon < 0 || lt->tm_mon > 11)
152 if (lt->tm_mday < 1 || lt->tm_mday > 31)
155 if (lt->tm_hour < 0 || lt->tm_hour > 23)
158 if (lt->tm_min < 0 || lt->tm_min > 59)
[all …]
H A Dtest126.left.txt100 struct tm *lt;
110 lt = tm;
111 if (lt == NULL) {
113 lt = &ltm;
146 if (lt->tm_year < 50)
147 lt->tm_year += 100;
150 if (lt->tm_mon < 0 || lt->tm_mon > 11)
153 if (lt->tm_mday < 1 || lt->tm_mday > 31)
156 if (lt->tm_hour < 0 || lt->tm_hour > 23)
159 if (lt->tm_min < 0 || lt->tm_min > 59)
[all …]
H A Dexpect126.diff12 lt = tm;
13 - if (lt == NULL) {
15 + if (lt == NULL)
16 lt = &ltm;
18 + memset(lt, 0, sizeof(*lt));
/freebsd/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/lib/libutil/
H A Dlogin_ok.c92 struct login_time *lt = NULL; in login_timelist() local
100 lt = *ltptr; in login_timelist()
103 *ltptr = lt; in login_timelist()
105 if (lt != NULL) { in login_timelist()
109 lt[i] = parse_lt(tl[i]); in login_timelist()
110 lt[i].lt_dow = LTM_NONE; in login_timelist()
113 return lt; in login_timelist()
227 struct login_time *lt; in auth_timeok() local
229 lt = login_timelist(lc, "times.allow", &ltimesno, &ltimes); in auth_timeok()
230 if (lt != NULL && in_ltms(lt, tptr, NULL) == -1) in auth_timeok()
[all …]
/freebsd/bin/pax/
H A Dsel_subs.c527 struct tm *lt; in str_sec() local
546 lt = localtime(tval); in str_sec()
552 if (lt->tm_sec > 61) in str_sec()
556 lt->tm_sec = 0; in str_sec()
574 lt->tm_mon = ATOI2(p); in str_sec()
575 if ((lt->tm_mon > 12) || !lt->tm_mon) in str_sec()
580 lt->tm_mday = ATOI2(p); in str_sec()
581 if ((lt->tm_mday > 31) || !lt->tm_mday) in str_sec()
586 if (lt->tm_hour > 23) in str_sec()
590 lt->tm_min = ATOI2(p); in str_sec()
[all …]
/freebsd/usr.bin/chpass/
H A Dutil.c79 static struct tm *lt; in atot() local
89 if (!lt) { in atot()
92 lt = localtime(&tval); in atot()
123 lt->tm_year = year - 1900; in atot()
124 lt->tm_mon = month - 1; in atot()
125 lt->tm_mday = day; in atot()
126 lt->tm_hour = 0; in atot()
127 lt->tm_min = 0; in atot()
128 lt->tm_sec = 0; in atot()
129 lt->tm_isdst = -1; in atot()
[all …]
/freebsd/sbin/shutdown/
H A Dshutdown.c430 struct tm *lt; in getoffset() local
488 this_year = lt->tm_year; in getoffset()
496 lt->tm_year += 100; in getoffset()
501 lt->tm_mon = ATOI2(timearg); in getoffset()
502 if (--lt->tm_mon < 0 || lt->tm_mon > 11) in getoffset()
508 if (lt->tm_mday < 1 || lt->tm_mday > 31) in getoffset()
513 if (lt->tm_hour < 0 || lt->tm_hour > 23) in getoffset()
515 lt->tm_min = ATOI2(timearg); in getoffset()
516 if (lt->tm_min < 0 || lt->tm_min > 59) in getoffset()
518 lt->tm_sec = 0; in getoffset()
[all …]
/freebsd/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/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/usr.bin/tip/libacu/
H A Ddn11.c48 int lt, nw; in dn_dialer() local
77 nw = write(dn, num, lt = strlen(num)); in dn_dialer()
78 exit(nw != lt); in dn_dialer()
98 while ((nw = wait(&lt)) != child && nw != -1) in dn_dialer()
102 if (lt != 0) { in dn_dialer()
/freebsd/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/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/contrib/ntp/
H A Dbootstrap76 lt=
81 lt="$lt $fb"
84 touch $lt
85 echo "Touching <$lt>"
/freebsd/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/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/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/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<a> already is
/freebsd/usr.bin/rwall/
H A Drwall.c116 struct tm *lt; in makemsg() local
138 lt = localtime(&now); in makemsg()
153 lt->tm_hour, lt->tm_min); in makemsg()
/freebsd/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/usr.bin/wall/
H A Dwall.c179 struct tm *lt; in makemsg() local
205 lt = localtime(&now); in makemsg()
221 lt->tm_hour, lt->tm_min, lt->tm_zone); in makemsg()
/freebsd/contrib/unbound/sldns/
H A Dwire2str.c940 if (lt && lt->name) { in sldns_wire2str_opcode_print()
949 if (lt && lt->name) { in sldns_wire2str_rcode_print()
959 if (lt && lt->name) { in sldns_wire2str_class_print()
979 if (lt && lt->name) { in sldns_wire2str_edns_option_code_print()
1649 sldns_lookup_table *lt; in sldns_wire2str_cert_alg_scan() local
1654 if(lt && lt->name) in sldns_wire2str_cert_alg_scan()
2052 sldns_lookup_table *lt; in sldns_wire2str_tsigerror_scan() local
2057 if(lt && lt->name) in sldns_wire2str_tsigerror_scan()
2152 if(lt && lt->name) in sldns_wire2str_edns_dau_print()
2167 if(lt && lt->name) in sldns_wire2str_edns_dhu_print()
[all …]

12345678910>>...18