Home
last modified time | relevance | path

Searched refs:eb (Results 1 – 25 of 57) sorted by relevance

123

/titanic_50/usr/src/lib/libc/i386/fp/
H A D_X_cplx_div_ix.c101 int eb, ec, ed, ew, i, j; in _X_cplx_div_ix() local
113 eb = bb.i[2] & 0x7fff; in _X_cplx_div_ix()
147 if (eb >= 0x7fff) { /* a is inf or nan */ in _X_cplx_div_ix()
162 eb = (eb - 0x3800) >> 12; in _X_cplx_div_ix()
163 b = (b * scl[eb + 4].e) / r; in _X_cplx_div_ix()
164 eb -= (ew + ew); in _X_cplx_div_ix()
168 ec += eb; in _X_cplx_div_ix()
172 ed += eb; in _X_cplx_div_ix()
H A D_X_cplx_div.c91 int ea, eb, ec, ed, ez, ew, es, i, j; in _X_cplx_div() local
108 eb = bb.i[2] & 0x7fff; in _X_cplx_div()
109 ez = (ea > eb)? ea : eb; in _X_cplx_div()
/titanic_50/usr/src/cmd/sendmail/src/
H A Derr.c818 fmtmsg(eb, to, num, enhsc, eno, fmt, ap) in fmtmsg() argument
819 register char *eb; in fmtmsg()
845 (void) sm_snprintf(eb, spaceleft, "4%2.2s%c", num + 1, del);
848 (void) sm_snprintf(eb, spaceleft, "%3.3s%c", num, del);
849 eb += 4;
856 (void) sm_strlcpy(eb, fmt, l + 1);
857 eb += l;
864 (void) sm_strlcpy(eb, enhsc, l + 1);
865 eb[l] = ' ';
866 eb[++l] = '\0';
[all …]
/titanic_50/usr/src/uts/common/io/bnxe/577xx/hsi/mcp/
H A Dshmem.h604 #define SHMEM_ARRAY_MASK(eb) ((1<<(eb))-1) argument
605 #define SHMEM_ARRAY_ENTRY(i, eb) ((i)/(32/(eb))) argument
631 #define SHMEM_ARRAY_BITPOS(i, eb, fb) \ argument
632 ((((32/(fb)) - 1 - ((i)/((fb)/(eb))) % (32/(fb))) * (fb)) + \
633 (((i)%((fb)/(eb))) * (eb)))
635 #define SHMEM_ARRAY_GET(a, i, eb, fb) \ argument
636 ((a[SHMEM_ARRAY_ENTRY(i, eb)] >> SHMEM_ARRAY_BITPOS(i, eb, fb)) & \
637 SHMEM_ARRAY_MASK(eb))
639 #define SHMEM_ARRAY_SET(a, i, eb, fb, val) \ argument
641 a[SHMEM_ARRAY_ENTRY(i, eb)] &= ~(SHMEM_ARRAY_MASK(eb) << \
[all …]
/titanic_50/usr/src/stand/lib/fs/ufs/
H A Dlufsboot.c224 static extent_block_t *eb = (extent_block_t *)NULL; variable
388 for (i = 0; i < eb->nextents; i++) { in lufs_read_log()
389 if (lblk >= eb->extents[i].lbno && in lufs_read_log()
390 lblk < eb->extents[i].lbno + in lufs_read_log()
391 eb->extents[i].nbno) { in lufs_read_log()
392 pblk = lblk - eb->extents[i].lbno + in lufs_read_log()
393 eb->extents[i].pbno; in lufs_read_log()
504 eb = (extent_block_t *)bkmem_zalloc(sb->fs_bsize); in lufs_boot_init()
519 logfp->fi_memp = (caddr_t)eb; in lufs_boot_init()
521 if (diskread(logfp) || eb->type != LUFS_EXTENTS) { in lufs_boot_init()
[all …]
/titanic_50/usr/src/test/zfs-tests/tests/functional/largest_pool/
H A Dlargest_pool.cfg33 export VOLSIZES=${VOLSIZES-"2pb 5pb 10pb 2eb 5eb 8eb 9eb"}
/titanic_50/usr/src/cmd/sgs/rtld/amd64/
H A Dboot.s106 / use esi as a pointer to &eb[0]
136 / arg1 - address of &eb[0]
147 / _setup(&eb[0], _DYNAMIC)
/titanic_50/usr/src/cmd/sgs/rtld/i386/
H A Dboot.s108 movl %esp,%esi / use esi as a pointer to &eb[0]
129 pushl %esi / push &eb[0]
131 call _setup@PLT / _setup(&eb[0], _DYNAMIC)
/titanic_50/usr/src/lib/libc/sparc/crt/
H A D_rtboot.s94 ! Set up pointers to __rtld parameters. eb[], strings[] and funcs[] are on
98 add %sp, MINFRAME, %o0 ! &eb[0]
100 add %o0, (EB_MAX * 8), %o1 ! &strings[0] == &eb[EB_MAX]
149 mov %o0, %l0 ! and save &eb[0] for later
151 ! On return, jump to the function in %o0, passing &eb[0] in %o0
/titanic_50/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dglob.c357 Char *b, *eb; local
363 eb = &patbuf[patbuf_len - 1];
365 h < (char *)eb && *p && *p != SLASH; *h++ = *p++)
371 if (h == (char *)eb)
400 for (b = patbuf; b < eb && *h; *b++ = *h++)
404 while (b < eb && (*b++ = *p++) != EOS)
/titanic_50/usr/src/cmd/sgs/rtld.4.x/
H A Drtld.4.x.c201 Elf32_Boot eb[EB_MAX]; variable
320 ebp = eb;
565 (*((void (*)())(ehdr->e_entry + faddr + sizeof (long))))(eb);
/titanic_50/usr/src/lib/libipmi/common/
H A Dipmi_entity.c709 const ipmi_entity_t *eb = b; in ipmi_entity_hash_compare() local
711 if (ea->ie_type == eb->ie_type && in ipmi_entity_hash_compare()
712 ea->ie_instance == eb->ie_instance) in ipmi_entity_hash_compare()
/titanic_50/usr/src/grub/grub-0.97/stage2/
H A Dgunzip.c509 uch *eb = endbuf; in get_byte() local
511 *eb++ = inbuf[pos - old_filepos]; in get_byte()
513 grub_read(eb, filemax - filepos); in get_byte()
/titanic_50/usr/src/cmd/eqn/eqnchar.d/
H A Diso27 | e8 � | e9 � | ea � | eb � | ec � | ed � | ee � | ef � |
/titanic_50/usr/src/lib/libc/port/regex/
H A Dglob.c435 wcat_t *b, *eb, *q; in globtilde() local
444 eb = &patbuf[patbuf_len - 1]; in globtilde()
446 q < eb && p->w_wc != EOS && p->w_wc != SLASH; *q++ = *p++) in globtilde()
479 for (b = patbuf; b < eb && *h != EOS; b++) { in globtilde()
493 while (b < eb && (*b++ = *p++).w_wc != EOS) in globtilde()
/titanic_50/usr/src/pkg/manifests/
H A Ddriver-network-e1000g.mf129 alias=pci8086,10eb \
193 alias=pciex8086,10eb \
/titanic_50/usr/src/cmd/sgs/rtld/sparc/
H A Dboot.s144 add %sp, SA(MINFRAME), %o0 ! &eb[0] == %sp + frame size
/titanic_50/usr/src/test/zfs-tests/include/
H A Ddefault.cfg129 export BIGVOLSIZE=1eb
/titanic_50/usr/src/grub/grub-0.97/
H A Dconfig.sub263 | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
1089 sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele)
/titanic_50/usr/src/uts/common/pcmcia/sys/
H A Dcis_handlers.h380 uint32_t eb; /* size of DCE to DCE buffer */ member
/titanic_50/usr/src/lib/iconv_modules/utf-8/common/binarytables/srcs/
H A DUTF-8+CP1256.src217 0xC3AB 0xEB // U+00eb
H A DUTF-8+CP1258.src249 0xC3AB 0xEB // U+00eb
H A DUTF-8+CP1250.src220 0xC3AB 0xEB // U+00eb
H A DUTF-8+CP852.src214 0xC3AB 0x89 // U+00eb
H A DUTF-8+IBM-852.src213 0xC3AB 0x89 // U+00eb

123