/freebsd/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 …]
|
/freebsd/bin/date/ |
H A D | date.c | 90 struct tm *lt; in main() local 188 lt = localtime(&ts.tv_sec); in main() 189 if (lt == NULL) in main() 191 badv = vary_apply(v, lt); in main() 201 printisodate(lt, ts.tv_nsec); in main() 211 (void)strftime_ns(buf, sizeof(buf), format, lt, ts.tv_nsec); in main() 225 printisodate(struct tm *lt, long nsec) in printisodate() argument 234 (void)strftime_ns(buf, sizeof(buf), fmtbuf, lt, nsec); in printisodate() 237 (void)strftime_ns(tzbuf, sizeof(tzbuf), "%z", lt, nsec); in printisodate() 252 struct tm *lt; in setthetime() local [all …]
|
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/sbin/shutdown/ |
H A D | shutdown.c | 439 struct tm *lt; in getoffset() local 492 lt = localtime(&now); /* current time val */ in getoffset() 497 this_year = lt->tm_year; in getoffset() 498 lt->tm_year = ATOI2(timearg); in getoffset() 504 if (lt->tm_year < (this_year % 100) - 1) in getoffset() 505 lt->tm_year += 100; in getoffset() 507 lt->tm_year += (this_year - (this_year % 100)); in getoffset() 510 lt->tm_mon = ATOI2(timearg); in getoffset() 511 if (--lt->tm_mon < 0 || lt->tm_mon > 11) in getoffset() 516 lt->tm_mday = ATOI2(timearg); in getoffset() [all …]
|
/freebsd/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()
|
/freebsd/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);
|
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/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()
|
/freebsd/contrib/ntp/ |
H A D | bootstrap | 76 lt= 81 lt="$lt $fb" 84 touch $lt 85 echo "Touching <$lt>"
|
/freebsd/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"
|
/freebsd/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()
|
H A D | host2str.c | 199 ldns_lookup_table *lt = ldns_lookup_by_id(ldns_opcodes, opcode); in ldns_pkt_opcode2buffer_str() local 200 if (lt && lt->name) { in ldns_pkt_opcode2buffer_str() 201 ldns_buffer_printf(output, "%s", lt->name); in ldns_pkt_opcode2buffer_str() 211 ldns_lookup_table *lt = ldns_lookup_by_id(ldns_rcodes, rcode); in ldns_pkt_rcode2buffer_str() local 212 if (lt && lt->name) { in ldns_pkt_rcode2buffer_str() 213 ldns_buffer_printf(output, "%s", lt->name); in ldns_pkt_rcode2buffer_str() 224 ldns_lookup_table *lt = ldns_lookup_by_id(ldns_algorithms, in ldns_algorithm2buffer_str() local 226 if (lt && lt->name) { in ldns_algorithm2buffer_str() 227 ldns_buffer_printf(output, "%s", lt->name); in ldns_algorithm2buffer_str() 238 ldns_lookup_table *lt = ldns_lookup_by_id(ldns_cert_algorithms, in ldns_cert_algorithm2buffer_str() local [all …]
|
/freebsd/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()
|
/freebsd/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()
|
/freebsd/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
|
/freebsd/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 …]
|
/freebsd/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()
|
/freebsd/contrib/sendmail/libsmutil/ |
H A D | t-lockfile.c | 251 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/usr.sbin/makefs/msdos/ |
H A D | msdosfs_vnops.c | 113 struct tm lt = {0}; in unix2fattime() local 116 localtime_r(&t1, <); in unix2fattime() 118 unsigned long fat_time = ((lt.tm_year - 80) << 25) | in unix2fattime() 119 ((lt.tm_mon + 1) << 21) | in unix2fattime() 120 (lt.tm_mday << 16) | in unix2fattime() 121 (lt.tm_hour << 11) | in unix2fattime() 122 (lt.tm_min << 5) | in unix2fattime() 123 (lt.tm_sec >> 1); in unix2fattime()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_support_format_lha.c | 126 } lt, pt; member 1915 if (lzh_huffman_init(&(ds->lt), LT_BITLEN_SIZE, 16) in lzh_decode_init() 1918 ds->lt.len_bits = 9; in lzh_decode_init() 1937 lzh_huffman_free(&(strm->ds->lt)); in lzh_decode_free() 2259 if (!lzh_br_read_ahead(strm, br, ds->lt.len_bits)) { in lzh_read_blocks() 2265 ds->lt.len_avail = lzh_br_bits(br, ds->lt.len_bits); in lzh_read_blocks() 2266 lzh_br_consume(br, ds->lt.len_bits); in lzh_read_blocks() 2269 if (ds->lt.len_avail == 0) { in lzh_read_blocks() 2272 ds->lt.len_bits)) { in lzh_read_blocks() 2278 if (!lzh_make_fake_table(&(ds->lt), in lzh_read_blocks() [all …]
|