Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_screen.c494 return nv50_screen(pscreen)->max_tls_space / ONE_TEMP_SIZE; in nv50_screen_get_shader_param()
942 assert(tls_space % ONE_TEMP_SIZE == 0); in nv50_tls_alloc()
943 screen->cur_tls_space = util_next_power_of_two(tls_space / ONE_TEMP_SIZE) * in nv50_tls_alloc()
944 ONE_TEMP_SIZE; in nv50_tls_alloc()
947 util_next_power_of_two(tls_space / ONE_TEMP_SIZE)); in nv50_tls_alloc()
973 (unsigned)(tls_space / ONE_TEMP_SIZE), in nv50_tls_realloc()
974 (unsigned)(screen->max_tls_space / ONE_TEMP_SIZE)); in nv50_tls_realloc()
1171 ONE_TEMP_SIZE; in nv50_screen_create()
1172 screen->max_tls_space = dev->vram_size / size_of_one_temp * ONE_TEMP_SIZE; in nv50_screen_create()
1179 unsigned tls_space = 4/*temps*/ * ONE_TEMP_SIZE; in nv50_screen_create()
Dnv50_screen.h30 #define ONE_TEMP_SIZE (4/*vector*/ * sizeof(float)) macro
Dnv50_compute.c154 PUSH_DATA (push, util_logbase2((screen->max_tls_space / ONE_TEMP_SIZE) * 2)); in nv50_screen_compute_setup()