Home
last modified time | relevance | path

Searched refs:bi_bitmap_ops (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/uts/common/avs/ns/dsw/
H A Ddsw_dev.h370 struct _ii_bmp_ops_s *bi_bitmap_ops; /* Functions for bitmap ops */ member
495 #define II_CO_BMP(ip, a, b, c) (*(ip)->bi_bitmap_ops->co_bmp)(ip, a, b, c)
496 #define II_CI_BMP(ip, a, b, c) (*(ip)->bi_bitmap_ops->ci_bmp)(ip, a, b, c)
497 #define II_ZEROBM(ip) (*(ip)->bi_bitmap_ops->zerobm)(ip)
498 #define II_COPYBM(ip) (*(ip)->bi_bitmap_ops->copybm)(ip)
499 #define II_ORBM(ip) (*(ip)->bi_bitmap_ops->orbm)(ip)
500 #define II_TST_SHD_BIT(ip, c) (*(ip)->bi_bitmap_ops->tst_shd_bit)(ip, c)
501 #define II_SET_SHD_BIT(ip, c) (*(ip)->bi_bitmap_ops->set_shd_bit)(ip, c)
502 #define II_TST_COPY_BIT(ip, c) (*(ip)->bi_bitmap_ops->tst_copy_bit)(ip, c)
503 #define II_SET_COPY_BIT(ip, c) (*(ip)->bi_bitmap_ops->set_copy_bit)(ip, c)
[all …]
H A Ddsw_dev.c1451 ip->bi_bitmap_ops = &kmem_buf_bmp; in _ii_config()
1457 ip->bi_bitmap_ops = &kmem_buf_bmp; in _ii_config()
1459 ip->bi_bitmap_ops = &alloc_buf_bmp; in _ii_config()
1462 ip->bi_bitmap_ops == &kmem_buf_bmp ? in _ii_config()
1470 ip->bi_bitmap_ops = &alloc_buf_bmp; in _ii_config()
2016 ip->bi_bitmap_ops != &alloc_buf_bmp) { in _ii_config()
/titanic_50/usr/src/cmd/mdb/common/modules/ii/
H A Dii.c281 mdb_printf("bi_bitmap_ops: 0x%p\n", ii_info.bi_bitmap_ops); in ii_info()