Home
last modified time | relevance | path

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

123

/illumos-gate/usr/src/cmd/sendmail/db/lock/
H A Dlock.c44 lock_id(lt, idp) in lock_id() argument
45 DB_LOCKTAB *lt; in lock_id()
64 DB_LOCKTAB *lt; in lock_vec()
75 DB_LOCKTAB *lt; in lock_tvec()
87 DB_LOCKTAB *lt; in __lock_vec_internal()
254 lock_detect(lt, 0, lt->region->detect);
263 DB_LOCKTAB *lt; in lock_get()
299 DB_LOCKTAB *lt; in lock_tget()
335 DB_LOCKTAB *lt; in lock_put()
363 lock_detect(lt, 0, lt->region->detect);
[all …]
H A Dlock_region.c45 DB_LOCKTAB *lt; local
99 lt->region = lt->reginfo.addr;
133 lt->hashtab =
135 lt->mem = (void *)((u_int8_t *)lt->region + lt->region->mem_off);
138 *ltp = lt;
150 __os_free(lt, sizeof(*lt));
278 __os_free(lt, sizeof(*lt));
317 if (lt->reginfo.size == lt->region->hdr.size)
325 lt->region = lt->reginfo.addr;
426 lt->region = lt->reginfo.addr;
[all …]
H A Dlock_deadlock.c64 DB_LOCKTAB *lt; in lock_detect()
72 LOCK_PANIC_CHECK(lt);
80 dbenv = lt->dbenv;
83 LOCK_LOCKREGION(lt);
85 UNLOCK_LOCKREGION(lt);
198 DB_LOCKTAB *lt; local
205 lt = dbenv->lk_info;
213 LOCK_LOCKREGION(lt);
254 LOCK_LOCKREGION(lt);
421 DB_LOCKTAB *lt; local
[all …]
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Dlock.h26 #define LOCK_PANIC_CHECK(lt) { \ argument
27 if ((lt)->region->hdr.panic) \
65 #define LOCK_LOCKREGION(lt) \ argument
66 (void)__db_mutex_lock(&(lt)->region->hdr.lock, (lt)->reginfo.fd)
67 #define UNLOCK_LOCKREGION(lt) \ argument
68 (void)__db_mutex_unlock(&(lt)->region->hdr.lock, (lt)->reginfo.fd)
166 #define OFFSET_TO_LOCK(lt, off) \ argument
168 #define LOCK_TO_OFFSET(lt, lock) \ argument
170 #define OFFSET_TO_OBJ(lt, off) \ argument
171 ((DB_LOCKOBJ *)((u_int8_t *)((lt)->region) + (off)))
[all …]
/illumos-gate/usr/src/cmd/sendmail/src/
H A Darpadate.c63 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 …]
/illumos-gate/usr/src/uts/common/fs/lofs/
H A Dlofs_subr.c646 lnode_t *lt; in freelonode() local
669 for (lt = TABLE_BUCKET(lp->lo_vp, li); lt != NULL; in freelonode()
670 ltprev = lt, lt = lt->lo_next) { in freelonode()
671 if (lt == lp) { in freelonode()
702 TABLE_BUCKET(lt->lo_vp, li) = lt->lo_next; in freelonode()
724 lnode_t *lt; in lfind() local
729 while (lt != NULL) { in lfind()
730 if (lt->lo_vp == vp) { in lfind()
731 VN_HOLD(ltov(lt)); in lfind()
732 return (lt); in lfind()
[all …]
/illumos-gate/usr/src/cmd/tip/aculib/
H A Ddn11.c25 int lt, nw; in dn_dialer() local
54 nw = write(dn, num, lt = strlen(num)); in dn_dialer()
55 exit(nw != lt); in dn_dialer()
75 while ((nw = wait(&lt)) != child && nw != -1) in dn_dialer()
79 if (lt != 0) { in dn_dialer()
/illumos-gate/usr/src/cmd/refer/
H A Dinv2.c32 int ll = 0, lt = 0; in newkeys() local
48 lt = strlen(bkeys); in newkeys()
51 lt += strlen(bkeys); in newkeys()
91 lp += (strlen(line)+lt+1); in newkeys()
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Dy3.c315 int lp, lt, action; in precftn() local
318 lt = toklev[t]; in precftn()
319 if (PLEVEL(lt) == 0 || PLEVEL(lp) == 0) { in precftn()
329 if (PLEVEL(lt) == PLEVEL(lp)) in precftn()
330 action = ASSOC(lt) & ~04; in precftn()
331 else if (PLEVEL(lt) > PLEVEL(lp)) in precftn()
/illumos-gate/usr/src/uts/intel/io/intel_nb5000/
H A Dintel_nbdrv.c66 uint64_t lt = 0; in rank_to_base() local
77 lt = nb_ranks[branch][i].limit; in rank_to_base()
89 if (lt == 0) { in rank_to_base()
90 for (i = 0; lt == 0 && i < NB_MEM_BRANCH_SELECT; i++) { in rank_to_base()
94 lt = nb_banks[i].limit; in rank_to_base()
100 *limit = lt; in rank_to_base()
/illumos-gate/usr/src/cmd/bnu/
H A Dcallers.c846 int nw, lt, dcf = -1, nullfd, dnf = -1; local
876 nw = (*Write)(dnf, phone, lt = strlen(phone));
877 if (nw != lt) {
895 while ((w_ret = wait(&lt)) != pid)
906 if (lt != 0) {
907 DEBUG(4, "Fork Stat %o\n", lt);
921 int nw, lt, dcf = -1, nullfd, dnf = -1, ret; local
962 nw = (*Write)(dnf, phone, lt = strlen(phone));
963 if (nw != lt) {
/illumos-gate/usr/src/ucbcmd/shutdown/
H A Dshutdown.c472 struct tm *lt; in getsdt() local
513 lt = localtime(&t1); in getsdt()
514 t = lt->tm_sec + lt->tm_min*60 + lt->tm_hour*3600; in getsdt()
/illumos-gate/usr/src/data/bhyve/kbdlayout/
H A Dlt2 # (lt : Lithuanian Ukrainian (with Russian) (shift))
H A DMakefile41 lt \
/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc_validate.c659 lt = LIST__NONE; in post_bl_norm()
663 lt = LIST_bullet; in post_bl_norm()
666 lt = LIST_dash; in post_bl_norm()
669 lt = LIST_enum; in post_bl_norm()
675 lt = LIST_item; in post_bl_norm()
678 lt = LIST_tag; in post_bl_norm()
681 lt = LIST_diag; in post_bl_norm()
684 lt = LIST_hang; in post_bl_norm()
687 lt = LIST_ohang; in post_bl_norm()
690 lt = LIST_inset; in post_bl_norm()
[all …]
/illumos-gate/usr/src/cmd/sh/
H A Dsh.xcl185 msgid "-lt"
/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/
H A Dlc.tab96 lt lithuanian lit iso8859-13
224 lt lithuania lt
/illumos-gate/usr/src/tools/scripts/
H A Dwdiff.pl286 s/</&lt;/g;
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dsadb.c1089 sadb_lifetime_t *lt; in sadb_sa2msg() local
1276 lt = (sadb_lifetime_t *)(assoc + 1); in sadb_sa2msg()
1277 lt->sadb_lifetime_len = SADB_8TO64(sizeof (*lt)); in sadb_sa2msg()
1280 lt->sadb_lifetime_allocations = 0; in sadb_sa2msg()
1286 lt++; in sadb_sa2msg()
1287 lt->sadb_lifetime_len = SADB_8TO64(sizeof (*lt)); in sadb_sa2msg()
1296 lt++; in sadb_sa2msg()
1297 lt->sadb_lifetime_len = SADB_8TO64(sizeof (*lt)); in sadb_sa2msg()
1306 lt++; in sadb_sa2msg()
1307 lt->sadb_lifetime_len = SADB_8TO64(sizeof (*lt)); in sadb_sa2msg()
[all …]
/illumos-gate/usr/src/cmd/troff/
H A Dn5.c308 i = max(hnumb(&lt), 0); in caselt()
309 lt1 = lt; in caselt()
310 lt = i; in caselt()
/illumos-gate/usr/src/cmd/troff/nroff.d/terms.d/
H A Db.300115 lt 1 (
H A Db.lp115 lt 1 (
/illumos-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java343 String lt; in printDistribution() local
345 lt = "< " + ((LinearDistribution)d).getBase(); in printDistribution()
347 lt = "< " + ((LogLinearDistribution)d).getBase(); in printDistribution()
348 out.printf("%16s ", lt); in printDistribution()
/illumos-gate/usr/src/test/zfs-tests/tests/perf/
H A Dperf.shlib189 while [[ $idx -lt "${#collect_scripts[@]}" ]]; do
215 while [[ $idx -lt "${#ZINJECT_DELAYS[@]}" ]]; do
315 while [[ $idx -lt "${#filesystems[@]}" ]]; do
/illumos-gate/usr/src/cmd/lp/model/
H A Dalert.proto56 while [ "${TiCk}" -lt -INTERVAL- ]

123