Home
last modified time | relevance | path

Searched refs:l (Results 76 – 100 of 1489) sorted by relevance

12345678910>>...60

/illumos-gate/usr/src/test/util-tests/tests/dis/risc-v/
H A D64.rv64d.s26 fcvt.l.d t0, ft1
27 fcvt.l.d t1, ft2, rne
28 fcvt.l.d t2, ft3, rtz
29 fcvt.l.d t3, ft4, rdn
30 fcvt.l.d t4, ft5, rup
31 fcvt.l.d t5, ft6, rmm
42 fcvt.d.l ft1, t0
43 fcvt.d.l ft2, t1, rne
44 fcvt.d.l ft3, t2, rtz
45 fcvt.d.l ft4, t3, rdn
[all …]
/illumos-gate/usr/src/lib/libresolv/arpa/
H A Dnameser.h218 #define GETLONG(l, cp) { \ argument
219 (l) = *(cp)++ << 8; \
220 (l) |= *(cp)++; (l) <<= 8; \
221 (l) |= *(cp)++; (l) <<= 8; \
222 (l) |= *(cp)++; \
234 #define PUTLONG(l, cp) { \ argument
235 (cp)[3] = l; \
236 (cp)[2] = (l >>= 8); \
237 (cp)[1] = (l >>= 8); \
238 (cp)[0] = l >> 8; \
/illumos-gate/usr/src/lib/iconv_modules/ko/common/
H A Dwansung_to_utf.c39 register short h, i, j, l; in _wansung_to_utf8() local
46 for (l = 0, h = MAX_E2U_NUM; l < h; ) in _wansung_to_utf8()
48 i = (l + h) / 2; in _wansung_to_utf8()
51 else if (euc2utf8_tbl[l].code == wcode) in _wansung_to_utf8()
53 i = l; in _wansung_to_utf8()
62 l = i + 1; in _wansung_to_utf8()
78 for (h = CI_CNT, l = 0; ; ) in _wansung_to_utf8()
80 ci = (l + h) / 2; in _wansung_to_utf8()
81 if (l >= h) in _wansung_to_utf8()
88 l = ci + 1; in _wansung_to_utf8()
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A Dquad.h96 } l; member
102 (((x).l.msw & 0x7fff0000) == 0x7fff0000 && \
103 (((x).l.msw & 0xffff) | (x).l.frac2 | (x).l.frac3 | (x).l.frac4))
106 (!(((x).l.msw & 0x7fffffff) | (x).l.frac2 | (x).l.frac3 | (x).l.frac4))
113 } l; member
H A D_Q_neg.c52 Z.l.msw = x->l.msw ^ 0x80000000; in _Qp_neg()
53 Z.l.frac2 = x->l.frac2; in _Qp_neg()
54 Z.l.frac3 = x->l.frac3; in _Qp_neg()
55 Z.l.frac4 = x->l.frac4; in _Qp_neg()
/illumos-gate/usr/src/cmd/keyserv/
H A Dkey_generic.c76 } *l; variable
95 for (l = xprtlist; l; l = l->next) {
96 if (strcmp(l->xprt->xp_netid, nconf->nc_netid) == 0) {
99 if (svc_reg(l->xprt, prognum, versnum,
109 if (l)
169 l = (struct xlist *)malloc(sizeof (struct xlist));
170 if (l == (struct xlist *)NULL) {
176 l->xprt = xprt;
177 l->next = xprtlist;
178 xprtlist = l;
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dfex_log.c124 struct exc_list *l, *ll = NULL; in check_exc_list() local
129 for (l = list; l; ll = l, l = l->next) { in check_exc_list()
130 if (l->addr != addr || l->code != code) in check_exc_list()
132 if (log_depth < 1 || l->nstack < 1) in check_exc_list()
134 if (l->stack[0] != stk) in check_exc_list()
153 l->next = NULL; in check_exc_list()
154 l->addr = addr; in check_exc_list()
155 l->code = code; in check_exc_list()
157 l->stack[0] = stk; in check_exc_list()
163 ll->next = l; in check_exc_list()
[all …]
H A Dtgammal.c47 long double h, l; member
166 r.l = t3; in GT1()
215 r.l = t3; in GT3()
844 xx.l = x8 + t4; in kpcos()
911 r1 * yy.l); in gam_n()
915 rr.l = yy.l; in gam_n()
921 rr.l = z * yy.l + (x - (zh - one)) * yy.h; in gam_n()
932 rr.l = z * yy.l + xl * yy.h; in gam_n()
963 rr.l = z * yy.l + xl * yy.h; in gam_n()
1116 ss.l = -ss.l;
[all …]
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_name.c99 int l; in ns_name_ntop() local
142 for ((void)NULL; l > 0; l--) { in ns_name_ntop()
356 int l; in ns_name_ntol() local
381 for ((void)NULL; l > 0; l--) { in ns_name_ntol()
442 if (dstp + l + 1 >= dstlim || srcp + l >= eom) { in ns_name_unpack2()
449 dstp += l; in ns_name_unpack2()
532 l = 0; in ns_name_pack()
678 int l; in ns_name_skip() local
692 cp += l; in ns_name_skip()
787 int l; in ns_name_map() local
[all …]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/bitfields/
H A Dtst.bitfields.c41 uint32_t l:1; member
63 unsigned long l; in main() local
78 l = strtoul(argv[1], NULL, 0); in main()
79 if (errno != 0 || l == 0 || l > UINT16_MAX) { in main()
82 u16 = (uint16_t)l; in main()
84 l = strtoul(argv[2], NULL, 0); in main()
85 if (errno != 0 || l == 0 || l > UINT32_MAX) { in main()
88 u32 = (uint32_t)l; in main()
/illumos-gate/usr/src/cmd/lp/lib/msgs/
H A Dhslconv.c34 char * ltos ( char * s, unsigned long l) in ltos() argument
36 char * ltos (s, l) in ltos()
38 unsigned long l;
45 s[i--] = _lp_hextable[l % 16];
46 l /= 16;
79 unsigned long l = 0; local
83 l <<= 4;
84 l += strchr(_lp_hextable, s[i++]) - _lp_hextable;
86 return(l);
/illumos-gate/usr/src/tools/cscope-fast/
H A Dcgrep.c1358 for (l = state->alts; l; l = l->next) in re_cwadd()
1388 for (l = n->alts; l; l = l->next) { in pr()
1413 for (l = root->alts; l; l = l->next) { in fail()
1420 for (l = r->alts; l; l = l->next) { in fail()
1456 for (l = n->alts; l; l = l->next) in zeroroot()
1473 for (l = c->root->alts; l; l = l->next) { in shift()
1494 for (l = r->alts; l; l = l->next) { in shift()
1512 for (l = n->alts; l; l = l->next) in shifttab()
1513 nn[l->lit] = l->node; in shifttab()
1522 for (l = n->alts; l; l = l->next) { in shiftprop()
[all …]
/illumos-gate/usr/src/lib/iconv_modules/utf-8/utils/
H A Ducs4_to_cp720_generator.c40 unsigned int l, k; in main() local
72 l = strtol(num, (char **)NULL, 16); in main()
89 tbl[k].u8 = l; in main()
90 if (l < 0x80) in main()
92 else if (l < 0x800) in main()
94 else if (l < 0x10000) in main()
96 else if (l < 0x200000) in main()
98 else if (l < 0x4000000) in main()
106 l = tbl[i].u8; in main()
107 if (i > 0x7f && l != 0) in main()
[all …]
H A Ducs4_to_sb_generator.c45 unsigned int l, k; in main() local
91 l = strtol(num, (char **)NULL, 0); in main()
93 tbl[k].u8 = l; in main()
94 if (l < 0x80) in main()
96 else if (l < 0x800) in main()
98 else if (l < 0x10000) in main()
100 else if (l < 0x200000) in main()
102 else if (l < 0x4000000) in main()
109 l = tbl[i].u8; in main()
110 if (i > 0x7f && l != 0) in main()
[all …]
H A Dsb_to_ucs4_generator.c40 unsigned int l, k; in main() local
87 l = strtol(num, (char **)NULL, 0); in main()
89 tbl[k].u8 = l; in main()
90 if (l < 0x80) in main()
92 else if (l < 0x800) in main()
94 else if (l < 0x10000) in main()
96 else if (l < 0x200000) in main()
98 else if (l < 0x4000000) in main()
105 l = tbl[i].u8; in main()
106 printf("/* 0x%02X */ { 0x%08X, %-3d},\n", i, l, tbl[i].size); in main()
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_sample.c86 decl_list *l; in write_sample_client() local
127 for (l = proc->args.decls; l != NULL; l = l->next) { in write_sample_client()
129 ptype(l->decl.prefix, l->decl.type, 1); in write_sample_client()
130 if (strcmp(l->decl.type, "string") == 1) in write_sample_client()
133 f_print(fout, "_%s;\n", l->decl.name); in write_sample_client()
182 for (l = proc->args.decls; l != NULL; l = l->next) { in write_sample_client()
184 f_print(fout, "_%s, ", l->decl.name); in write_sample_client()
300 list *l; in write_sample_clnt_main() local
318 for (l = defined; l != NULL; l = l->next) { in write_sample_clnt_main()
319 def = l->val; in write_sample_clnt_main()
/illumos-gate/usr/src/lib/fm/topo/modules/common/usb/
H A Dtopo_usb.c312 for (l = topo_list_next(&p->tup_lports); l != NULL; in topo_usb_lport_find()
313 l = topo_list_next(l)) { in topo_usb_lport_find()
901 for (l = topo_list_next(&p->tup_lports); l != NULL; in topo_usb_port_match_lport()
902 l = topo_list_next(l)) { in topo_usb_port_match_lport()
933 for (l = topo_list_next(&p->tup_lports); l != NULL; in topo_usb_port_match_controller()
934 l = topo_list_next(l)) { in topo_usb_port_match_controller()
1029 l = topo_list_next(l)) { in topo_usb_metadata_match()
1196 l = topo_list_next(l)) { in topo_usb_port_properties()
1269 l = topo_list_next(l)) { in topo_usb_port_properties()
1729 l = topo_list_next(l)) { in topo_usb_enum_device()
[all …]
/illumos-gate/usr/src/lib/libdwarf/common/
H A Dpro_log_extra_flag_strings.c61 Dwarf_Signed l = 0; in translatetosigned() local
68 l = l << 4; in translatetosigned()
84 l += 10; in translatetosigned()
88 l += 11; in translatetosigned()
92 l += 12; in translatetosigned()
96 l += 13; in translatetosigned()
100 l += 14; in translatetosigned()
104 l += 15; in translatetosigned()
116 *v = l; in translatetosigned()
125 l = l * 10; in translatetosigned()
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dtrestore.c62 if(l<0) in r_tree()
64 type = l; in r_tree()
180 register long l; in r_arg() local
189 if(--l > 0) in r_arg()
234 register long l; in r_redirect() local
303 register long l; in r_comlist() local
318 register long l; in r_switch() local
342 if(l == 0) in r_string()
345 if(--l > 0) in r_string()
347 if(sfread(in,ptr,(size_t)l)!=(size_t)l) in r_string()
[all …]
/illumos-gate/usr/src/lib/libldap5/include/ldap/
H A Dportable.h272 #define NSLDAPI_CTIME( c, b, l ) ctime( c ) argument
273 #define STRTOK( s1, s2, l ) strtok( s1, s2 ) argument
289 #define GETHOSTBYNAME( n, r, b, l, e ) \ argument
293 #define GETHOSTBYNAME( n, r, b, l, e ) nsldapi_compat_gethostbyname_r( n, r, (char *)&b, l, e ) argument
298 #define GETHOSTBYNAME( n, r, b, l, e ) gethostbyname_r( n, r, b, l, e ) argument
305 #define NSLDAPI_CTIME( c, b, l ) ctime( c ) argument
307 #define NSLDAPI_CTIME( c, b, l ) nsldapi_compat_ctime_r( c, b, l ) argument
312 #define NSLDAPI_CTIME( c, b, l ) (ctime_r( c, b, l ) ? NULL : b) argument
314 #define NSLDAPI_CTIME( c, b, l ) ctime_r( c, b, l ) argument
319 #define STRTOK( s1, s2, l ) strtok( s1, s2 ) argument
[all …]
/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dar.c130 register Memlist *l, * ol; in _elf_armem() local
141 for (l = elf->ed_memlist, ol = l; l; ol = l, l = l->m_next) in _elf_armem()
142 for (i = (Memident *)(l + 1); i < l->m_free; i++) in _elf_armem()
160 if ((l = (Memlist *)malloc(sizeof (Memlist) + in _elf_armem()
166 l->m_next = 0; in _elf_armem()
167 l->m_free = (Memident *)(l + 1); in _elf_armem()
168 l->m_end = (Memident *)((uintptr_t)l->m_free + in _elf_armem()
172 elf->ed_memlist = l; in _elf_armem()
174 ol->m_next = l; in _elf_armem()
175 ol = l; in _elf_armem()
/illumos-gate/usr/src/lib/crypt_modules/bsdmd5/
H A Dbsdmd5.c77 int sl, l, pl, i; in crypt_genhash_impl() local
166 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p, l, 4); p += 4; in crypt_genhash_impl()
167 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p, l, 4); p += 4; in crypt_genhash_impl()
168 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p, l, 4); p += 4; in crypt_genhash_impl()
169 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p, l, 4); p += 4; in crypt_genhash_impl()
170 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p, l, 4); p += 4; in crypt_genhash_impl()
171 l = final[11]; to64(p, l, 2); p += 2; in crypt_genhash_impl()
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derrmap.h30 OM_uint32 l; member
179 if ((*fn)(pair->l, pair->r, p) != 0) in mecherrmap_foreach()
185 mecherrmap_add (mecherrmap *m, OM_uint32 l, struct mecherror r) in mecherrmap_add() argument
196 assert ((*cmp_OM_uint32)(l, pair->l) != 0); in mecherrmap_add()
197 if ((*cmp_OM_uint32)(l, pair->l) == 0) in mecherrmap_add()
203 newpair.l = l; in mecherrmap_add()
216 mecherrmap_findleft (mecherrmap *m, OM_uint32 l) in mecherrmap_findleft() argument
223 if ((*cmp_OM_uint32)(l, pair->l) == 0) in mecherrmap_findleft()
238 return &pair->l; in mecherrmap_findright()
248 mecherrmap__printone (OM_uint32 l, struct mecherror r, void *p) in mecherrmap__printone() argument
[all …]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_db.c471 rfs4_link_t *l; in rfs4_dbe_destroy() local
486 ASSERT(l->next == NULL && l->prev == NULL); in rfs4_dbe_destroy()
601 rfs4_link_t *l; in rfs4_dbsearch() local
614 for (l = bp->dbk_head; l; l = l->next) { in rfs4_dbsearch()
730 rfs4_link_t *l; in rfs4_cpr_callb() local
758 for (l = bp->dbk_head; l; l = l->next) { in rfs4_cpr_callb()
792 for (l = bp->dbk_head; l; l = l->next) { in rfs4_dbe_walk()
827 for (l = bp->dbk_head; l; l = l->next) { in rfs4_dbe_reap()
854 while (l) { in rfs4_dbe_reap()
855 t = l; in rfs4_dbe_reap()
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dbuiltin-overflow.c10 rc += __builtin_add_overflow(l, i, &i); in test()
11 rc += __builtin_add_overflow(i, l, &i); in test()
12 rc += __builtin_add_overflow(i, i, &l); in test()
18 rc += __builtin_add_overflow_p(l, i, i); in test()
19 rc += __builtin_add_overflow_p(i, l, i); in test()
20 rc += __builtin_add_overflow_p(i, i, l); in test()
26 rc += __builtin_sub_overflow(l, i, &i); in test()
27 rc += __builtin_sub_overflow(i, l, &i); in test()
28 rc += __builtin_sub_overflow(i, i, &l); in test()
42 rc += __builtin_mul_overflow(l, i, &i); in test()
[all …]

12345678910>>...60