Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_scene.h54 #define DATA_BLOCK_SIZE (64 * 1024) macro
85 ubyte data[DATA_BLOCK_SIZE];
208 assert(size <= DATA_BLOCK_SIZE); in lp_scene_alloc()
213 size, block->used, DATA_BLOCK_SIZE, in lp_scene_alloc()
216 if (block->used + size > DATA_BLOCK_SIZE) { in lp_scene_alloc()
247 block->used, DATA_BLOCK_SIZE, in lp_scene_alloc_aligned()
250 if (block->used + size + alignment - 1 > DATA_BLOCK_SIZE) { in lp_scene_alloc_aligned()
Dlp_scene.c299 if (scene->scene_size + DATA_BLOCK_SIZE > LP_SCENE_MAX_SIZE) { in lp_scene_new_data_block()