Home
last modified time | relevance | path

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

12345678910>>...17

/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_deadlock_detector2.cc91 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 …]
HDsanitizer_deadlock_detector1.cc47 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/
HDcommon.cpp27 const line_type &lt) 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 &lt) 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 &lt) in ellipse_arc() argument
[all …]
HDtex.cpp60 double end_angle, const line_type &lt);
180 const line_type &lt) 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 &lt, double fill) in polygon() argument
212 line(v[n-1], v, n, lt); in polygon()
216 const line_type &lt) in spline() argument
218 if (lt.type == line_type::invisible) in spline()
[all …]
HDtroff.cpp66 const position &end, const line_type &lt) 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 &lt) 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 …]
HDcommon.h25 const line_type &lt, double dash_width, double gap_width,
28 double start_angle, double end_angle, const line_type &lt,
31 const line_type &lt, double gap_width, double *offsetp);
33 double start_angle, double end_angle, const line_type &lt,
49 double end_angle, const line_type &lt);
HDobject.cpp215 const arrow_head_type &aht, const line_type &lt, 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/
HDdate.c88 struct tm lt; in main() local
177 lt = *localtime(&tval); in main()
178 badv = vary_apply(v, &lt); in main()
194 (void)strftime(buf, sizeof(buf), format, &lt); 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/
HDlogin_ok.c95 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", &ltimesno, &ltimes); in auth_timeok()
[all …]
/NextBSD/usr.bin/chpass/
HDutil.c84 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/
HDshutdown.c416 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/
HDpa-risc2.s165 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 …]
HDpa-risc2W.s157 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/
HDtree.c773 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/
HDsel_subs.c538 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/
HDunifdef.c85 #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/
HDdn11.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()
/NextBSD/contrib/ntp/
HDbootstrap76 lt=
81 lt="$lt $fb"
84 touch $lt
85 echo "Touching <$lt>"
/NextBSD/contrib/ldns/
HDerror.c152 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/
HDtime.c276 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/
HDlt.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"
/NextBSD/usr.bin/rwall/
HDrwall.c127 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/
HDbn_lcl.h440 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/
HDwall.c191 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/
HDsanitizer_deadlock_detector_test.cc173 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 …]

12345678910>>...17