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

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_decoder.c 68 buffer_width = pot_buffers ? util_next_power_of_two(width) : align(width, VL_MACROBLOCK_WIDTH);
69 buffer_height = pot_buffers ? util_next_power_of_two(height) : align(height, VL_MACROBLOCK_HEIGHT);
vl_video_buffer.c 412 templat.width = pot_buffers ? util_next_power_of_two(tmpl->width)
414 templat.height = pot_buffers ? util_next_power_of_two(tmpl->height)
vl_mpeg12_decoder.c     [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture_desc.c 168 height = util_next_power_of_two(height);
497 tex->tex.width0 = util_next_power_of_two(tex->tex.width0);
498 tex->tex.height0 = util_next_power_of_two(tex->tex.height0);
499 tex->tex.depth0 = util_next_power_of_two(tex->tex.depth0);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_screen.c 542 screen->cur_tls_space = util_next_power_of_two(tls_space / ONE_TEMP_SIZE) *
546 util_next_power_of_two(tls_space / ONE_TEMP_SIZE));
547 *tls_size = screen->cur_tls_space * util_next_power_of_two(screen->TPs) *
722 stack_size = util_next_power_of_two(screen->TPs) * screen->MPsInTP *
732 uint64_t size_of_one_temp = util_next_power_of_two(screen->TPs) *
  /external/mesa3d/src/gallium/state_trackers/xvmc/
subpicture.c 240 tex_templ.width0 = util_next_power_of_two(width);
241 tex_templ.height0 = util_next_power_of_two(height);
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 592 util_next_power_of_two(unsigned x) function
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 107 return util_next_power_of_two(util_format_get_stride(format, width));
562 assert(util_next_power_of_two(pt->width0) == pt->width0); /* npot only */
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa.c 870 template.width0 = util_next_power_of_two(width);
871 template.height0 = util_next_power_of_two(height);
  /external/mesa3d/src/gallium/drivers/r600/
r600_texture.c 341 unsigned macro_tile_width = util_next_power_of_two(sqrt_pixels_per_macro_tile);
    [all...]

Completed in 636 milliseconds