Home
last modified time | relevance | path

Searched refs:ALIGN_POT (Results 1 – 25 of 39) sorted by relevance

12

/third_party/mesa3d/src/panfrost/lib/
Dpan_afbc.c142 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()
Dpan_tiler.c233 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()
Dpan_texture.c205 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()
Dpan_scratch.c84 util_next_power_of_two(ALIGN_POT(thread_size, 16)); in panfrost_get_total_stack_size()
Dpan_indirect_dispatch.c81 pan_pool_alloc_aligned(pool, ALIGN_POT(sizeof(*inputs), 16), 16); in get_ubos()
/third_party/mesa3d/src/util/
Dbuild_id.c92 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()
Dslab.c110 parent->element_size = ALIGN_POT(sizeof(struct slab_element_header) + item_size, in slab_create_parent()
Dralloc.c639 size = ALIGN_POT(size, SUBALLOC_ALIGNMENT); in linear_alloc_child()
670 size = ALIGN_POT(size, SUBALLOC_ALIGNMENT); in linear_alloc_parent()
Dmacros.h374 #define ALIGN_POT(x, pot_align) (((x) + (pot_align) - 1) & ~((pot_align) - 1)) macro
/third_party/mesa3d/src/gallium/drivers/panfrost/
Dpan_mempool.c125 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()
Dpan_resource.c278 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/
Dpool.c89 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/
Dpanvk_mempool.c81 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()
Dpanvk_vX_pipeline.c143 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/
Dagx_pipe.c204 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()
Dagx_blit.c79 offset += ALIGN_POT(binary.size, 128); in agx_build_reload_shader()
Dagx_state.c930 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/
Dnir_lower_scratch.c213 var->data.location = ALIGN_POT(shader->scratch_size, var_align); in nir_lower_vars_to_scratch()
Dnir_gather_xfb_info.c77 *offset = ALIGN_POT(*offset, 8); in add_var_xfb_outputs()
Dnir_opt_large_constants.c318 info->var->data.location = ALIGN_POT(shader->constant_data_size, var_align); in nir_opt_large_constants()
/third_party/mesa3d/src/compiler/
Dnir_types.cpp713 *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/
Dvk_alloc.h199 size_t offset = ALIGN_POT(ma->size, align); in vk_multialloc_add_size_align()
/third_party/mesa3d/src/panfrost/midgard/
Dmir_promote_uniforms.c281 ctx->info->push.count = ALIGN_POT(ctx->info->push.count, 4); in midgard_promote_uniforms()
/third_party/mesa3d/src/compiler/glsl/
Dlower_packed_varyings.cpp560 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/
Dtu_descriptor_set.c342 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()

12