Lines Matching refs:t
664 struct thread_data *t = arg; in thread_func() local
669 CPU_SET(t->cpu_core_id, &cpu_cores); in thread_func()
672 for (i = 0; !t->quit; i = (i + 1) & (t->n_ports_rx - 1)) { in thread_func()
673 struct port *port_rx = t->ports_rx[i]; in thread_func()
674 struct port *port_tx = t->ports_tx[i]; in thread_func()
675 struct burst_rx *brx = &t->burst_rx; in thread_func()
676 struct burst_tx *btx = &t->burst_tx[i]; in thread_func()
879 struct thread_data *t = &thread_data[thread_id]; in print_thread() local
883 thread_id, t->cpu_core_id); in print_thread()
885 for (i = 0; i < t->n_ports_rx; i++) { in print_thread()
886 struct port *port_rx = t->ports_rx[i]; in print_thread()
887 struct port *port_tx = t->ports_tx[i]; in print_thread()
1022 struct thread_data *t = &thread_data[i]; in main() local
1026 t->ports_rx[j] = ports[i * n_ports_per_thread + j]; in main()
1027 t->ports_tx[j] = ports[i * n_ports_per_thread + in main()
1031 t->n_ports_rx = n_ports_per_thread; in main()