Home
last modified time | relevance | path

Searched refs:l (Results 26 – 50 of 1489) sorted by relevance

12345678910>>...60

/illumos-gate/usr/src/lib/libc/sparcv9/fp/
H A D_Qp_xtoq.c42 Z.l.msw = 0xc03e0000; in _Qp_xtoq()
43 Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_xtoq()
49 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_xtoq()
58 Z.l.msw = ((unsigned long) x >> (e - 16)) & 0xffff; in _Qp_xtoq()
59 Z.l.frac2 = (unsigned long) x >> (e - 48); in _Qp_xtoq()
60 Z.l.frac3 = (unsigned long) x << (80 - e); in _Qp_xtoq()
63 Z.l.frac2 = (unsigned long) x << (48 - e); in _Qp_xtoq()
64 Z.l.frac3 = 0; in _Qp_xtoq()
67 Z.l.frac2 = Z.l.frac3 = 0; in _Qp_xtoq()
69 Z.l.frac4 = 0; in _Qp_xtoq()
[all …]
H A D_Qp_uxtoq.c39 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_uxtoq()
48 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Qp_uxtoq()
49 Z.l.frac2 = x >> (e - 48); in _Qp_uxtoq()
50 Z.l.frac3 = x << (80 - e); in _Qp_uxtoq()
52 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Qp_uxtoq()
53 Z.l.frac2 = x << (48 - e); in _Qp_uxtoq()
54 Z.l.frac3 = 0; in _Qp_uxtoq()
56 Z.l.msw = (x << (16 - e)) & 0xffff; in _Qp_uxtoq()
57 Z.l.frac2 = Z.l.frac3 = 0; in _Qp_uxtoq()
59 Z.l.frac4 = 0; in _Qp_uxtoq()
[all …]
H A D_Qp_qtox.c38 xm = x->l.msw & 0x7fffffff; in _Qp_qtox()
44 if (x->l.msw == 0xc03e0000 && x->l.frac2 == 0 && in _Qp_qtox()
45 (x->l.frac3 & 0xfffe0000) == 0) { in _Qp_qtox()
48 if ((x->l.frac3 & 0x1ffff) | x->l.frac4) { in _Qp_qtox()
60 i = ((x->l.msw & 0x80000000)? 0x8000000000000000ul : in _Qp_qtox()
71 i = 0l; in _Qp_qtox()
72 if (xm | x->l.frac2 | x->l.frac3 | x->l.frac4) { in _Qp_qtox()
86 ((long) x->l.frac2 << 14) | (x->l.frac3 >> 18); in _Qp_qtox()
89 if (x->l.msw & 0x80000000) in _Qp_qtox()
91 if (round | (x->l.frac3 & 0x3ffff) | x->l.frac4) { in _Qp_qtox()
/illumos-gate/usr/src/uts/i86pc/io/amd_iommu/
H A Damd_iommu_page_tables.h45 #define AMD_IOMMU_VA_NBITS(l) ((l) == 6 ? 7 : 9) argument
46 #define AMD_IOMMU_VA_BITMASK(l) ((1 << AMD_IOMMU_VA_NBITS(l)) - 1) argument
47 #define AMD_IOMMU_VA_SHIFT(v, l) \ argument
48 ((v) >> (MMU_PAGESHIFT + (AMD_IOMMU_VA_NBITS(l - 1) * (l - 1))))
49 #define AMD_IOMMU_VA_BITS(v, l) \ argument
50 (AMD_IOMMU_VA_SHIFT(v, l) & AMD_IOMMU_VA_BITMASK(l))
51 #define AMD_IOMMU_VA_TOTBITS(l) \ argument
52 (((l) == 6 ? 7 + (l - 1) * 9: l*9) + MMU_PAGESHIFT)
53 #define AMD_IOMMU_VA_TOTMASK(l) ((1 << AMD_IOMMU_VA_TOTBITS(l)) - 1) argument
58 #define AMD_IOMMU_VA_INVAL(v, l) \ argument
[all …]
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_vadj.c642 int l; in vredraw() local
668 l = 0; in vredraw()
672 while (l < vcnt && LINE(l) < p) in vredraw()
681 for (; l < vcnt && Peekkey != ATTN; l++) { in vredraw()
690 if (LINE(l) != LINE(l + 1) && LINE(l) != p) { in vredraw()
698 vdellin(p, LINE(l) - p, l); in vredraw()
714 p = LINE(l) + DEPTH(l); in vredraw()
859 int l; in vsync1() local
879 l = 0; in vsync1()
912 l++; in vsync1()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/cdt/
H A Ddthash.c80 { for(l = *t; l; l = next) in htable()
82 l->_rght = htbl[k = l->_hash&(n-1)]; in htable()
83 htbl[k] = l; in htable()
104 { for(l = *t; l; l = next) in hclear()
120 { if(!(l = *t) ) in hfirst()
122 hash->here = l; in hfirst()
159 { for(l = *t; l; l = l->_rght) in hflatten()
183 for(l = head; l && l != *t; l = l->_rght) in hflatten()
212 for(l = list; l; l = next) in hlist()
236 { for(n = 0, l = *t; l; l = l->_rght) in hstat()
[all …]
/illumos-gate/usr/src/common/tsol/
H A Dstol.c85 *l++ = byte; in unhex()
239 if (*l == NULL) { in str_to_label()
247 _LOW_LABEL(*l, id); in str_to_label()
251 _LOW_LABEL(*l, id); in str_to_label()
253 } else if (!(_MTYPE(*l, SUN_MAC_ID) || _MTYPE(*l, SUN_CLR_ID))) { in str_to_label()
286 id = _MGETTYPE(*l); in str_to_label()
314 slcall.label = **l; in str_to_label()
383 m_label_t *l; in m_label_alloc() local
397 return (l); in m_label_alloc()
445 if (l) in m_label_free()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/sed/bsd/regress.multitest.out/
H A D8.61 (l)(1)(_)(1)
2 (l)(1)(_)(2)
3 (l)(1)(_)(3)
4 (l)(1)(_)(4)
5 (l)(1)(_)(5)
6 (l)(1)(_)(6)
7 (l)(1)(_)(7)
8 (l)(1)(_)(8)
9 (l)(1)(_)(9)
10 (l)(1)(_)(1)(0)
[all …]
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/
H A DDNSDigest.c491 l=(((l>>8)&0x00FF00FF)|((l&0x00FF00FF)<<8)), \
563 #define HOST_c2l(c,l) ((void)_HOST_c2l(c,l)) argument
564 #define HOST_l2c(l,c) ((void)_HOST_l2c(l,c)) argument
684 l=p[sw]; HOST_p_c2l(data,l,sc); p[sw++]=l; in HASH_UPDATE()
687 HOST_c2l(data,l); p[sw]=l; in HASH_UPDATE()
699 l=p[sw]; HOST_p_c2l_p(data,l,sc,len); p[sw]=l; in HASH_UPDATE()
711 HOST_c2l(data,l); p[sw]=l; in HASH_UPDATE()
715 HOST_c2l_p(data,l,ec); p[sw]=l; in HASH_UPDATE()
767 HOST_c2l(data,l); *p=l; in HASH_UPDATE()
822 l=p[i]; in HASH_FINAL()
[all …]
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs4_db_impl.h138 (l)->prev = NULL; \
139 (l)->next = (head); \
140 if ((l)->next) \
141 (l)->next->prev = (l); \
142 (head) = (l); \
146 if ((l)->prev) \
147 (l)->prev->next = (l)->next; \
149 (head) = (l)->next; \
150 if ((l)->next) \
151 (l)->next->prev = (l)->prev; \
[all …]
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_stoq.c53 unsigned int l; in _Qp_stoq() member
59 m = ((u.l & 0x7f800000) >> 7) + 0x3f800000; in _Qp_stoq()
62 if (u.l & 0x7fffff) { in _Qp_stoq()
65 f = u.l & 0x7fffff; in _Qp_stoq()
70 u.l = (u.l & 0x80000000) | f; in _Qp_stoq()
77 if ((u.l & 0x3fffff) && (u.l & 0x400000) == 0) { in _Qp_stoq()
87 u.l |= 0x400000; in _Qp_stoq()
90 Z.l.msw = m | (u.l & 0x80000000) | ((u.l & 0x7fff80) >> 7); in _Qp_stoq()
91 Z.l.frac2 = u.l << 25; in _Qp_stoq()
92 Z.l.frac3 = Z.l.frac4 = 0; in _Qp_stoq()
H A D_Q_sqrt.c106 xm = x->l.msw; in _Qp_sqrt()
112 if ((x->l.msw & 0xffff) | x->l.frac2 | x->l.frac3 | in _Qp_sqrt()
113 x->l.frac4) { in _Qp_sqrt()
136 Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0xffffffff; in _Qp_sqrt()
153 Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0xffffffff; in _Qp_sqrt()
177 } else if (x->l.frac2 | (x->l.frac3 & 0xfffe0000)) { in _Qp_sqrt()
183 } else if (x->l.frac3 | (x->l.frac4 & 0xfffe0000)) { in _Qp_sqrt()
300 msw = u.l.lo; in _Qp_sqrt()
304 frac2 = u.l.lo; in _Qp_sqrt()
309 frac3 = u.l.lo; in _Qp_sqrt()
[all …]
H A D_Q_ulltoq.c40 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Q_ulltoq()
49 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Q_ulltoq()
50 Z.l.frac2 = x >> (e - 48); in _Q_ulltoq()
51 Z.l.frac3 = x << (80 - e); in _Q_ulltoq()
53 Z.l.msw = (x >> (e - 16)) & 0xffff; in _Q_ulltoq()
54 Z.l.frac2 = x << (48 - e); in _Q_ulltoq()
55 Z.l.frac3 = 0; in _Q_ulltoq()
57 Z.l.msw = (x << (16 - e)) & 0xffff; in _Q_ulltoq()
58 Z.l.frac2 = Z.l.frac3 = 0; in _Q_ulltoq()
60 Z.l.frac4 = 0; in _Q_ulltoq()
[all …]
H A D_Q_itoq.c58 Z.l.msw = 0xc01e0000; in _Qp_itoq()
59 Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_itoq()
65 Z.l.msw = Z.l.frac2 = Z.l.frac3 = Z.l.frac4 = 0; in _Qp_itoq()
74 Z.l.msw = ((unsigned) x >> (e - 16)) & 0xffff; in _Qp_itoq()
75 Z.l.frac2 = (unsigned) x << (48 - e); in _Qp_itoq()
77 Z.l.msw = ((unsigned) x << (16 - e)) & 0xffff; in _Qp_itoq()
78 Z.l.frac2 = 0; in _Qp_itoq()
80 Z.l.frac3 = Z.l.frac4 = 0; in _Qp_itoq()
81 Z.l.msw |= s | ((e + 0x3fff) << 16); in _Qp_itoq()
H A D_Q_qtoi.c42 xm = x->l.msw & 0x7fffffff; in _Q_qtoi()
48 if (x->l.msw == 0xc01e0000 && (x->l.frac2 & 0xfffe0000) == 0) { in _Q_qtoi()
51 if ((x->l.frac2 & 0x1ffff) | x->l.frac3 | x->l.frac4) { in _Q_qtoi()
63 i = ((x->l.msw & 0x80000000)? 0x80000000 : 0x7fffffff); in _Q_qtoi()
74 if (xm | x->l.frac2 | x->l.frac3 | x->l.frac4) { in _Q_qtoi()
87 i = (int) (0x40000000 | ((xm & 0xffff) << 14) | (x->l.frac2 >> 18)); in _Q_qtoi()
90 if (x->l.msw & 0x80000000) in _Q_qtoi()
92 if (round | (x->l.frac2 & 0x3ffff) | x->l.frac3 | x->l.frac4) { in _Q_qtoi()
/illumos-gate/usr/src/cmd/psrinfo/
H A Dpsrinfo.c185 struct link *l; in find_link() local
216 (l->l_next->l_id > (l->l_id + 1))) { in print_links()
227 l = l->l_next; in print_links()
326 for (l = pchips; l != NULL; l = l->l_next) { in print_ps()
327 p = l->l_ptr; in print_ps()
333 for (l = p->p_vcpus; l != NULL; l = l->l_next) { in print_ps()
334 v = l->l_ptr; in print_ps()
353 for (l = vcpus; l != NULL; l = l->l_next) { in print_s()
394 for (l = vcpus; l != NULL; l = l->l_next) { in print_v()
443 for (l = vcpus; l != NULL; l = l->l_next) { in print_normal()
[all …]
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dstrdup.c64 size_t l; local
67 l = strlen(s) + 1;
70 (void) sm_strlcpy(d, s, l);
95 size_t l; local
98 l = strlen(s) + 1;
100 (void) sm_strlcpy(d, s, l);
123 size_t l; local
126 l = strlen(s) + 1;
127 d = sm_pmalloc_x(l);
156 size_t l; local
[all …]
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dlockf.c45 struct flock l; in __lockf() local
48 l.l_whence = 1; in __lockf()
50 l.l_start = size; in __lockf()
51 l.l_len = -size; in __lockf()
53 l.l_start = (off_t)0; in __lockf()
54 l.l_len = size; in __lockf()
58 l.l_type = F_UNLCK; in __lockf()
62 l.l_type = F_WRLCK; in __lockf()
66 l.l_type = F_WRLCK; in __lockf()
70 l.l_type = F_WRLCK; in __lockf()
[all …]
/illumos-gate/usr/src/uts/i86pc/vm/
H A Dhat_pte.h52 #define PTE_IS_LGPG(p, l) ((l) > 0 && PTE_GET((p), PT_PAGESIZE)) argument
57 #define PTE_ISPAGE(p, l) \ argument
77 #define PTE2MFN(p, l) \ argument
80 #define PTE2PFN(p, l) pte2pfn(p, l) argument
82 #define PTE2PFN(p, l) PTE2MFN(p, l)
103 #define MAKEPTP(pfn, l) \ argument
105 #define MAKEPTE(pfn, l) \ argument
144 #define LEVEL_SHIFT(l) (mmu.level_shift[l]) argument
145 #define LEVEL_SIZE(l) (mmu.level_size[l]) argument
146 #define LEVEL_OFFSET(l) (mmu.level_offset[l]) argument
[all …]
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_split.c155 lchild = l;
260 dest = (char *)l + l->linp[NEXTINDEX(l) - 1];
278 dest = (char *)l + l->linp[NEXTINDEX(l) - 1];
406 free(l);
425 if (tp == l)
427 free(l);
478 *lp = l;
506 l->flags & P_RLEAF ? NEXTINDEX(l) : rec_total(l), l->pgno);
686 l->linp[off] = l->upper -= nbytes;
687 memmove((char *)l + l->upper, src, nbytes);
[all …]
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzap_leaf.h49 #define ZAP_LEAF_NUMCHUNKS(l) \ argument
50 (((1<<(l)->l_bs) - 2*ZAP_LEAF_HASH_NUMENTRIES(l)) / \
77 #define ZAP_LEAF_HASH_SHIFT(l) ((l)->l_bs - 5) argument
78 #define ZAP_LEAF_HASH_NUMENTRIES(l) (1 << ZAP_LEAF_HASH_SHIFT(l)) argument
85 #define ZAP_LEAF_CHUNK(l, idx) \ argument
87 (zap_leaf_phys(l)->l_hash + ZAP_LEAF_HASH_NUMENTRIES(l)))[idx]
88 #define ZAP_LEAF_ENTRY(l, idx) (&ZAP_LEAF_CHUNK(l, idx).l_entry) argument
164 zap_leaf_phys(zap_leaf_t *l) in zap_leaf_phys() argument
166 return (l->l_dbuf->db_data); in zap_leaf_phys()
186 extern int zap_leaf_lookup(zap_leaf_t *l,
[all …]
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_clntout.c60 list *l; in write_stubs() local
67 for (l = defined; l != NULL; l = l->next) { in write_stubs()
115 decl_list *l; in printarglist() local
183 for (l = proc->args.decls; l != NULL; l = l->next) in printarglist()
189 for (l = proc->args.decls; l != NULL; l = l->next) { in printarglist()
201 for (l = proc->args.decls; l != NULL; l = l->next) { in printarglist()
233 decl_list *l; in printbody() local
290 for (l = proc->args.decls; l != NULL; l = l->next) { in printbody()
292 l->decl.name, l->decl.name); in printbody()
391 for (l = proc->args.decls; l != NULL; l = l->next) { in printbody()
[all …]
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_cr_6713682_compound_var_bleeds_through_subshell.sh70 var1="$(${SHELL} -c 'unset l ; ( l=( a=1 b="BE" ) ; print "$l" ) ; print $l')" || err…
71 var2="$(${SHELL} -c 'unset l ; ( ulimit -c 0 ; l=( a=1 b="BE" ) ; print "$l" ) ; print $l')" || err…
75 var1="$(${SHELL} -c '( l=( a=1 b="BE" ) ; print "$l" ) ; print $l')" || err_exit "Non…
76 var2="$(${SHELL} -c '( ulimit -c 0 ; l=( a=1 b="BE" ) ; print "$l" ) ; print $l')" || err_exit "Non…
80 …c 'unset l ; ( compound l ; l.a=1 ; l.b="BE" ; print "$l" ) ; print $l')" || err_exi…
81 …c 'unset l ; ( ulimit -c 0 ; compound l ; l.a=1 ; l.b="BE" ; print "$l" ) ; print $l')" || err_exi…
85 var1="$(${SHELL} -c '( compound l ; l.a=1 ; l.b="BE" ; print "$l" ) ; print $l')" || err_exi…
86 var2="$(${SHELL} -c '( ulimit -c 0 ; compound l ; l.a=1 ; l.b="BE" ; print "$l" ) ; print $l')" || …
/illumos-gate/usr/src/cmd/sendmail/src/
H A Derr.c611 int l; local
722 int l, h; local
729 l = 2;
766 int l, h; local
773 l = 2;
778 e[l + h] = s[l + h];
788 e[l + h] = s[l + h];
826 int l; local
853 l++;
855 eb += l;
[all …]
/illumos-gate/usr/src/cmd/csh/
H A Dsh.parse.c93 l++; in asyn0()
97 l--; in asyn0()
229 int l; in syn0() local
234 l = 0; in syn0()
239 l++; in syn0()
243 l--; in syn0()
297 int l; in syn1() local
302 l = 0; in syn1()
307 l++; in syn1()
311 l--; in syn1()
[all …]

12345678910>>...60