Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 1492) sorted by path

12345678910>>...60

/illumos-gate/exception_lists/
H A Dinterface_cmp269 # - The version tecla_l.5 (note the "el" (l) instead of a one (1) is
/illumos-gate/usr/src/boot/common/
H A Dgfx_fb.c1065 uint16_t blend, h, l; in alpha_blend() local
1080 l = blend & max_alpha; in alpha_blend()
1081 if (h + l >= max_alpha) in alpha_blend()
H A Dhelp.common118 ls [-l] [<path>]
123 The -l argument displays file sizes as well; the process of obtaining
H A Dload_elf.c43 #define COPYOUT(s, d, l) archsw.arch_copyout((vm_offset_t)(s), d, l) argument
H A Dload_elf_obj.c45 #define COPYOUT(s,d,l) archsw.arch_copyout((vm_offset_t)(s), d, l) argument
H A Dreloc_elf.c43 #define COPYOUT(s,d,l) archsw.arch_copyout((vm_offset_t)(s), d, l) argument
H A Dutil.c125 int c, l; in printf() local
133 l = 0; in printf()
138 l++; in printf()
154 switch (l) { in printf()
/illumos-gate/usr/src/boot/common/linenoise/
H A Dlinenoise.c442 l->oldpos = l->pos; in refreshMultiLine()
476 memmove(l->buf+l->pos+1,l->buf+l->pos,l->len-l->pos); in linenoiseEditInsert()
545 l->len = l->pos = strlen(l->buf); in linenoiseEditHistoryNext()
554 if (l->len > 0 && l->pos < l->len) { in linenoiseEditDelete()
555 memmove(l->buf+l->pos,l->buf+l->pos+1,l->len-l->pos-1); in linenoiseEditDelete()
566 memmove(l->buf+l->pos-1,l->buf+l->pos,l->len-l->pos); in linenoiseEditBackspace()
581 while (l->pos > 0 && l->buf[l->pos-1] == ' ') in linenoiseEditDeletePrevWord()
583 while (l->pos > 0 && l->buf[l->pos-1] != ' ') in linenoiseEditDeletePrevWord()
586 memmove(l->buf+l->pos,l->buf+old_pos,l->len-old_pos+1); in linenoiseEditDeletePrevWord()
664 if (l.pos > 0 && l.pos < l.len) { in linenoiseEdit()
[all …]
/illumos-gate/usr/src/boot/efi/include/
H A Defidevp.h50 #define SetDevicePathNodeLength(a, l) { \ argument
51 (a)->Length[0] = (UINT8)(l); \
52 (a)->Length[1] = (UINT8)((l) >> 8); \
/illumos-gate/usr/src/boot/forth/
H A Dscreen.4th83 : cursor-invisible ( -- ) [char] l ;
H A Dsupport.4th1456 : concat { a1 l1 a2 l2 -- a' l' }
/illumos-gate/usr/src/boot/libsa/
H A Dbootparam.c376 n_long l; /* network order */ in xdr_inaddr_encode() member
384 uia.l = ia.s_addr; in xdr_inaddr_encode()
407 n_long l; /* network order */ in xdr_inaddr_decode() member
431 ia->s_addr = uia.l; in xdr_inaddr_decode()
H A Dpkgfs.c538 l = 0; in pkg_atol8()
541 if (l>limit || (l == limit && digit > last_digit_limit)) { in pkg_atol8()
545 l = (l * base) + digit; in pkg_atol8()
548 return (sign < 0) ? -l : l; in pkg_atol8()
570 l = (int64_t)-1; in pkg_atol256()
572 l = 0; in pkg_atol256()
573 l = (l << 6) | (0x3f & *p++); in pkg_atol256()
575 if (l > upper_limit) { in pkg_atol256()
579 l = INT64_MIN; in pkg_atol256()
582 l = (l << 8) | (0xff & (int64_t)*p++); in pkg_atol256()
[all …]
H A Dtftp.c297 int l; in tftp_makereq() local
314 l = strlen(h->path); in tftp_makereq()
316 if (l > FNAME_SIZE - (sizeof (TFTP_PREPEND_PATH) - 1)) in tftp_makereq()
321 if (l > FNAME_SIZE) in tftp_makereq()
324 bcopy(h->path, wtail, l + 1); in tftp_makereq()
325 wtail += l + 1; in tftp_makereq()
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dzfsimpl.c1565 if (l < VDEV_LABELS / 2) in vdev_label_offset()
1716 for (int l = 0; l < VDEV_LABELS; l++) { in vdev_write_bootenv_impl() local
1814 for (int l = 0; l < VDEV_LABELS; l++) { in vdev_read_bootenv() local
1815 rv = vdev_label_read(vdev, l, be, in vdev_read_bootenv()
1944 for (int l = 0; l < VDEV_LABELS; l++) { in vdev_label_read_config() local
1945 if (vdev_label_read(vd, l, label, in vdev_label_read_config()
1999 for (int l = 0; l < VDEV_LABELS; l++) { in vdev_uberblock_load() local
2001 if (vdev_label_read(vd, l, buf, in vdev_uberblock_load()
2662 #define LEAF_HASH(l, h) \ argument
2665 (64 - ZAP_LEAF_HASH_SHIFT(l) - (l)->l_phys->l_hdr.lh_prefix_len)))
[all …]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfsimpl.h1470 #define ZAP_LEAF_NUMCHUNKS(l) \ argument
1471 (((1<<(l)->l_bs) - 2*ZAP_LEAF_HASH_NUMENTRIES(l)) / \
1498 #define ZAP_LEAF_HASH_SHIFT(l) ((l)->l_bs - 5) argument
1499 #define ZAP_LEAF_HASH_NUMENTRIES(l) (1 << ZAP_LEAF_HASH_SHIFT(l)) argument
1506 #define ZAP_LEAF_CHUNK(l, idx) \ argument
1508 ((l)->l_phys->l_hash + ZAP_LEAF_HASH_NUMENTRIES(l)))[idx]
1509 #define ZAP_LEAF_ENTRY(l, idx) (&ZAP_LEAF_CHUNK(l, idx).l_entry) argument
/illumos-gate/usr/src/boot/sys/sys/
H A Dmodule.h172 #define MODULE_PNP_INFO(d, b, unique, t, l, n) \ argument
177 .entry_len = l, \
H A Dsocket.h522 #define CMSG_SPACE(l) (_ALIGN(sizeof(struct cmsghdr)) + _ALIGN(l)) argument
523 #define CMSG_LEN(l) (_ALIGN(sizeof(struct cmsghdr)) + (l)) argument
/illumos-gate/usr/src/boot/sys/x86/include/
H A Dsegments.h92 #define USD_SETLIMIT(sd, l) (sd)->sd_lolimit = (l); \ argument
93 (sd)->sd_hilimit = ((l) >> 16);
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A DAppcertUtil.pm1000 if (! -l $file) {
H A Dsymcheck.pl526 my ($l, $a, $s);
531 ($l, $a, $s) = split(/\|/, $lib_abi_sym);
539 next if (! exists($model_loaded{"$l|$a"}));
540 next if ($model_loaded{"$l|$a"} eq '__FAILED__');
550 $line = "$path_to_object|$a|$from|$l|$class|$s" . "\n";
/illumos-gate/usr/src/cmd/abi/spectrans/spec2map/
H A Dbucket.c316 bucket_t *l, *b; in sort_buckets() local
319 for (l = first_list(); l != NULL; l = next_list()) { in sort_buckets()
320 errlog(VERBOSE, "l-bucket: %s", l->b_name); in sort_buckets()
321 for (b = first_from_list(l); b != NULL; b = next_from_list()) { in sort_buckets()
445 bucket_t *l, *b; in print_all_buckets() local
449 for (i = 0, l = first_list(); l != NULL; l = next_list(), ++i) { in print_all_buckets()
451 for (j = 0, b = first_from_list(l); in print_all_buckets()
590 first_from_list(const bucket_t *l) in first_from_list() argument
592 return (Bp = (bucket_t *)l); in first_from_list()
H A Dxlator.c855 bucket_t *l; /* List of buckets. */ in writemapfile() local
863 for (l = first_list(); l != NULL; l = next_list()) { in writemapfile()
865 for (b = first_from_list(l); b != NULL; b = next_from_list()) { in writemapfile()
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dprintfuncs.c55 int l, n; in generate_printf() local
60 l = (int)sizeof (arglist); in generate_printf()
78 n = prepare_printf_part(e, name, p, l); in generate_printf()
79 l -= n; in generate_printf()
92 (void) prepare_printf_part(f, "_return", p, l); in generate_printf()
/illumos-gate/usr/src/cmd/addbadsec/
H A Daddbadsec.c91 int l; in main() local
232 l = strlen(devname); in main()
235 alts_name = (char *)malloc(l + p); in main()
237 alts_name[l - 2] = 's'; in main()
238 (void) strcpy(&alts_name[l - 1], numbuf); in main()
239 alts_name[l + p - 1] = '\0'; in main()

12345678910>>...60