HomeSort by relevance Sort by last modified time
    Searched refs:bpe (Results 1 - 8 of 8) sorted by null

  /external/libdrm/radeon/
radeon_surface.c 164 unsigned bpe, unsigned level,
186 surflevel->pitch_bytes = surflevel->nblk_x * bpe * surf->nsamples;
275 xalign = MAX2(1, surf_man->hw_info.group_bytes / surf->bpe);
279 xalign = MAX2((surf->bpe == 1) ? 64 : 32, xalign);
285 surf_minify(surf, surf->level+i, surf->bpe, i, xalign, yalign, zalign, offset);
306 xalign = MAX2(64, surf_man->hw_info.group_bytes / surf->bpe);
313 surf_minify(surf, surf->level+i, surf->bpe, i, xalign, yalign, zalign, offset);
332 xalign = surf_man->hw_info.group_bytes / (tilew * surf->bpe * surf->nsamples);
337 xalign = MAX2((surf->bpe == 1) ? 64 : 32, xalign);
346 surf_minify(surf, surf->level+i, surf->bpe, i, xalign, yalign, zalign, offset)
    [all...]
radeon_surface.h 119 uint32_t bpe; member in struct:radeon_surface
  /external/drm_gralloc/
gralloc_drm_radeon.c 81 static int radeon_get_pitch_align(struct radeon_info *info, int bpe, uint32_t tiling)
88 pitch_align = (((info->group_bytes / 8) / bpe) *
94 pitch_align = MAX(8, (info->group_bytes / (8 * bpe)));
96 pitch_align = MAX(info->group_bytes / bpe, pitch_align);
100 pitch_align = MAX(64, info->group_bytes / bpe);
113 pitch_align = 256 / bpe;
146 int bpe, uint32_t tiling)
148 int pixel_align = radeon_get_pitch_align(info, bpe, tiling);
154 base_align = MAX(info->num_banks * info->num_channels * 8 * 8 * bpe,
155 pixel_align * bpe * height_align)
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
SealedObject.java 259 } catch (BadPaddingException bpe) {
260 throw new InvalidKeyException(bpe.getMessage());
  /external/mesa3d/src/gallium/drivers/r600/
r600_texture.c 93 surface->bpe = 4; /* stencil is allocated separately on evergreen */
95 surface->bpe = util_format_get_blocksize(ptex->format);
97 if (surface->bpe == 3) {
98 surface->bpe = 4;
178 rtex->surface.level[0].nblk_x = pitch_in_bytes_override / rtex->surface.bpe;
262 * Here we use bpe in the units of bits, not bytes. */
271 fmask.bpe = 4;
275 fmask.bpe = 8;
279 fmask.bpe = 16;
289 fmask.bpe *= 2
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ProfileVerifierPass.cpp 247 const_pred_iterator bpi = pred_begin(BB), bpe = pred_end(BB); local
249 if (bpi == bpe) {
253 for (;bpi != bpe; ++bpi) {
  /external/v8/src/runtime/
runtime-simd.cc     [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_texture.c 88 surface->bpe = util_format_get_blocksize(ptex->format);
90 if (surface->bpe == 3) {
91 surface->bpe = 4;
168 rtex->surface.level[0].nblk_x = pitch_in_bytes_override / rtex->surface.bpe;

Completed in 576 milliseconds