Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
HDbplist.c48 bplist_entry_t *bpe = kmem_alloc(sizeof (*bpe), KM_SLEEP); in bplist_append() local
51 bpe->bpe_blk = *bp; in bplist_append()
52 list_insert_tail(&bpl->bpl_list, bpe); in bplist_append()
65 bplist_entry_t *bpe; in bplist_iterate() local
68 while (bpe = list_head(&bpl->bpl_list)) { in bplist_iterate()
69 bplist_iterate_last_removed = bpe; in bplist_iterate()
70 list_remove(&bpl->bpl_list, bpe); in bplist_iterate()
72 func(arg, &bpe->bpe_blk, tx); in bplist_iterate()
73 kmem_free(bpe, sizeof (*bpe)); in bplist_iterate()
/freebsd-11-stable/sys/dev/drm2/radeon/
HDr600_cs.c530 u32 nviews, bpe, ntiles, size, slice_tile_max, tmp; in r600_cs_track_validate_db() local
546 bpe = 2; in r600_cs_track_validate_db()
553 bpe = 4; in r600_cs_track_validate_db()
556 bpe = 8; in r600_cs_track_validate_db()
568 tmp = (tmp / bpe) >> 6; in r600_cs_track_validate_db()
571 track->db_depth_size, bpe, track->db_offset, in r600_cs_track_validate_db()
592 array_check.blocksize = bpe; in r600_cs_track_validate_db()
632 tmp = ntiles * bpe * 64 * nviews * track->nsamples; in r600_cs_track_validate_db()
636 track->db_depth_size, ntiles, nviews, bpe, tmp + track->db_offset, in r600_cs_track_validate_db()
HDevergreen_cs.c189 unsigned bpe; member
200 surf->layer_size = surf->nbx * surf->nby * surf->bpe * surf->nsamples; in evergreen_surface_check_linear()
201 surf->base_align = surf->bpe; in evergreen_surface_check_linear()
214 palign = MAX(64, track->group_size / surf->bpe); in evergreen_surface_check_linear_aligned()
215 surf->layer_size = surf->nbx * surf->nby * surf->bpe * surf->nsamples; in evergreen_surface_check_linear_aligned()
236 palign = track->group_size / (8 * surf->bpe * surf->nsamples); in evergreen_surface_check_1d()
238 surf->layer_size = surf->nbx * surf->nby * surf->bpe; in evergreen_surface_check_1d()
246 track->group_size, surf->bpe, surf->nsamples); in evergreen_surface_check_1d()
268 tileb = 64 * surf->bpe * surf->nsamples; in evergreen_surface_check_2d()
308 surf->bpe = r600_fmt_get_blocksize(surf->format); in evergreen_surface_check()
[all …]