HomeSort by: relevance | last modified time | path
    Searched refs:threads (Results 1 - 25 of 196) sorted by relevancy

1 2 3 4 5 6 7 8

  /xsrc/external/mit/MesaLib/dist/src/broadcom/common/
v3d_util.h 33 uint32_t threads,
v3d_util.c 34 uint32_t threads,
54 /* QPU threads will stall at TSY barriers until the entire supergroup
55 * reaches the barrier. Limit the supergroup size to half the QPU threads
57 * and we don't stall all our QPU threads when a supergroup hits a barrier.
60 uint32_t max_qpu_threads = devinfo->qpu_count * threads;
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_threads.c 54 } *threads; variable in typeref:struct:thread
61 /* Disable all signals in the slave threads as X uses them for IO */
150 DBG(("%s: creating a thread pool of %d threads\n",
153 threads = malloc (sizeof(threads[0])*max_threads);
154 if (threads == NULL)
158 pthread_mutex_init(&threads[n].mutex, NULL);
159 pthread_cond_init(&threads[n].cond, NULL);
161 threads[n].func = NULL;
162 threads[n].arg = NULL
    [all...]
sna_trapezoids_precise.c 1912 DBG(("%s: using %d threads\n", __FUNCTION__, num_threads));
1933 struct span_thread threads[num_threads]; local
1936 DBG(("%s: using %d threads for span compositing %dx%d\n",
1941 threads[0].sna = sna;
1942 threads[0].op = &tmp;
1943 threads[0].traps = traps;
1944 threads[0].ntrap = ntrap;
1945 threads[0].extents = clip.extents;
1946 threads[0].clip = &clip;
1947 threads[0].dx = dx
2152 struct mask_thread threads[num_threads]; local
2772 struct inplace_x8r8g8b8_thread threads[num_threads]; local
3039 struct inplace_thread threads[num_threads]; local
3186 struct mask_thread threads[num_threads]; local
3450 struct tristrip_thread threads[num_threads]; local
    [all...]
sna_trapezoids_imprecise.c 1967 DBG(("%s: using %d threads\n", __FUNCTION__, num_threads));
1988 struct span_thread threads[num_threads]; local
1991 DBG(("%s: using %d threads for span compositing %dx%d\n",
1996 threads[0].sna = sna;
1997 threads[0].op = &tmp;
1998 threads[0].traps = traps;
1999 threads[0].ntrap = ntrap;
2000 threads[0].extents = clip.extents;
2001 threads[0].clip = &clip;
2002 threads[0].dx = dx
2762 struct inplace_x8r8g8b8_thread threads[num_threads]; local
3026 struct inplace_thread threads[num_threads]; local
3845 struct tristrip_thread threads[num_threads]; local
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_threads.c 54 } *threads; variable in typeref:struct:thread
61 /* Disable all signals in the slave threads as X uses them for IO */
150 DBG(("%s: creating a thread pool of %d threads\n",
153 threads = malloc (sizeof(threads[0])*max_threads);
154 if (threads == NULL)
158 pthread_mutex_init(&threads[n].mutex, NULL);
159 pthread_cond_init(&threads[n].cond, NULL);
161 threads[n].func = NULL;
162 threads[n].arg = NULL
    [all...]
sna_trapezoids_precise.c 1874 DBG(("%s: using %d threads\n", __FUNCTION__, num_threads));
1895 struct span_thread threads[num_threads]; local
1898 DBG(("%s: using %d threads for span compositing %dx%d\n",
1903 threads[0].sna = sna;
1904 threads[0].op = &tmp;
1905 threads[0].traps = traps;
1906 threads[0].ntrap = ntrap;
1907 threads[0].extents = clip.extents;
1908 threads[0].clip = &clip;
1909 threads[0].dx = dx
2114 struct mask_thread threads[num_threads]; local
2813 struct inplace_x8r8g8b8_thread threads[num_threads]; local
3084 struct inplace_thread threads[num_threads]; local
3231 struct mask_thread threads[num_threads]; local
3496 struct tristrip_thread threads[num_threads]; local
    [all...]
sna_trapezoids_imprecise.c 1930 DBG(("%s: using %d threads\n", __FUNCTION__, num_threads));
1951 struct span_thread threads[num_threads]; local
1954 DBG(("%s: using %d threads for span compositing %dx%d\n",
1959 threads[0].sna = sna;
1960 threads[0].op = &tmp;
1961 threads[0].traps = traps;
1962 threads[0].ntrap = ntrap;
1963 threads[0].extents = clip.extents;
1964 threads[0].clip = &clip;
1965 threads[0].dx = dx
2799 struct inplace_x8r8g8b8_thread threads[num_threads]; local
3067 struct inplace_thread threads[num_threads]; local
3887 struct tristrip_thread threads[num_threads]; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/tests/unit/
pipe_barrier_test.c 32 * The test succeeds if no thread exits before all the other threads reach
50 static thrd_t threads[NUM_THREADS]; variable
117 threads[i] = u_thread_create(thread_function, (void *) &thread_ids[i]);
121 thrd_join(threads[i], NULL);
  /xsrc/external/mit/MesaLib/dist/src/util/tests/sparse_array/
multi_threaded.c 30 #include "c11/threads.h"
58 thrd_t threads[NUM_THREADS]; local
60 int ret = thrd_create(&threads[i], test_thread, &arr);
65 int ret = thrd_join(threads[i], NULL);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/unit/
pipe_barrier_test.c 32 * The test succeeds if no thread exits before all the other threads reach
50 static thrd_t threads[NUM_THREADS]; variable
117 threads[i] = u_thread_create(thread_function, (void *) &thread_ids[i]);
121 thrd_join(threads[i], NULL);
  /xsrc/external/mit/fontconfig/dist/test/
test-crbug1004254.c 90 pthread_t threads[NTEST]; local
100 result = pthread_create (&threads[i], NULL, run_test_in_thread,
110 pthread_join(threads[j], NULL);
test-pthread.c 73 pthread_t threads[NTHR]; local
77 printf("Creating %d threads\n",NTHR);
83 result = pthread_create(&threads[i],NULL,run_test_in_thread,
94 pthread_join(threads[j],NULL);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_cs_tpool.h 48 thrd_t threads[LP_MAX_THREADS]; member in struct:lp_cs_tpool
  /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/
vir_register_allocate.c 102 c->threads > 1 && started_last_seg;
502 for (int threads = 0; threads < max_thread_index; threads++) {
503 compiler->reg_class_any[threads] =
505 compiler->reg_class_r5[threads] =
507 compiler->reg_class_phys_or_acc[threads] =
509 compiler->reg_class_phys[threads] =
513 i < PHYS_INDEX + (PHYS_COUNT >> threads); i++) {
514 ra_class_add_reg(compiler->reg_class_phys_or_acc[threads], i)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/
vir_register_allocate.c 87 (c->threads > 1 && started_last_seg));
363 for (int threads = 0; threads < max_thread_index; threads++) {
364 compiler->reg_class_any[threads] =
366 compiler->reg_class_r5[threads] =
368 compiler->reg_class_phys_or_acc[threads] =
370 compiler->reg_class_phys[threads] =
374 i < PHYS_INDEX + (PHYS_COUNT >> threads); i++) {
376 compiler->reg_class_phys_or_acc[threads], i)
    [all...]
  /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/
MESA_multithread_makecurrent.spec 40 using the same context across multiple threads and protecting its
72 current to multiple threads, with synchronization of access to
107 threads, then binds a different context/thread in one of them?
114 threads, then binds None/None in one of them?
117 threads retain their GLX context binding.
119 (3) What happens if the app binds a context/drawable in 7 threads,
123 but the context remains usable by threads that have the context
134 from multiple threads?
140 context between multiple threads is left to the application to do
  /xsrc/external/mit/MesaLib.old/dist/docs/specs/
MESA_multithread_makecurrent.spec 40 using the same context across multiple threads and protecting its
72 current to multiple threads, with synchronization of access to
107 threads, then binds a different context/thread in one of them?
114 threads, then binds None/None in one of them?
117 threads retain their GLX context binding.
119 (3) What happens if the app binds a context/drawable in 7 threads,
123 but the context remains usable by threads that have the context
134 from multiple threads?
140 context between multiple threads is left to the application to do
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.h 180 threads = info->prop.cp.numThreads[0] *
183 if (threads == 0)
184 threads = info->target >= NVISA_GK104_CHIPSET ? 1024 : 512;
186 threads = 32; // doesn't matter, just not too big.
264 uint32_t threads; member in class:nv50_ir::Target
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.h 178 threads = info->prop.cp.numThreads[0] *
181 if (threads == 0)
182 threads = info->target >= NVISA_GK104_CHIPSET ? 1024 : 512;
184 threads = 32; // doesn't matter, just not too big.
262 uint32_t threads; member in class:nv50_ir::Target
  /xsrc/external/mit/pixman/dist/test/
thread-test.c 7 printf ("Skipped thread-test - pthreads or Windows Threads not supported\n");
22 #define THREADS 16
151 uint32_t dest[THREADS * DEST_WIDTH];
152 info_t info[THREADS] = { { 0 } };
155 pthread_t threads[THREADS]; local
156 void *retvals[THREADS];
158 HANDLE hThreadArray[THREADS];
159 DWORD dwThreadIdArray[THREADS];
162 uint32_t crc32s[THREADS], crc32
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/
u_queue.h 208 simple_mtx_t finish_lock; /* for util_queue_finish and protects threads/num_threads */
212 thrd_t *threads; member in struct:util_queue
216 unsigned num_threads; /* decreasing this number will terminate threads */
247 /* Adjust the number of active threads. The new number of threads can't be
248 * greater than the initial number of threads at the creation of the queue,
261 return queue->threads != NULL;
  /xsrc/external/mit/MesaLib.old/dist/src/util/
u_queue.h 204 mtx_t finish_lock; /* for util_queue_finish and protects threads/num_threads */
208 thrd_t *threads; member in struct:util_queue
212 unsigned num_threads; /* decreasing this number will terminate threads */
239 /* Adjust the number of active threads. The new number of threads can't be
240 * greater than the initial number of threads at the creation of the queue,
253 return queue->threads != NULL;
  /xsrc/external/mit/MesaLib/dist/.gitlab-ci/fossils/
fossils.sh 68 fossilize-replay --num-threads 4 $fossil 1>&2 2> $FOSSILS_RESULTS/fossil_replay.txt
  /xsrc/external/mit/MesaLib/dist/src/drm-shim/
drm_shim.h 24 #include <c11/threads.h>

Completed in 21 milliseconds

1 2 3 4 5 6 7 8