| /NextBSD/contrib/compiler-rt/lib/sanitizer_common/ |
| HD | sanitizer_deadlock_detector2.cc | 91 void DestroyLogicalThread(DDLogicalThread *lt); 102 void CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, DDMutex *mtx); 103 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath); 141 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc( in CreateLogicalThread() local 143 lt->ctx = ctx; in CreateLogicalThread() 144 lt->nlocked = 0; in CreateLogicalThread() 145 return lt; in CreateLogicalThread() 148 void DD::DestroyLogicalThread(DDLogicalThread *lt) { in DestroyLogicalThread() argument 149 lt->~DDLogicalThread(); in DestroyLogicalThread() 150 InternalFree(lt); in DestroyLogicalThread() [all …]
|
| HD | sanitizer_deadlock_detector1.cc | 47 void DestroyLogicalThread(DDLogicalThread *lt) override; 58 void MutexEnsureID(DDLogicalThread *lt, DDMutex *m); 81 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt)); in CreateLogicalThread() local 82 lt->ctx = ctx; in CreateLogicalThread() 83 lt->dd.clear(); in CreateLogicalThread() 84 lt->report_pending = false; in CreateLogicalThread() 85 return lt; in CreateLogicalThread() 88 void DD::DestroyLogicalThread(DDLogicalThread *lt) { in DestroyLogicalThread() argument 89 lt->~DDLogicalThread(); in DestroyLogicalThread() 90 InternalFree(lt); in DestroyLogicalThread() [all …]
|
| /NextBSD/contrib/groff/src/preproc/pic/ |
| HD | common.cpp | 27 const line_type <) in dashed_circle() argument 29 assert(lt.type == line_type::dashed); in dashed_circle() 30 line_type slt = lt; in dashed_circle() 32 double dash_angle = lt.dash_width/rad; in dashed_circle() 55 solid_arc(cent, rad, start_angle, start_angle + dash_angle, lt); in dashed_circle() 62 const line_type <) in dotted_circle() argument 64 assert(lt.type == line_type::dotted); in dotted_circle() 65 double gap_angle = lt.dash_width/rad; in dotted_circle() 78 dot(cent + position(cos(ang), sin(ang))*rad, lt); in dotted_circle() 85 const distance &dim, const line_type <) in ellipse_arc() argument [all …]
|
| HD | tex.cpp | 60 double end_angle, const line_type <); 180 const line_type <) in line() argument 182 set_pen_size(lt.thickness); in line() 187 switch(lt.type) { in line() 195 printf("dt %.3f", lt.dash_width/scale); in line() 198 printf("da %.3f", lt.dash_width/scale); in line() 205 const line_type <, double fill) in polygon() argument 212 line(v[n-1], v, n, lt); in polygon() 216 const line_type <) in spline() argument 218 if (lt.type == line_type::invisible) in spline() [all …]
|
| HD | troff.cpp | 66 const position &end, const line_type <) in arc() argument 68 switch (lt.type) { in arc() 70 line_thickness(lt.thickness); in arc() 76 dashed_arc(start, cent, end, lt); in arc() 79 dotted_arc(start, cent, end, lt); in arc() 85 const line_type <) in line() argument 88 line_thickness(lt.thickness); in line() 90 switch (lt.type) { in line() 98 int ndots = int(dist/lt.dash_width + .5); in line() 100 dot(pos, lt); in line() [all …]
|
| HD | common.h | 25 const line_type <, double dash_width, double gap_width, 28 double start_angle, double end_angle, const line_type <, 31 const line_type <, double gap_width, double *offsetp); 33 double start_angle, double end_angle, const line_type <, 49 double end_angle, const line_type <);
|
| HD | object.cpp | 215 const arrow_head_type &aht, const line_type <, in draw_arrow() argument 227 line_type slt = lt; in draw_arrow() 551 line_type lt; member in graphic_object 577 lt.type = line_type::dotted; in set_dotted() 578 lt.dash_width = wid; in set_dotted() 583 lt.type = line_type::dashed; in set_dashed() 584 lt.dash_width = wid; in set_dashed() 589 lt.thickness = th; in set_thickness() 613 lt.type = line_type::invisible; in set_invisible() 771 if (lt.type == line_type::invisible && fill < 0.0 && color_fill == 0) in print() [all …]
|
| /NextBSD/bin/date/ |
| HD | date.c | 88 struct tm lt; in main() local 177 lt = *localtime(&tval); in main() 178 badv = vary_apply(v, <); in main() 194 (void)strftime(buf, sizeof(buf), format, <); in main() 207 struct tm *lt; in setthetime() local 212 lt = localtime(&tval); in setthetime() 213 lt->tm_isdst = -1; /* divine correct DST */ in setthetime() 216 t = strptime(p, fmt, lt); in setthetime() 240 lt->tm_sec = ATOI2(dot); in setthetime() 241 if (lt->tm_sec > 61) in setthetime() [all …]
|
| /NextBSD/lib/libutil/ |
| HD | login_ok.c | 95 struct login_time *lt = NULL; in login_timelist() local 103 lt = *ltptr; in login_timelist() 104 else if ((lt = realloc(*ltptr, j * sizeof(struct login_time))) != NULL) { in login_timelist() 106 *ltptr = lt; in login_timelist() 108 if (lt != NULL) { in login_timelist() 112 lt[i] = parse_lt(tl[i]); in login_timelist() 113 lt[i].lt_dow = LTM_NONE; in login_timelist() 116 return lt; in login_timelist() 230 struct login_time *lt; in auth_timeok() local 232 lt = login_timelist(lc, "times.allow", <imesno, <imes); in auth_timeok() [all …]
|
| /NextBSD/usr.bin/chpass/ |
| HD | util.c | 84 static struct tm *lt; in atot() local 94 if (!lt) { in atot() 97 lt = localtime(&tval); in atot() 128 lt->tm_year = year - 1900; in atot() 129 lt->tm_mon = month - 1; in atot() 130 lt->tm_mday = day; in atot() 131 lt->tm_hour = 0; in atot() 132 lt->tm_min = 0; in atot() 133 lt->tm_sec = 0; in atot() 134 lt->tm_isdst = -1; in atot() [all …]
|
| /NextBSD/sbin/shutdown/ |
| HD | shutdown.c | 416 struct tm *lt; in getoffset() local 469 lt = localtime(&now); /* current time val */ in getoffset() 473 this_year = lt->tm_year; in getoffset() 474 lt->tm_year = ATOI2(timearg); in getoffset() 480 if (lt->tm_year < (this_year % 100) - 1) in getoffset() 481 lt->tm_year += 100; in getoffset() 483 lt->tm_year += (this_year - (this_year % 100)); in getoffset() 486 lt->tm_mon = ATOI2(timearg); in getoffset() 487 if (--lt->tm_mon < 0 || lt->tm_mon > 11) in getoffset() 491 lt->tm_mday = ATOI2(timearg); in getoffset() [all …]
|
| /NextBSD/crypto/openssl/crypto/bn/asm/ |
| HD | pa-risc2.s | 165 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R) 166 FLDD 8(a_ptr),t_float_1 ; load up 64-bit value (fr8L) ht(L)/lt(R) 185 XMPYU flt_0,fw_l,lt_temp ; lt_temp = lt*fw_l 186 XMPYU flt_1,fw_l,lt_temp_1 ; lt_temp = lt*fw_l 215 ADD lt_0,m1_0,lt_0 ; lt[0] = lt[0]+m1[0]; 217 ADD lt_1,m1_1,lt_1 ; lt[1] = lt[1]+m1[1]; 220 ADD %ret1,lt_0,lt_0 ; lt[0] = lt[0] + c; 222 ADD lt_0,rp_val,lt_0 ; lt[0] = lt[0]+rp[0] 226 ADD ht_0,lt_1,lt_1 ; lt[1] = lt[1] + ht_0 (c); 228 STD lt_0,0(r_ptr) ; rp[0] = lt[0] [all …]
|
| HD | pa-risc2W.s | 157 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R) 158 FLDD 8(a_ptr),t_float_1 ; load up 64-bit value (fr8L) ht(L)/lt(R) 177 XMPYU flt_0,fw_l,lt_temp ; lt_temp = lt*fw_l 178 XMPYU flt_1,fw_l,lt_temp_1 ; lt_temp = lt*fw_l 207 ADD lt_0,m1_0,lt_0 ; lt[0] = lt[0]+m1[0]; 209 ADD lt_1,m1_1,lt_1 ; lt[1] = lt[1]+m1[1]; 212 ADD %ret0,lt_0,lt_0 ; lt[0] = lt[0] + c; 214 ADD lt_0,rp_val,lt_0 ; lt[0] = lt[0]+rp[0] 218 ADD ht_0,lt_1,lt_1 ; lt[1] = lt[1] + ht_0 (c); 220 STD lt_0,0(r_ptr) ; rp[0] = lt[0] [all …]
|
| /NextBSD/usr.bin/xlint/lint1/ |
| HD | tree.c | 773 tspec_t lt, rt = NOTSPEC, lst = NOTSPEC, rst = NOTSPEC, olt = NOTSPEC, in typeok() local 783 if ((lt = ltp->t_tspec) == PTR) in typeok() 794 if (!isityp(lt) || (mp->m_binary && !isityp(rt))) { in typeok() 795 incompat(op, lt, rt); in typeok() 800 if (!issclt(lt) || (mp->m_binary && !issclt(rt))) { in typeok() 801 incompat(op, lt, rt); in typeok() 806 if (!isatyp(lt) || (mp->m_binary && !isatyp(rt))) { in typeok() 807 incompat(op, lt, rt); in typeok() 831 if (lt == FUNC || lt == VOID || ltp->t_isfield || in typeok() 832 ((lt != STRUCT && lt != UNION) && !ln->tn_lvalue)) { in typeok() [all …]
|
| /NextBSD/bin/pax/ |
| HD | sel_subs.c | 538 struct tm *lt; in str_sec() local 541 lt = localtime(tval); in str_sec() 549 if ((lt->tm_sec = ATOI2(dot)) > 61) in str_sec() 552 lt->tm_sec = 0; in str_sec() 560 if ((lt->tm_year = ATOI2(str)) < 69) in str_sec() 561 lt->tm_year += 100; in str_sec() 569 if ((lt->tm_mon = ATOI2(str)) > 12) in str_sec() 571 --lt->tm_mon; in str_sec() 578 if ((lt->tm_mday = ATOI2(str)) > 31) in str_sec() 586 if ((lt->tm_hour = ATOI2(str)) > 23) in str_sec() [all …]
|
| /NextBSD/usr.bin/unifdef/ |
| HD | unifdef.c | 85 #define linetype_if2elif(lt) ((Linetype)(lt - LT_IF + LT_ELIF)) argument 86 #define linetype_2dodgy(lt) ((Linetype)(lt + LT_DODGY)) argument 1016 Linetype lt; in eval_unary() local 1022 lt = eval_unary(ops, valp, &cp); in eval_unary() 1023 if (lt == LT_ERROR) in eval_unary() 1025 if (lt != LT_IF) { in eval_unary() 1027 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary() 1032 lt = eval_unary(ops, valp, &cp); in eval_unary() 1033 if (lt == LT_ERROR) in eval_unary() 1035 if (lt != LT_IF) { in eval_unary() [all …]
|
| /NextBSD/usr.bin/tip/libacu/ |
| HD | dn11.c | 56 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(<)) != child && nw != -1) in dn_dialer() 110 if (lt != 0) { in dn_dialer()
|
| /NextBSD/contrib/ntp/ |
| HD | bootstrap | 76 lt= 81 lt="$lt $fb" 84 touch $lt 85 echo "Touching <$lt>"
|
| /NextBSD/contrib/ldns/ |
| HD | error.c | 152 ldns_lookup_table *lt; in ldns_get_errorstr_by_id() local 154 lt = ldns_lookup_by_id(ldns_error_str, err); in ldns_get_errorstr_by_id() 156 if (lt) { in ldns_get_errorstr_by_id() 157 return lt->name; in ldns_get_errorstr_by_id()
|
| /NextBSD/contrib/apr/time/unix/ |
| HD | time.c | 276 struct tm *lt; in apr_apr_time_to_os2_time() local 277 lt = localtime(&ansitime); in apr_apr_time_to_os2_time() 278 os2time->hours = lt->tm_hour; in apr_apr_time_to_os2_time() 279 os2time->minutes = lt->tm_min; in apr_apr_time_to_os2_time() 280 os2time->twosecs = lt->tm_sec / 2; in apr_apr_time_to_os2_time() 282 os2date->day = lt->tm_mday; in apr_apr_time_to_os2_time() 283 os2date->month = lt->tm_mon + 1; in apr_apr_time_to_os2_time() 284 os2date->year = lt->tm_year - 80; in apr_apr_time_to_os2_time()
|
| /NextBSD/contrib/dialog/po/ |
| HD | 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"
|
| /NextBSD/usr.bin/rwall/ |
| HD | rwall.c | 127 struct tm *lt; in makemsg() local 149 lt = localtime(&now); in makemsg() 164 lt->tm_hour, lt->tm_min); in makemsg()
|
| /NextBSD/crypto/openssl/crypto/bn/ |
| HD | bn_lcl.h | 440 BN_ULONG m,m1,lt,ht; \ 442 lt=l; \ 444 m =(bh)*(lt); \ 445 lt=(bl)*(lt); \ 451 lt=(lt+m1)&BN_MASK2; if (lt < m1) ht++; \ 452 (l)=lt; \
|
| /NextBSD/usr.bin/wall/ |
| HD | wall.c | 191 struct tm *lt; in makemsg() local 217 lt = localtime(&now); in makemsg() 233 lt->tm_hour, lt->tm_min, lt->tm_zone); in makemsg()
|
| /NextBSD/contrib/compiler-rt/lib/sanitizer_common/tests/ |
| HD | sanitizer_deadlock_detector_test.cc | 173 uptr lt = d.newNode(i); in RunRemoveNodeTest() local 174 locks.insert(lt); in RunRemoveNodeTest() 175 d.onLock(&dtls, lt); in RunRemoveNodeTest() 176 d.onUnlock(&dtls, lt); in RunRemoveNodeTest() 177 d.removeNode(lt); in RunRemoveNodeTest() 198 uptr lt = d.newNode(i); in RunRemoveNodeTest() local 199 locks.insert(lt); in RunRemoveNodeTest() 202 a = l0; b = lt; in RunRemoveNodeTest() 208 a = l1; b = lt; in RunRemoveNodeTest() 214 a = lt; b = l4; in RunRemoveNodeTest() [all …]
|