Home
last modified time | relevance | path

Searched refs:buffer_indices_hashlist (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/winsys/amdgpu/drm/
Damdgpu_cs.c415 unsigned hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1); in amdgpu_lookup_buffer()
416 int i = cs->buffer_indices_hashlist[hash]; in amdgpu_lookup_buffer()
447 cs->buffer_indices_hashlist[hash] = i; in amdgpu_lookup_buffer()
505 hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1); in amdgpu_lookup_or_add_real_buffer()
506 cs->buffer_indices_hashlist[hash] = idx; in amdgpu_lookup_or_add_real_buffer()
559 hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1); in amdgpu_lookup_or_add_slab_buffer()
560 cs->buffer_indices_hashlist[hash] = idx; in amdgpu_lookup_or_add_slab_buffer()
602 hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1); in amdgpu_lookup_or_add_sparse_buffer()
603 cs->buffer_indices_hashlist[hash] = idx; in amdgpu_lookup_or_add_sparse_buffer()
892 memset(cs->buffer_indices_hashlist, -1, sizeof(cs->buffer_indices_hashlist)); in amdgpu_init_cs_context()
[all …]
Damdgpu_cs.h107 int buffer_indices_hashlist[4096]; member