Lines Matching refs:n_pipelines
68 uint32_t n_pipelines; member
144 t_data->n_pipelines = 0; in thread_init()
280 struct pipeline_data *tdp = &td->pipeline_data[td->n_pipelines]; in thread_pipeline_enable()
282 if (td->n_pipelines >= THREAD_PIPELINES_MAX) in thread_pipeline_enable()
286 td->p[td->n_pipelines] = p->p; in thread_pipeline_enable()
299 td->n_pipelines++; in thread_pipeline_enable()
372 for (i = 0; i < td->n_pipelines; i++) { in thread_pipeline_disable()
379 if (i < td->n_pipelines - 1) { in thread_pipeline_disable()
381 td->p[td->n_pipelines - 1]; in thread_pipeline_disable()
383 &td->pipeline_data[td->n_pipelines - 1]; in thread_pipeline_disable()
389 td->n_pipelines--; in thread_pipeline_disable()
459 struct pipeline_data *p = &t->pipeline_data[t->n_pipelines]; in thread_msg_handle_pipeline_enable()
463 if (t->n_pipelines >= THREAD_PIPELINES_MAX) { in thread_msg_handle_pipeline_enable()
468 t->p[t->n_pipelines] = req->pipeline_enable.p; in thread_msg_handle_pipeline_enable()
483 t->n_pipelines++; in thread_msg_handle_pipeline_enable()
495 uint32_t n_pipelines = t->n_pipelines; in thread_msg_handle_pipeline_disable() local
500 for (i = 0; i < n_pipelines; i++) { in thread_msg_handle_pipeline_disable()
506 if (i < n_pipelines - 1) { in thread_msg_handle_pipeline_disable()
508 t->p[n_pipelines - 1]; in thread_msg_handle_pipeline_disable()
510 &t->pipeline_data[n_pipelines - 1]; in thread_msg_handle_pipeline_disable()
516 t->n_pipelines--; in thread_msg_handle_pipeline_disable()
3097 for (j = 0; j < t->n_pipelines; j++) in thread_main()
3109 for (j = 0; j < t->n_pipelines; j++) { in thread_main()