/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | moddiv.c | 79 UWtype b, bm; in __udivmoddi4() local 140 count_leading_zeros (bm, d1); in __udivmoddi4() 141 if (bm == 0) in __udivmoddi4() 173 b = W_TYPE_SIZE - bm; in __udivmoddi4() 175 d1 = (d1 << bm) | (d0 >> b); in __udivmoddi4() 176 d0 = d0 << bm; in __udivmoddi4() 178 n1 = (n1 << bm) | (n0 >> b); in __udivmoddi4() 179 n0 = n0 << bm; in __udivmoddi4() 196 rr.s.low = (n1 << b) | (n0 >> bm); in __udivmoddi4() 197 rr.s.high = n1 >> bm; in __udivmoddi4()
|
/illumos-gate/usr/src/cmd/audio/utilities/ |
H A D | zmalloc.c | 60 struct buffer_map *bm; in insert_bm() local 62 bm = (struct buffer_map *)malloc(sizeof (struct buffer_map)); in insert_bm() 63 bm->bm_buffer = buf; in insert_bm() 64 bm->bm_size = size; in insert_bm() 65 bm->bm_next = bm_list; in insert_bm() 67 bm_list = bm; in insert_bm()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/ |
H A D | regrexec.c | 64 mid = (len < e->re.bm.right) ? 0 : (len - e->re.bm.right); in regrexec() 65 skip = e->re.bm.skip; in regrexec() 66 fail = e->re.bm.fail; in regrexec() 67 mask = e->re.bm.mask; in regrexec() 68 complete = e->re.bm.complete && !nmatch; in regrexec() 69 exactlen = e->re.bm.size; in regrexec() 70 leftlen = e->re.bm.left + exactlen; in regrexec() 71 rightlen = exactlen + e->re.bm.right; in regrexec()
|
H A D | regcomp.c | 2957 a->re.bm.mask[m][c] |= b; in bmstr() 2958 if (z == HIT || !a->re.bm.skip[c] || a->re.bm.skip[c] > z && a->re.bm.skip[c] < HIT) in bmstr() 2959 a->re.bm.skip[c] = z; in bmstr() 2968 a->re.bm.mask[m][c] |= b; in bmstr() 2969 if (z == HIT || !a->re.bm.skip[c] || a->re.bm.skip[c] > z && a->re.bm.skip[c] < HIT) in bmstr() 2970 a->re.bm.skip[c] = z; in bmstr() 2991 a->re.bm.complete = 0; in bmtrie() 2994 a->re.bm.complete = 0; in bmtrie() 3070 a->re.bm.size = n; in special() 3071 a->re.bm.back = (y == e || y == e->re.group.expr.rex) ? (m - n) : -1; in special() [all …]
|
H A D | regstat.c | 40 p->env->stats.re_record = p->env->rex->re.bm.size; in regstat() 51 …p->env->stats.re_record = (p && p->env && p->env->rex->type == REX_BM) ? p->env->rex->re.bm.size :… in regstat()
|
H A D | regnexec.c | 1899 if (len < e->re.bm.right) in regnexec() 1901 …DEBUG_TEST(0x0080,(sfprintf(sfstdout, "AHA#%04d REG_NOMATCH %d %d\n", __LINE__, len, e->re.bm.righ… in regnexec() 1907 register size_t index = e->re.bm.left + e->re.bm.size; in regnexec() 1908 register size_t mid = len - e->re.bm.right; in regnexec() 1909 register size_t* skip = e->re.bm.skip; in regnexec() 1910 register size_t* fail = e->re.bm.fail; in regnexec() 1911 register Bm_mask_t** mask = e->re.bm.mask; in regnexec() 1915 …=%d right=%d left=%d size=%d %d %d\n", __LINE__, len, e->re.bm.right, e->re.bm.left, e->re.bm.size… in regnexec() 1925 m = mask[n = e->re.bm.size - 1][buf[index]]; in regnexec() 1930 if (e->re.bm.back < 0) in regnexec() [all …]
|
H A D | reglib.h | 508 Bm_t bm; /* bm */ member
|
/illumos-gate/usr/src/cmd/mdb/intel/modules/amd_opteron/ |
H A D | ao.c | 59 const mdb_bitmask_t *bm; in ao_nbcfg_describe() local 66 for (nbits = 0, bm = ao_nbcfg_bits, i = 0; in ao_nbcfg_describe() 67 i < sizeof (ao_nbcfg_bits) / sizeof (mdb_bitmask_t); i++, bm++) { in ao_nbcfg_describe() 68 if (!(val & bm->bm_bits)) in ao_nbcfg_describe() 71 mdb_printf("\t0x%08x %s\n", bm->bm_bits, bm->bm_name); in ao_nbcfg_describe() 73 val &= ~bm->bm_bits; in ao_nbcfg_describe()
|
/illumos-gate/usr/src/lib/libresolv2/include/isc/ |
H A D | eventlib.h | 66 #define EV_BYTEMASK_SET(bm, b) \ argument 67 ((bm).mask[EV_BYTEMASK_BYTE(b)] |= EV_BYTEMASK_MASK(b)) 68 #define EV_BYTEMASK_CLR(bm, b) \ argument 69 ((bm).mask[EV_BYTEMASK_BYTE(b)] &= ~EV_BYTEMASK_MASK(b)) 70 #define EV_BYTEMASK_TST(bm, b) \ argument 71 ((bm).mask[EV_BYTEMASK_BYTE(b)] & EV_BYTEMASK_MASK(b))
|
/illumos-gate/usr/src/cmd/fm/schemes/mem/ |
H A D | mem.c | 543 mem_bank_map_t *bm, *cm; in fmd_fmri_fini() local 554 for (bm = mem.mem_bank; bm != NULL; bm = cm) { in fmd_fmri_fini() 555 cm = bm->bm_next; in fmd_fmri_fini() 556 fmd_fmri_free(bm, sizeof (mem_bank_map_t)); in fmd_fmri_fini()
|
/illumos-gate/usr/src/uts/i86pc/os/ |
H A D | fakebop.c | 101 struct bsys_mem bm; variable 1510 struct boot_modules *bm, *rdbm, *benv = NULL; in build_boot_properties() local 1529 bm = xbp->bi_modules; in build_boot_properties() 1532 if (bm[i].bm_type == BMT_ROOTFS) { in build_boot_properties() 1533 rdbm = &bm[i]; in build_boot_properties() 1536 if (bm[i].bm_type == BMT_HASH || in build_boot_properties() 1537 bm[i].bm_type == BMT_FONT || in build_boot_properties() 1538 bm[i].bm_name == NULL) in build_boot_properties() 1541 if (bm[i].bm_type == BMT_ENV) { in build_boot_properties() 1543 benv = &bm[i]; in build_boot_properties() [all …]
|
/illumos-gate/usr/src/uts/intel/io/mc-amd/ |
H A D | mcamd_drv.c | 1536 const mc_bind_map_t *bm; in mc_attach() local 1559 for (bm = mc_bind_map; bm->bm_bindnm != NULL; bm++) { in mc_attach() 1560 if (strcmp(bindnm, bm->bm_bindnm) == 0) { in mc_attach() 1561 func = bm->bm_func; in mc_attach() 1566 if (bm->bm_bindnm == NULL) in mc_attach() 1634 dip, "model", (char *)bm->bm_model); in mc_attach() 1639 if (bm->bm_mkprops != NULL && in mc_attach() 1640 mc_pcicfg_setup(mc, bm->bm_func, &cfghdl) == DDI_SUCCESS) { in mc_attach() 1641 bm->bm_mkprops(cfghdl, mc); in mc_attach()
|
/illumos-gate/usr/src/cmd/bhyvectl/ |
H A D | bhyvectl.c | 1619 uint64_t eptp, bm, addr, u64, pteval[4], *pte, info[2]; in main() local 2021 VMCS_EXCEPTION_BITMAP, &bm); in main() 2025 4, &bm); in main() 2027 printf("exception_bitmap[%d]\t%#lx\n", vcpuid, bm); in main() 2033 &bm); in main() 2035 printf("io_bitmap_a[%d]\t%#lx\n", vcpuid, bm); in main() 2037 &bm); in main() 2039 printf("io_bitmap_b[%d]\t%#lx\n", vcpuid, bm); in main() 2042 VMCB_OFF_IO_PERM, 8, &bm); in main() 2044 printf("io_bitmap[%d]\t%#lx\n", vcpuid, bm); in main()
|
/illumos-gate/usr/src/lib/libresolv2/common/resolv/ |
H A D | res_mkupdate.c | 330 char bm[MAXPORT/8]; in res_nmkupdate() local 349 bm[i] = 0; in res_nmkupdate() 356 bm[n/8] |= (0x80>>(n%8)); in res_nmkupdate() 364 memcpy(cp, bm, maxbm); in res_nmkupdate()
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | dsl_bookmark.c | 411 zfs_bookmark_phys_t bm; in dsl_bookmark_destroy_check() local 422 error = dsl_dataset_bmark_lookup(ds, shortname, &bm); in dsl_bookmark_destroy_check()
|
H A D | zio.c | 3148 zbookmark_phys_t *bm = &zio->io_bookmark; in zio_dva_throttle() local 3156 zio->io_allocator = cityhash4(bm->zb_objset, bm->zb_object, in zio_dva_throttle() 3157 bm->zb_level, bm->zb_blkid >> 20) % spa->spa_alloc_count; in zio_dva_throttle()
|
/illumos-gate/usr/src/boot/common/ |
H A D | gfx_fb.c | 574 uint8_t rm, rp, gm, gp, bm, bp; in gfxfb_blt_video_to_buffer() local 602 bm = (1 << gfx_fb.u.fb2.framebuffer_blue_mask_size) - 1; in gfxfb_blt_video_to_buffer() 652 p->Blue = (c >> bp) & bm; in gfxfb_blt_video_to_buffer() 676 uint8_t rm, rp, gm, gp, bm, bp; in gfxfb_blt_buffer_to_video() local 704 bm = (1 << gfx_fb.u.fb2.framebuffer_blue_mask_size) - 1; in gfxfb_blt_buffer_to_video() 737 (p->Blue & bm) << bp; in gfxfb_blt_buffer_to_video()
|
/illumos-gate/usr/src/uts/common/fs/nfs/ |
H A D | nfs4_xdr.c | 1570 bitmap4 bm; in xdr_get_bitmap4_inline() local 1578 IXDR_GET_HYPER(ptr, bm); in xdr_get_bitmap4_inline() 1580 return (bm); in xdr_get_bitmap4_inline() 1584 bm = IXDR_GET_U_INT32(ptr); in xdr_get_bitmap4_inline() 1587 return (bm); in xdr_get_bitmap4_inline() 1589 *((uint32_t *)&bm) |= IXDR_GET_U_INT32(ptr); in xdr_get_bitmap4_inline() 1592 return (bm); in xdr_get_bitmap4_inline() 1596 return (bm); in xdr_get_bitmap4_inline() 1598 *((uint32_t *)&bm) = IXDR_GET_U_INT32(ptr); in xdr_get_bitmap4_inline() 1601 return (bm); in xdr_get_bitmap4_inline() [all …]
|
/illumos-gate/usr/src/test/util-tests/tests/awk/examples/out/ |
H A D | t.gsub4 | 279 …)(*)(:)(0)(:)(0)(:)(S)(u)(p)(e)(r)-U(s)(e)(r) (r)(u)nning (t)(c)(s)(h) [(c)bm](:)/(:)/bin/(t)(c)(s… 280 …(&) (&)(&)(&)(&)(&)(&)nning (&)(&)(&)(&)(&)(&)(&)(&)(&)(&)(&)(&) [(&)(&)(&)bm](&)(&)(&)(&)(&)(&)(&…
|
/illumos-gate/usr/src/cmd/th_tools/ |
H A D | th_define.c | 428 str_to_bm(char *optarg, coding_t *c, uint_t *bm) in str_to_bm() argument 440 *bm |= c->code; in str_to_bm() 449 msg(2, "str_to_bm: done 0x%x\n", *bm); in str_to_bm()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/ |
H A D | RELEASE | 219 09-12-11 regex/regcomp.c: bm complete=0 if REX_END 723 03-08-25 regex: add REG_FIRST, optimize bm
|
/illumos-gate/usr/src/pkg/manifests/ |
H A D | system-data-terminfo.p5m | 2254 hardlink path=usr/share/lib/terminfo/v/vt100-bm target=../n/nwp512 2255 hardlink path=usr/share/lib/terminfo/v/vt100-bm-o target=../n/nwp512-o
|
/illumos-gate/usr/src/data/terminfo/ |
H A D | termcap.src | 4795 nwp512|news|nwp514|news40|vt100-bm|old sony vt100 emulator 40 lines:\ 4801 # (nwp512-a: this had :TY=ascii: and the alias vt100-bm --esr) 4807 nwp512-o|nwp514-o|news-o|news40-o|vt100-bm-o|sony vt100 emulator 40 lines:\ 4813 # (nwp513: this had :DE=^H: and the alias vt100-bm --esr) 4821 # also the alias vt100-bm. 4828 # (nwp513-o: had :DE=^H:, I think that's :bs:; also the alias vt100-bm --esr)
|
H A D | terminfo.src | 5459 nwp512|news|nwp514|news40|vt100-bm|old sony vt100 emulator 40 lines, 5465 # (nwp512-a: this had :TY=ascii: and the alias vt100-bm --esr) 5472 nwp512-o|nwp514-o|news-o|news40-o|vt100-bm-o|sony vt100 emulator 40 lines, 5478 # (nwp513: this had :DE=^H: and the alias vt100-bm --esr) 5486 # also the alias vt100-bm. 5493 # (nwp513-o: had :DE=^H:, I think that's <OTbs>; also the alias vt100-bm --esr)
|