Searched refs:desc_size (Results 1 - 6 of 6) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_descriptor_pool.cpp | 50 uint32_t desc_size; member 77 heap->desc_size = dev->GetDescriptorHandleIncrementSize(type); in d3d12_descriptor_heap_new() 78 heap->size = num_descriptors * heap->desc_size; in d3d12_descriptor_heap_new() 111 heap->size >= heap->next + heap->desc_size); in d3d12_descriptor_heap_can_allocate() 117 return (heap->size - heap->next) / heap->desc_size; in d3d12_descriptor_heap_get_remaining_handles() 140 } else if (heap->size >= heap->next + heap->desc_size) { in d3d12_descriptor_heap_alloc_handle() 142 heap->next += heap->desc_size; in d3d12_descriptor_heap_alloc_handle() 161 if (index + handle->heap->desc_size == handle->heap->next) { in d3d12_descriptor_handle_free() 179 assert(heap->next + (num_handles * heap->desc_size) <= heap->size); in d3d12_descriptor_heap_append_handles() 184 heap->next += num_handles * heap->desc_size; in d3d12_descriptor_heap_append_handles() [all...] |
H A D | d3d12_dxcore_screen.cpp | 82 size_t desc_size; in choose_dxcore_adapter() local 83 if (!SUCCEEDED(adapter->GetPropertySize(DXCoreAdapterProperty::DriverDescription, &desc_size))) { in choose_dxcore_adapter() 88 char *desc = (char*)malloc(desc_size); in choose_dxcore_adapter() 94 if (!SUCCEEDED(adapter->GetProperty(DXCoreAdapterProperty::DriverDescription, desc_size, desc))) { in choose_dxcore_adapter()
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_texture.c | 155 unsigned desc_size) in lima_update_tex_desc() 165 memset(desc, 0, desc_size); in lima_update_tex_desc() 325 unsigned desc_size = lima_calc_tex_desc_size(texture); in lima_update_textures() local 328 lima_update_tex_desc(ctx, sampler, texture, (void *)descs + offset, desc_size); in lima_update_textures() 329 offset += desc_size; in lima_update_textures() 153 lima_update_tex_desc(struct lima_context *ctx, struct lima_sampler_state *sampler, struct lima_sampler_view *texture, void *pdesc, unsigned desc_size) lima_update_tex_desc() argument
|
/third_party/libunwind/libunwind/src/coredump/ |
H A D | _UCD_corefile_elf.c | 111 unsigned desc_size = UNW_ALIGN(note->n_descsz, 4); in _UCD_elf_visit_notes() local 112 unsigned note_size = header_size + name_size + desc_size; in _UCD_elf_visit_notes()
|
/third_party/mesa3d/src/freedreno/decode/ |
H A D | pgmdump2.c | 71 int desc_size; member 258 (state->desc_size - sizeof(*cfg)) / 4); in decode_shader_config() 331 state->desc_size = blk->size / blk->count; in decode_shader_descriptor_block() 405 dump_unknown(state, ptr, 0, state->desc_size / 4); in decode_shader_descriptor_block() 408 ptr += state->desc_size; in decode_shader_descriptor_block()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_descriptors.c | 1973 unsigned desc_size = (res->nr_samples >= 2 ? 16 : 8) * 4; in si_update_bindless_image_descriptor() local 1978 memcpy(image_desc, desc->list + desc_slot_offset, desc_size); in si_update_bindless_image_descriptor() 1982 if (memcmp(image_desc, desc->list + desc_slot_offset, desc_size)) { in si_update_bindless_image_descriptor()
|
Completed in 8 milliseconds