| /src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_deadlock_detector2.cpp | 90 void DestroyLogicalThread(DDLogicalThread *lt); 101 void CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, DDMutex *mtx); 102 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath); 136 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc( in CreateLogicalThread() local 138 lt->ctx = ctx; in CreateLogicalThread() 139 lt->nlocked = 0; in CreateLogicalThread() 140 return lt; in CreateLogicalThread() 143 void DD::DestroyLogicalThread(DDLogicalThread *lt) { in DestroyLogicalThread() argument 144 lt->~DDLogicalThread(); in DestroyLogicalThread() 145 InternalFree(lt); in DestroyLogicalThread() [all …]
|
| H A D | sanitizer_deadlock_detector1.cpp | 46 void DestroyLogicalThread(DDLogicalThread *lt) override; 57 void MutexEnsureID(DDLogicalThread *lt, DDMutex *m); 80 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt)); in CreateLogicalThread() local 81 lt->ctx = ctx; in CreateLogicalThread() 82 lt->dd.clear(); in CreateLogicalThread() 83 lt->report_pending = false; in CreateLogicalThread() 84 return lt; in CreateLogicalThread() 87 void DD::DestroyLogicalThread(DDLogicalThread *lt) { in DestroyLogicalThread() argument 88 lt->~DDLogicalThread(); in DestroyLogicalThread() 89 InternalFree(lt); in DestroyLogicalThread() [all …]
|
| /src/bin/date/ |
| H A D | date.c | 90 struct tm *lt; in main() local 193 lt = localtime(&ts.tv_sec); in main() 194 if (lt == NULL) in main() 196 badv = vary_apply(v, lt); in main() 206 printisodate(lt, ts.tv_nsec, tres.tv_nsec); in main() 216 (void)strftime_ns(buf, sizeof(buf), format, lt, in main() 231 printisodate(struct tm *lt, long nsec, long res) in printisodate() argument 240 (void)strftime_ns(buf, sizeof(buf), fmtbuf, lt, nsec, res); in printisodate() 243 (void)strftime_ns(tzbuf, sizeof(tzbuf), "%z", lt, nsec, res); in printisodate() 258 struct tm *lt; in setthetime() local [all …]
|
| /src/contrib/libdiff/test/ |
| H A D | test126.right.txt | 100 struct tm *lt; 110 lt = tm; 111 if (lt == NULL) 112 lt = <m; 113 memset(lt, 0, sizeof(*lt)); 134 lt->tm_year = (ATOI2(p) * 100) - 1900; /* cc */ 143 lt->tm_year += ATOI2(p); /* yy */ 145 if (lt->tm_year < 50) 146 lt->tm_year += 100; 148 lt->tm_mon = ATOI2(p) - 1; /* mm */ [all …]
|
| H A D | test126.left.txt | 100 struct tm *lt; 110 lt = tm; 111 if (lt == NULL) { 113 lt = <m; 135 lt->tm_year = (ATOI2(p) * 100) - 1900; /* cc */ 144 lt->tm_year += ATOI2(p); /* yy */ 146 if (lt->tm_year < 50) 147 lt->tm_year += 100; 149 lt->tm_mon = ATOI2(p) - 1; /* mm */ 150 if (lt->tm_mon < 0 || lt->tm_mon > 11) [all …]
|
| H A D | expect126.diff | 12 lt = tm; 13 - if (lt == NULL) { 15 + if (lt == NULL) 16 lt = <m; 18 + memset(lt, 0, sizeof(*lt));
|
| /src/contrib/sendmail/src/ |
| H A D | arpadate.c | 63 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 …]
|
| /src/lib/libutil/ |
| H A D | login_ok.c | 92 struct login_time *lt = NULL; in login_timelist() local 100 lt = *ltptr; in login_timelist() 101 else if ((lt = realloc(*ltptr, j * sizeof(struct login_time))) != NULL) { 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", <imesno, <imes); in auth_timeok() [all …]
|
| /src/bin/pax/ |
| H A D | sel_subs.c | 527 struct tm *lt; in str_sec() local 546 lt = localtime(tval); in str_sec() 551 lt->tm_sec = ATOI2(dot); in str_sec() 552 if (lt->tm_sec > 61) in str_sec() 556 lt->tm_sec = 0; in str_sec() 561 lt->tm_year = (bigyear * 100) - 1900; in str_sec() 566 lt->tm_year += ATOI2(p); in str_sec() 568 lt->tm_year = ATOI2(p); in str_sec() 569 if (lt->tm_year < 69) /* hack for 2000 ;-} */ in str_sec() 570 lt->tm_year += (2000 - 1900); in str_sec() [all …]
|
| /src/usr.bin/chpass/ |
| H A D | util.c | 79 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 …]
|
| /src/sbin/shutdown/ |
| H A D | shutdown.c | 451 struct tm *lt; in getoffset() local 504 lt = localtime(&now); /* current time val */ in getoffset() 509 this_year = lt->tm_year; in getoffset() 510 lt->tm_year = ATOI2(timearg); in getoffset() 516 if (lt->tm_year < (this_year % 100) - 1) in getoffset() 517 lt->tm_year += 100; in getoffset() 519 lt->tm_year += (this_year - (this_year % 100)); in getoffset() 522 lt->tm_mon = ATOI2(timearg); in getoffset() 523 if (--lt->tm_mon < 0 || lt->tm_mon > 11) in getoffset() 528 lt->tm_mday = ATOI2(timearg); in getoffset() [all …]
|
| /src/contrib/llvm-project/lld/Common/ |
| H A D | DWARF.cpp | 25 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()
|
| /src/contrib/sendmail/libsm/ |
| H A D | t-types.c | 25 LONGLONG_T volatile lt; variable 64 lt = LLONG_MIN - 1; 65 SM_TEST(lt > ll); 76 lt = ll + 1; 77 SM_TEST(lt < ll);
|
| /src/contrib/wpa/wpa_supplicant/doc/docbook/ |
| H A D | wpa_cli.sgml | 74 with "CTRL-REQ-<type>-<id>:<text>" 75 prefix. <type> is IDENTITY, PASSWORD, or OTP 76 (one-time-password). <id> is a unique identifier for the 77 current network. <text> is description of the request. In 83 <emphasis>otp</emphasis> commands. <id> needs to be copied from 227 <term>level <debug level></term> 280 <term>preauthenticate <BSSID></term> 287 <term>identity <network id> <identity></term> 294 <term>password <network id> <password></term> 301 <term>pin <network id> <pin></term> [all …]
|
| /src/usr.bin/tip/libacu/ |
| H A D | dn11.c | 48 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(<)) != child && nw != -1) in dn_dialer() 102 if (lt != 0) { in dn_dialer()
|
| /src/contrib/unifdef/ |
| H A D | unifdef.c | 84 #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 1038 lt = eval_unary(ops, valp, &cp); in eval_unary() 1039 if (lt == LT_ERROR) in eval_unary() 1041 if (lt != LT_IF) { in eval_unary() 1043 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary() 1048 lt = eval_unary(ops, valp, &cp); in eval_unary() 1049 if (lt == LT_ERROR) in eval_unary() 1051 if (lt != LT_IF) { in eval_unary() [all …]
|
| /src/contrib/ntp/ |
| H A D | bootstrap | 76 lt= 81 lt="$lt $fb" 84 touch $lt 85 echo "Touching <$lt>"
|
| /src/contrib/dialog/po/ |
| H A D | lt.po | 3 # 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"
|
| /src/contrib/ldns/ |
| H A D | error.c | 193 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()
|
| /src/lib/libc/string/ |
| H A D | timingsafe_memcmp.c | 32 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()
|
| /src/usr.bin/rwall/ |
| H A D | rwall.c | 116 struct tm *lt; in makemsg() local 138 lt = localtime(&now); in makemsg() 153 lt->tm_hour, lt->tm_min); in makemsg()
|
| /src/crypto/openssl/doc/man3/ |
| H A D | BN_set_bit.pod | 27 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
|
| /src/contrib/libfido2/.github/ISSUE_TEMPLATE/ |
| H A D | bug_report.md | 55 $ fido2-token -I <device> 74 $ <command1> 75 $ <command2> 77 $ <commandn>
|
| /src/contrib/unbound/sldns/ |
| H A D | wire2str.c | 944 sldns_lookup_table *lt = sldns_lookup_by_id(sldns_opcodes, opcode); in sldns_wire2str_opcode_print() local 945 if (lt && lt->name) { in sldns_wire2str_opcode_print() 946 return sldns_str_print(s, slen, "%s", lt->name); in sldns_wire2str_opcode_print() 953 sldns_lookup_table *lt = sldns_lookup_by_id(sldns_rcodes, rcode); in sldns_wire2str_rcode_print() local 954 if (lt && lt->name) { in sldns_wire2str_rcode_print() 955 return sldns_str_print(s, slen, "%s", lt->name); in sldns_wire2str_rcode_print() 962 sldns_lookup_table *lt = sldns_lookup_by_id(sldns_rr_classes, in sldns_wire2str_class_print() local 964 if (lt && lt->name) { in sldns_wire2str_class_print() 965 return sldns_str_print(s, slen, "%s", lt->name); in sldns_wire2str_class_print() 982 sldns_lookup_table *lt = sldns_lookup_by_id(sldns_edns_options, in sldns_wire2str_edns_option_code_print() local [all …]
|
| /src/usr.bin/wall/ |
| H A D | wall.c | 179 struct tm *lt; in makemsg() local 205 lt = localtime(&now); in makemsg() 221 lt->tm_hour, lt->tm_min, lt->tm_zone); in makemsg()
|