/titanic_41/usr/src/cmd/cdrw/ |
H A D | options.c | 67 uchar_t bmap = 0; in compare_options_mask() local 72 bmap = msk->bitmap[i] | specified->bitmap[i]; in compare_options_mask() 73 bmap ^= msk->bitmap[i]; in compare_options_mask() 74 if (bmap) in compare_options_mask() 83 if (bmap & bitlocation[j]) in compare_options_mask()
|
/titanic_41/usr/src/uts/common/avs/ns/rdc/ |
H A D | rdc_bitmap.h | 68 #define BMAP_BIT_SET(bmap, ind) ((bmap)[IND_BYTE(ind)] |= IND_BIT(ind)) argument 69 #define BMAP_BIT_CLR(bmap, ind) ((bmap)[IND_BYTE(ind)] &= ~IND_BIT(ind)) argument 70 #define BMAP_BIT_ISSET(bmap, ind) \ argument 71 ((bmap)[IND_BYTE(ind)] & IND_BIT(ind))
|
H A D | rdc_bitmap.c | 2558 unsigned char *bmap = (unsigned char *)krdc->bitmap_ref; in rdc_bmap_ref_byte_set() local 2561 bmap[ind]++; in rdc_bmap_ref_byte_set() 2567 unsigned char *bmap = (unsigned char *)krdc->bitmap_ref; in rdc_bmap_ref_byte_clr() local 2570 bmap[ind]--; in rdc_bmap_ref_byte_clr() 2576 unsigned char *bmap = (unsigned char *)krdc->bitmap_ref; in rdc_bmap_ref_byte_isset() local 2579 return ((unsigned int)(bmap[ind])); in rdc_bmap_ref_byte_isset() 2585 unsigned char *bmap = (unsigned char *)krdc->bitmap_ref; in rdc_bmap_ref_byte_force() local 2588 bmap[ind] = (unsigned char) val; in rdc_bmap_ref_byte_force() 2611 unsigned int *bmap = (unsigned int *)krdc->bitmap_ref; in rdc_bmap_ref_int_set() local 2614 bmap[ind]++; in rdc_bmap_ref_int_set() [all …]
|
H A D | rdc_prot.x | 153 struct bmap { struct
|
H A D | rdc_svc.c | 1271 struct bmap b; in r_net_bmap()
|
H A D | rdc_clnt.c | 225 struct bmap b; in rdc_net_getbmap()
|
/titanic_41/usr/src/uts/common/avs/ns/sdbc/ |
H A D | sd_pcu.c | 304 sdbc_pwf_bitmap_t *bmap; in add_bitmap_entry() local 308 bmap = (sdbc_pwf_bitmap_t *)list->bitmap_tail->cc_data; in add_bitmap_entry() 321 bmap->bitmaps[i].fba_num = fba_num; in add_bitmap_entry() 322 bmap->bitmaps[i].dirty = bits; in add_bitmap_entry() 323 bmap->bitmaps[i].errs = (char)any_fail; in add_bitmap_entry() 513 struct bitmap bmap; in _sdbc_power_flush() local 697 start_bitmap_list(&bmap, hdr->bmap_size); in _sdbc_power_flush() 702 &blkno, 0, &bmap); in _sdbc_power_flush() 709 &blkno, 1, &bmap); in _sdbc_power_flush() 720 &blkno, 0, &bmap); in _sdbc_power_flush() [all …]
|
H A D | sd_bcache.h | 795 #define SDBC_IS_FRAGMENTED(bmap) (!_sd_contig_bmap[(bmap)]) argument 796 #define SDBC_IS_CONTIGUOUS(bmap) (_sd_contig_bmap[(bmap)]) argument 843 #define _SD_BIT_ISSET(bmap, bit) ((bmap & (1 << bit)) ? 1 : 0) argument 844 #define _SD_BMAP_ISFULL(bmap) (bmap == BLK_FBA_BITS) argument
|
/titanic_41/usr/src/uts/common/sys/ib/adapters/hermon/ |
H A D | hermon_misc.h | 275 #define HERMON_BMAP_BIT_SET(bmap, ind) \ argument 276 ((bmap)[HERMON_IND_BYTE(ind)] |= HERMON_IND_BIT(ind)) 277 #define HERMON_BMAP_BIT_CLR(bmap, ind) \ argument 278 ((bmap)[HERMON_IND_BYTE(ind)] &= ~HERMON_IND_BIT(ind)) 279 #define HERMON_BMAP_BIT_ISSET(bmap, ind) \ argument 280 ((bmap)[HERMON_IND_BYTE(ind)] & HERMON_IND_BIT(ind))
|
/titanic_41/usr/src/uts/common/avs/ns/dsw/ |
H A D | dsw_dev.h | 70 #define DSW_BIT_CLR(bmap, bit) (bmap &= (char)~(1 << bit)) argument 71 #define DSW_BIT_SET(bmap, bit) (bmap |= (char)(1 << bit)) argument 72 #define DSW_BIT_ISSET(bmap, bit) ((bmap & (1 << bit)) != 0) argument
|
/titanic_41/usr/src/psm/stand/bootblks/ufs/common/ |
H A D | ufs.fth | 172 : (bmap) ( lblk# -- ) 209 : bmap ( lblk# -- fs-blk# ) 211 dup (bmap) ( lblk# ) 218 bmap ?dup if 226 bmap ?dup if 244 dir-buf bsize dir-blk @ bmap ( adr len fs-blk# )
|
/titanic_41/usr/src/cmd/fs.d/ufs/ncheck/ |
H A D | ncheck.c | 123 daddr_t bmap(daddr_t); 506 d = bmap(lbn); in dreaddir() 610 bmap(daddr_t i) in bmap() function
|
/titanic_41/usr/src/cmd/mdb/common/modules/rdc/ |
H A D | rdc.c | 1132 unsigned char *bmap; in bmap_bit_isset() local 1152 bmap = mdb_zalloc(bmsize, UM_GC); in bmap_bit_isset() 1153 if (mdb_vread(bmap, bmsize, (uintptr_t)bmaddr) != bmsize) { in bmap_bit_isset() 1160 i = BMAP_BIT_ISSET(bmap, st); in bmap_bit_isset() 1162 bmap[IND_BYTE(st)] & 0xff); in bmap_bit_isset()
|
/titanic_41/usr/src/cmd/fs.d/ufs/ff/ |
H A D | ff.c | 142 diskaddr_t bmap(diskaddr_t i); 569 d = bmap(lbn); in dreaddir() 669 bmap(diskaddr_t i) in bmap() function
|
/titanic_41/usr/src/uts/common/io/vuidmice/ |
H A D | vuidps2.c | 188 static int bmap[3] = {1, 3, 2}; in sendButtonEvent() local 196 VUID_PUTNEXT(qp, (uchar_t)BUT(bmap[b]), FE_PAIR_NONE, 0, in sendButtonEvent()
|
/titanic_41/usr/src/cmd/fs.d/ufs/fsdb/ |
H A D | fsdb.c | 293 static long bmap(); 1411 (bmap((long)value) << FRGSHIFT)) == 0) in main() 2469 if ((addr = ((u_offset_t)bmap(block++) << in follow_path() 3061 if ((addr = (bmap((long)i++) << FRGSHIFT)) == 0) in getdirslot() 3184 addr = bmap(lblkno(fs, cur_bytes)) << FRGSHIFT; in syncshadowscan() 4339 (keep_on && taddr < (bmap(cur_block) << FRGSHIFT))) { in check_addr() 4351 if ((addr = bmap(cur_block) << FRGSHIFT) == 0) { in check_addr() 4366 if ((addr = bmap(cur_block) << FRGSHIFT) == 0) { in check_addr() 4792 bmap(long bn) in bmap() function
|
/titanic_41/usr/src/uts/common/fs/ufs/ |
H A D | ufs_alloc.c | 631 int cg, bmap, bbase; in free() local 704 bmap = blkmap(fs, blksfree, bbase); in free() 705 fragacct(fs, bmap, cgp->cg_frsum, -1); in free() 738 bmap = blkmap(fs, blksfree, bbase); in free() 739 fragacct(fs, bmap, cgp->cg_frsum, 1); in free()
|
/titanic_41/usr/src/cmd/avs/dsw/ |
H A D | iiadm.c | 94 #define SD_BIT_CLR(bmap, bit) (bmap &= ~(1 << bit)) argument 95 #define SD_BIT_ISSET(bmap, bit) ((bmap & (1 << bit)) != 0) argument
|