/third_party/mesa3d/src/panfrost/lib/ |
D | pan_afbc.c | 142 unsigned aligned_width = ALIGN_POT(width, AFBC_TILE_WIDTH); in panfrost_afbc_header_size() 143 unsigned aligned_height = ALIGN_POT(height, AFBC_TILE_HEIGHT); in panfrost_afbc_header_size() 154 return ALIGN_POT(header_bytes, AFBC_CACHE_ALIGN); in panfrost_afbc_header_size()
|
D | pan_tiler.c | 233 unsigned aligned_width = ALIGN_POT(width, tile_width); in pan_tile_count() 234 unsigned aligned_height = ALIGN_POT(height, tile_height); in pan_tile_count() 275 return ALIGN_POT(size, 0x200); in panfrost_hierarchy_size()
|
D | pan_texture.c | 205 effective_width = ALIGN_POT(effective_width, tile_w) >> tile_shift; in pan_image_layout_init() 206 effective_height = ALIGN_POT(effective_height, tile_h); in pan_image_layout_init() 214 offset = ALIGN_POT(offset, 64); in pan_image_layout_init() 229 stride = ALIGN_POT(stride, 64); in pan_image_layout_init() 297 layout->array_stride = ALIGN_POT(offset, 64); in pan_image_layout_init() 301 layout->data_size = ALIGN_POT(layout->array_stride * array_size, 4096); in pan_image_layout_init()
|
D | pan_scratch.c | 84 util_next_power_of_two(ALIGN_POT(thread_size, 16)); in panfrost_get_total_stack_size()
|
D | pan_indirect_dispatch.c | 81 pan_pool_alloc_aligned(pool, ALIGN_POT(sizeof(*inputs), 16), 16); in get_ubos()
|
/third_party/mesa3d/src/util/ |
D | build_id.c | 92 ALIGN_POT(note->nhdr.n_namesz, 4) + in build_id_find_nhdr_callback() 93 ALIGN_POT(note->nhdr.n_descsz, 4); in build_id_find_nhdr_callback()
|
D | slab.c | 110 parent->element_size = ALIGN_POT(sizeof(struct slab_element_header) + item_size, in slab_create_parent()
|
D | ralloc.c | 639 size = ALIGN_POT(size, SUBALLOC_ALIGNMENT); in linear_alloc_child() 670 size = ALIGN_POT(size, SUBALLOC_ALIGNMENT); in linear_alloc_parent()
|
D | macros.h | 374 #define ALIGN_POT(x, pot_align) (((x) + (pot_align) - 1) & ~((pot_align) - 1)) macro
|
/third_party/mesa3d/src/gallium/drivers/panfrost/ |
D | pan_mempool.c | 125 unsigned offset = ALIGN_POT(pool->transient_offset, alignment); in panfrost_pool_alloc_aligned() 130 ALIGN_POT(MAX2(pool->base.slab_size, sz), 4096)); in panfrost_pool_alloc_aligned()
|
D | pan_resource.c | 278 scanout_templat.width0 = ALIGN_POT(template->width0, 16); in panfrost_create_scanout_res() 279 scanout_templat.height0 = ALIGN_POT(template->height0, 16); in panfrost_create_scanout_res() 298 unsigned pitch = ALIGN_POT(template->width0, 16) * in panfrost_create_scanout_res() 304 scanout_templat.width0 = ALIGN_POT(template->width0, 16); in panfrost_create_scanout_res() 305 scanout_templat.height0 = ALIGN_POT(template->height0, 16) + header_rows; in panfrost_create_scanout_res() 555 ALIGN_POT(DIV_ROUND_UP(res->width0, 32 * 8), 64); in panfrost_resource_set_damage_region()
|
/third_party/mesa3d/src/asahi/lib/ |
D | pool.c | 89 unsigned offset = ALIGN_POT(pool->transient_offset, alignment); in agx_pool_alloc_aligned() 94 ALIGN_POT(MAX2(POOL_SLAB_SIZE, sz), 4096)); in agx_pool_alloc_aligned()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
D | panvk_mempool.c | 81 unsigned offset = ALIGN_POT(pool->transient_offset, alignment); in panvk_pool_alloc_aligned() 86 ALIGN_POT(MAX2(pool->base.slab_size, sz), in panvk_pool_alloc_aligned()
|
D | panvk_vX_pipeline.c | 143 builder->shader_total_size = ALIGN_POT(builder->shader_total_size, 128); in panvk_pipeline_builder_compile_shaders() 206 bo_size = ALIGN_POT(bo_size, pan_alignment(RENDERER_STATE)); in panvk_pipeline_builder_alloc_static_state_bo() 215 bo_size = ALIGN_POT(bo_size, pan_alignment(VIEWPORT)); in panvk_pipeline_builder_alloc_static_state_bo() 244 bo_size = ALIGN_POT(bo_size, 16); in panvk_pipeline_builder_alloc_static_state_bo()
|
/third_party/mesa3d/src/gallium/drivers/asahi/ |
D | agx_pipe.c | 204 width = ALIGN_POT(width, 64); in agx_resource_create() 205 height = ALIGN_POT(height, 64); in agx_resource_create() 212 offset += ALIGN_POT(nresource->slices[l].line_stride * height, 0x80); in agx_resource_create() 216 nresource->array_stride = ALIGN_POT(offset, 64); in agx_resource_create() 217 unsigned size = ALIGN_POT(nresource->array_stride * templ->array_size, 4096); in agx_resource_create() 229 width0 = ALIGN_POT(width0, 64); in agx_resource_create() 230 height0 = ALIGN_POT(height0, 64); in agx_resource_create() 245 offset = nresource->slices[0].line_stride * ALIGN_POT(templ->height0, 64); in agx_resource_create()
|
D | agx_blit.c | 79 offset += ALIGN_POT(binary.size, 128); in agx_build_reload_shader()
|
D | agx_state.c | 930 ALIGN_POT(binary.size, 256) + (3 * packed_varying_sz), in agx_update_shader() 936 unsigned offs = ALIGN_POT(binary.size, 256); in agx_update_shader() 942 compiled->varyings = compiled->bo->ptr.gpu + ALIGN_POT(binary.size, 256); in agx_update_shader() 1591 cfg.index_buffer_size = ALIGN_POT(draws->count * idx_size, 4); in agx_draw_vbo()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_lower_scratch.c | 213 var->data.location = ALIGN_POT(shader->scratch_size, var_align); in nir_lower_vars_to_scratch()
|
D | nir_gather_xfb_info.c | 77 *offset = ALIGN_POT(*offset, 8); in add_var_xfb_outputs()
|
D | nir_opt_large_constants.c | 318 info->var->data.location = ALIGN_POT(shader->constant_data_size, var_align); in nir_opt_large_constants()
|
/third_party/mesa3d/src/compiler/ |
D | nir_types.cpp | 713 *size = type->length * ALIGN_POT(elem_size, elem_align); in glsl_size_align_handle_array_and_structs() 724 *size = ALIGN_POT(*size, elem_align) + elem_size; in glsl_size_align_handle_array_and_structs()
|
/third_party/mesa3d/src/vulkan/util/ |
D | vk_alloc.h | 199 size_t offset = ALIGN_POT(ma->size, align); in vk_multialloc_add_size_align()
|
/third_party/mesa3d/src/panfrost/midgard/ |
D | mir_promote_uniforms.c | 281 ctx->info->push.count = ALIGN_POT(ctx->info->push.count, 4); in midgard_promote_uniforms()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | lower_packed_varyings.cpp | 560 unsigned aligned_fine_location = ALIGN_POT(fine_location, dmul); in lower_rvalue() 671 fine_location = ALIGN_POT(fine_location, dmul); in lower_arraylike()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_descriptor_set.c | 342 if (size && !ALIGN_POT(size, descriptor_alignment)) { in tu_GetDescriptorSetLayoutSupport() 345 size = ALIGN_POT(size, descriptor_alignment); in tu_GetDescriptorSetLayoutSupport() 858 range = ALIGN_POT(range, 16) / 16; in write_ubo_descriptor()
|