Searched refs:lt (Results 1 - 25 of 738) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector1.cpp46 void DestroyLogicalThread(DDLogicalThread *lt) override;
57 void MutexEnsureID(DDLogicalThread *lt, DDMutex *m);
80 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt)); local
81 lt->ctx = ctx;
82 lt->dd.clear();
83 lt->report_pending = false;
84 return lt;
87 void DD::DestroyLogicalThread(DDLogicalThread *lt) { argument
88 lt
97 MutexEnsureID(DDLogicalThread *lt, DDMutex *m) argument
105 DDLogicalThread *lt = cb->lt; local
120 DDLogicalThread *lt = cb->lt; local
153 DDLogicalThread *lt = cb->lt; local
[all...]
H A Dsanitizer_deadlock_detector2.cpp90 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( local
138 lt->ctx = ctx;
139 lt->nlocked = 0;
140 return lt;
143 void DD::DestroyLogicalThread(DDLogicalThread *lt) { argument
144 lt->~DDLogicalThread();
145 InternalFree(lt);
191 DDLogicalThread *lt = cb->lt; local
270 DDLogicalThread *lt = cb->lt; local
302 DDLogicalThread *lt = cb->lt; local
326 DDLogicalThread *lt = cb->lt; local
356 CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, DDMutex *m) argument
398 Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dsync_fetch_and_min_4.S16 #define min_4(rD, rN, rM) MINMAX_4(rD, rN, rM, lt)
H A Dsync_fetch_and_min_8.S17 #define min_8(rD_LO, rD_HI, rN_LO, rN_HI, rM_LO, rM_HI) MINMAX_8(rD_LO, rD_HI, rN_LO, rN_HI, rM_LO, rM_HI, lt)
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_expand/
H A Dsetup.ksh37 if [[ $(linux_version) -lt $(linux_version "2.6.38") ]]; then
/freebsd-current/tools/test/stress2/misc/
H A Dreaper5.sh34 while [ $((`date +%s` - start)) -lt 120 ]; do
H A Dzz-combo01.sh38 while [ $((`date +%s` - start)) -lt 1200 ]; do
H A Dprocstat2.sh38 while [ $((`date +%s` - start)) -lt 300 ]; do
/freebsd-current/contrib/sendmail/src/
H A Darpadate.c63 register struct tm *lt; local
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
[all...]
/freebsd-current/lib/libc/string/
H A Dtimingsafe_memcmp.c31 /* lt is -1 if p1[i] < p2[i]; else 0. */
32 int lt = (p1[i] - p2[i]) >> CHAR_BIT; local
38 int cmp = lt - gt;
44 done |= lt | gt;
/freebsd-current/bin/date/
H A Ddate.c90 struct tm *lt; local
188 lt = localtime(&ts.tv_sec);
189 if (lt == NULL)
191 badv = vary_apply(v, lt);
201 printisodate(lt, ts.tv_nsec);
211 (void)strftime_ns(buf, sizeof(buf), format, lt, ts.tv_nsec);
225 printisodate(struct tm *lt, long nsec) argument
234 (void)strftime_ns(buf, sizeof(buf), fmtbuf, lt, nsec);
237 (void)strftime_ns(tzbuf, sizeof(tzbuf), "%z", lt, nsec);
252 struct tm *lt; local
[all...]
/freebsd-current/tools/test/stress2/tools/
H A Ddf.sh38 [ $p1 -lt 80 -a $p2 -lt 80 -a $old != x ] && continue
/freebsd-current/usr.sbin/periodic/etc/monthly/
H A D999.local31 [ $rc -lt 2 ] && rc=2
35 [ $rc -lt 2 ] && rc=2;;
/freebsd-current/usr.sbin/periodic/etc/weekly/
H A D999.local31 [ $rc -lt 2 ] && rc=2
35 [ $rc -lt 2 ] && rc=2;;
/freebsd-current/usr.sbin/periodic/etc/daily/
H A D999.local34 [ $rc -lt 2 ] && rc=2
38 [ $rc -lt 2 ] && rc=2;;
/freebsd-current/usr.bin/chpass/
H A Dutil.c79 static struct tm *lt; local
89 if (!lt) {
92 lt = localtime(&tval);
123 lt->tm_year = year - 1900;
124 lt->tm_mon = month - 1;
125 lt->tm_mday = day;
126 lt->tm_hour = 0;
127 lt->tm_min = 0;
128 lt->tm_sec = 0;
129 lt
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_sync/
H A Dzpool_sync_002_neg.ksh39 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool/
H A Dzpool_001_neg.ksh64 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/arc/
H A Ddbufstats_003_pos.ksh35 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_scrub/
H A Dzpool_scrub_001_neg.ksh57 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_user/zpool_list/
H A Dzpool_list_002_neg.ksh52 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/tests/sys/cddl/zfs/tests/cli_user/zpool_list/
H A Dzpool_list_002_neg.ksh60 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zdb/
H A Dzdb_001_neg.ksh75 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zpool/
H A Dzpool_001_neg.ksh72 while [[ $i -lt ${#args[*]} ]]; do
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zpool_scrub/
H A Dzpool_scrub_001_neg.ksh65 while [[ $i -lt ${#args[*]} ]]; do

Completed in 291 milliseconds

1234567891011>>