Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_scene.h60 #define DATA_BLOCK_SIZE (64 * 1024) macro
87 ubyte data[DATA_BLOCK_SIZE];
237 assert(size <= DATA_BLOCK_SIZE); in lp_scene_alloc()
242 size, block->used, (unsigned)DATA_BLOCK_SIZE, in lp_scene_alloc()
245 if (block->used + size > DATA_BLOCK_SIZE) { in lp_scene_alloc()
276 block->used, (unsigned)DATA_BLOCK_SIZE, in lp_scene_alloc_aligned()
279 if (block->used + size + alignment - 1 > DATA_BLOCK_SIZE) { in lp_scene_alloc_aligned()
Dlp_scene.c80 size_t maxCommandPlusData = maxCommandBytes + DATA_BLOCK_SIZE; in lp_scene_create()
350 if (scene->scene_size + DATA_BLOCK_SIZE > LP_SCENE_MAX_SIZE) { in lp_scene_new_data_block()
Dlp_setup.c1271 STATIC_ASSERT(DATA_BLOCK_SIZE >= LP_MAX_TGSI_CONST_BUFFER_SIZE); in try_update_scene_state()