Lines Matching refs:n_pipelines
68 uint32_t n_pipelines; member
146 t_data->n_pipelines = 0; in thread_init()
282 struct pipeline_data *tdp = &td->pipeline_data[td->n_pipelines]; in thread_pipeline_enable()
284 if (td->n_pipelines >= THREAD_PIPELINES_MAX) in thread_pipeline_enable()
288 td->p[td->n_pipelines] = p->p; in thread_pipeline_enable()
301 td->n_pipelines++; in thread_pipeline_enable()
374 for (i = 0; i < td->n_pipelines; i++) { in thread_pipeline_disable()
381 if (i < td->n_pipelines - 1) { in thread_pipeline_disable()
383 td->p[td->n_pipelines - 1]; in thread_pipeline_disable()
385 &td->pipeline_data[td->n_pipelines - 1]; in thread_pipeline_disable()
391 td->n_pipelines--; in thread_pipeline_disable()
461 struct pipeline_data *p = &t->pipeline_data[t->n_pipelines]; in thread_msg_handle_pipeline_enable()
465 if (t->n_pipelines >= THREAD_PIPELINES_MAX) { in thread_msg_handle_pipeline_enable()
470 t->p[t->n_pipelines] = req->pipeline_enable.p; in thread_msg_handle_pipeline_enable()
485 t->n_pipelines++; in thread_msg_handle_pipeline_enable()
497 uint32_t n_pipelines = t->n_pipelines; in thread_msg_handle_pipeline_disable() local
502 for (i = 0; i < n_pipelines; i++) { in thread_msg_handle_pipeline_disable()
508 if (i < n_pipelines - 1) { in thread_msg_handle_pipeline_disable()
510 t->p[n_pipelines - 1]; in thread_msg_handle_pipeline_disable()
512 &t->pipeline_data[n_pipelines - 1]; in thread_msg_handle_pipeline_disable()
518 t->n_pipelines--; in thread_msg_handle_pipeline_disable()
3099 for (j = 0; j < t->n_pipelines; j++) in thread_main()
3111 for (j = 0; j < t->n_pipelines; j++) { in thread_main()