Searched refs:entcnt (Results 1 – 1 of 1) sorted by relevance
343 brt_vdev_entcount_set(brt_vdev_t *brtvd, uint64_t idx, uint16_t entcnt) in brt_vdev_entcount_set() argument349 brtvd->bv_entcount[idx] = BSWAP_16(entcnt); in brt_vdev_entcount_set()351 brtvd->bv_entcount[idx] = entcnt; in brt_vdev_entcount_set()358 uint16_t entcnt; in brt_vdev_entcount_inc() local362 entcnt = brt_vdev_entcount_get(brtvd, idx); in brt_vdev_entcount_inc()363 ASSERT(entcnt < UINT16_MAX); in brt_vdev_entcount_inc()365 brt_vdev_entcount_set(brtvd, idx, entcnt + 1); in brt_vdev_entcount_inc()371 uint16_t entcnt; in brt_vdev_entcount_dec() local375 entcnt = brt_vdev_entcount_get(brtvd, idx); in brt_vdev_entcount_dec()376 ASSERT(entcnt > 0); in brt_vdev_entcount_dec()[all …]