Home
last modified time | relevance | path

Searched refs:add_bucket (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/etnaviv/drm/
Detnaviv_bo_cache.c30 static void add_bucket(struct etna_bo_cache *cache, int size) in add_bucket() function
53 add_bucket(cache, 4096); in etna_bo_cache_init()
54 add_bucket(cache, 4096 * 2); in etna_bo_cache_init()
55 add_bucket(cache, 4096 * 3); in etna_bo_cache_init()
59 add_bucket(cache, size); in etna_bo_cache_init()
60 add_bucket(cache, size + size * 1 / 4); in etna_bo_cache_init()
61 add_bucket(cache, size + size * 2 / 4); in etna_bo_cache_init()
62 add_bucket(cache, size + size * 3 / 4); in etna_bo_cache_init()
/third_party/libdrm/etnaviv/
Detnaviv_bo_cache.c33 static void add_bucket(struct etna_bo_cache *cache, int size) in add_bucket() function
56 add_bucket(cache, 4096); in etna_bo_cache_init()
57 add_bucket(cache, 4096 * 2); in etna_bo_cache_init()
58 add_bucket(cache, 4096 * 3); in etna_bo_cache_init()
62 add_bucket(cache, size); in etna_bo_cache_init()
63 add_bucket(cache, size + size * 1 / 4); in etna_bo_cache_init()
64 add_bucket(cache, size + size * 2 / 4); in etna_bo_cache_init()
65 add_bucket(cache, size + size * 3 / 4); in etna_bo_cache_init()
/third_party/mesa3d/src/freedreno/drm/
Dfreedreno_bo_cache.c34 add_bucket(struct fd_bo_cache *cache, int size) in add_bucket() function
62 add_bucket(cache, 4096); in fd_bo_cache_init()
63 add_bucket(cache, 4096 * 2); in fd_bo_cache_init()
65 add_bucket(cache, 4096 * 3); in fd_bo_cache_init()
69 add_bucket(cache, size); in fd_bo_cache_init()
71 add_bucket(cache, size + size * 1 / 4); in fd_bo_cache_init()
72 add_bucket(cache, size + size * 2 / 4); in fd_bo_cache_init()
73 add_bucket(cache, size + size * 3 / 4); in fd_bo_cache_init()
/third_party/libdrm/freedreno/
Dfreedreno_bo_cache.c36 add_bucket(struct fd_bo_cache *cache, int size) in add_bucket() function
64 add_bucket(cache, 4096); in fd_bo_cache_init()
65 add_bucket(cache, 4096 * 2); in fd_bo_cache_init()
67 add_bucket(cache, 4096 * 3); in fd_bo_cache_init()
71 add_bucket(cache, size); in fd_bo_cache_init()
73 add_bucket(cache, size + size * 1 / 4); in fd_bo_cache_init()
74 add_bucket(cache, size + size * 2 / 4); in fd_bo_cache_init()
75 add_bucket(cache, size + size * 3 / 4); in fd_bo_cache_init()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_bufmgr.c1475 add_bucket(struct crocus_bufmgr *bufmgr, int size) in add_bucket() function
1503 add_bucket(bufmgr, PAGE_SIZE); in init_cache_buckets()
1504 add_bucket(bufmgr, PAGE_SIZE * 2); in init_cache_buckets()
1505 add_bucket(bufmgr, PAGE_SIZE * 3); in init_cache_buckets()
1509 add_bucket(bufmgr, size); in init_cache_buckets()
1511 add_bucket(bufmgr, size + size * 1 / 4); in init_cache_buckets()
1512 add_bucket(bufmgr, size + size * 2 / 4); in init_cache_buckets()
1513 add_bucket(bufmgr, size + size * 3 / 4); in init_cache_buckets()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_bufmgr.c2105 add_bucket(struct iris_bufmgr *bufmgr, int size, enum iris_heap heap) in add_bucket() function
2134 add_bucket(bufmgr, PAGE_SIZE, heap); in init_cache_buckets()
2135 add_bucket(bufmgr, PAGE_SIZE * 2, heap); in init_cache_buckets()
2136 add_bucket(bufmgr, PAGE_SIZE * 3, heap); in init_cache_buckets()
2140 add_bucket(bufmgr, size, heap); in init_cache_buckets()
2142 add_bucket(bufmgr, size + size * 1 / 4, heap); in init_cache_buckets()
2143 add_bucket(bufmgr, size + size * 2 / 4, heap); in init_cache_buckets()
2144 add_bucket(bufmgr, size + size * 3 / 4, heap); in init_cache_buckets()
/third_party/libdrm/intel/
Dintel_bufmgr_gem.c3010 add_bucket(drm_intel_bufmgr_gem *bufmgr_gem, int size) in add_bucket() function
3034 add_bucket(bufmgr_gem, 4096); in init_cache_buckets()
3035 add_bucket(bufmgr_gem, 4096 * 2); in init_cache_buckets()
3036 add_bucket(bufmgr_gem, 4096 * 3); in init_cache_buckets()
3040 add_bucket(bufmgr_gem, size); in init_cache_buckets()
3042 add_bucket(bufmgr_gem, size + size * 1 / 4); in init_cache_buckets()
3043 add_bucket(bufmgr_gem, size + size * 2 / 4); in init_cache_buckets()
3044 add_bucket(bufmgr_gem, size + size * 3 / 4); in init_cache_buckets()
/third_party/mesa3d/docs/relnotes/
D22.0.0.rst3394 - iris: Use a num_buckets pointer in add_bucket