Symbol: u_swblk_t
sys/kern/subr_blist.c
1009
next_skip = ((u_swblk_t)skip / BLIST_META_RADIX);
sys/kern/subr_blist.c
1082
next_skip = ((u_swblk_t)skip / BLIST_META_RADIX);
sys/kern/subr_blist.c
1170
next_skip = ((u_swblk_t)skip / BLIST_META_RADIX);
sys/kern/subr_blist.c
423
if (scan->u.bmu_bitmap == (u_swblk_t)-1) {
sys/kern/subr_blist.c
433
if (scan->u.bmu_bitmap == (u_swblk_t)-1) {
sys/kern/subr_blist.c
534
u_swblk_t orig = scan->u.bmu_bitmap;
sys/kern/subr_blist.c
549
u_swblk_t mask;
sys/kern/subr_blist.c
553
mask = (u_swblk_t)-1 >> (BLIST_BMAP_RADIX/2);
sys/kern/subr_blist.c
563
scan->u.bmu_bitmap &= ~((u_swblk_t)1 << r);
sys/kern/subr_blist.c
576
u_swblk_t mask;
sys/kern/subr_blist.c
578
mask = (u_swblk_t)-1 >> n;
sys/kern/subr_blist.c
641
scan[i].u.bmu_bitmap = (u_swblk_t)-1;
sys/kern/subr_blist.c
719
u_swblk_t mask;
sys/kern/subr_blist.c
721
mask = ((u_swblk_t)-1 << n) &
sys/kern/subr_blist.c
722
((u_swblk_t)-1 >> (BLIST_BMAP_RADIX - count - n));
sys/kern/subr_blist.c
861
u_swblk_t mask, bitmap;
sys/kern/subr_blist.c
863
mask = ((u_swblk_t)-1 << n) &
sys/kern/subr_blist.c
864
((u_swblk_t)-1 >> (BLIST_BMAP_RADIX - count - n));
sys/kern/subr_blist.c
911
scan[i].u.bmu_bitmap = (u_swblk_t)-1;
sys/kern/subr_blist.c
973
u_swblk_t v = scan->u.bmu_bitmap;
sys/kern/subr_blist.c
975
if (v == (u_swblk_t)-1) {
sys/sys/blist.h
100
#define BLIST_META_RADIX (sizeof(u_swblk_t)*8/2) /* 2 bits per */
sys/sys/blist.h
101
#define BLIST_BMAP_RADIX (sizeof(u_swblk_t)*8) /* 1 bit per */
sys/sys/blist.h
85
u_swblk_t bmu_bitmap; /* bitmap if we are a leaf */