HomeSort by relevance Sort by last modified time
    Searched defs:tls_space (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_screen.c 783 static int nv50_tls_alloc(struct nv50_screen *screen, unsigned tls_space,
789 screen->cur_tls_space = util_next_power_of_two(tls_space / ONE_TEMP_SIZE) *
793 util_next_power_of_two(tls_space / ONE_TEMP_SIZE));
807 int nv50_tls_realloc(struct nv50_screen *screen, unsigned tls_space)
813 if (tls_space < screen->cur_tls_space)
815 if (tls_space > screen->max_tls_space) {
819 (unsigned)(tls_space / ONE_TEMP_SIZE),
825 ret = nv50_tls_alloc(screen, tls_space, &tls_size);
1012 unsigned tls_space = 4\/*temps*\/ * ONE_TEMP_SIZE; local
    [all...]
nv50_program.h 63 uint32_t tls_space; /* required local memory per thread */ member in struct:nv50_program

Completed in 120 milliseconds