Lines Matching refs:graph

32 static uint16_t test_node_worker_source(struct rte_graph *graph,
36 static uint16_t test_node0_worker(struct rte_graph *graph,
40 static uint16_t test_node1_worker(struct rte_graph *graph,
44 static uint16_t test_node2_worker(struct rte_graph *graph,
48 static uint16_t test_node3_worker(struct rte_graph *graph,
143 node_init(const struct rte_graph *graph, struct rte_node *node) in node_init() argument
145 RTE_SET_USED(graph); in node_init()
169 test_node_worker_source(struct rte_graph *graph, struct rte_node *node, in test_node_worker_source() argument
185 next_stream = rte_node_next_stream_get(graph, node, next, obj_node0); in test_node_worker_source()
193 rte_node_next_stream_put(graph, node, next, obj_node0); in test_node_worker_source()
198 next_stream = rte_node_next_stream_get(graph, node, next, obj_node1); in test_node_worker_source()
207 rte_node_next_stream_put(graph, node, next, obj_node1); in test_node_worker_source()
214 test_node0_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node0_worker() argument
266 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[1][0], in test_node0_worker()
279 rte_node_enqueue(graph, node, 1, (void **)&mbuf_p[1][obj_node0], in test_node0_worker()
283 test_node1_worker(graph, node, objs, nb_objs); in test_node0_worker()
285 test_node2_worker(graph, node, objs, nb_objs); in test_node0_worker()
287 test_node3_worker(graph, node, objs, nb_objs); in test_node0_worker()
297 test_node1_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node1_worker() argument
344 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[2][0], obj_node0); in test_node1_worker()
351 test_node2_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node2_worker() argument
398 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[3][0], in test_node2_worker()
407 test_node3_worker(struct rte_graph *graph, struct rte_node *node, void **objs, in test_node3_worker() argument
458 rte_node_enqueue(graph, node, 0, (void **)&mbuf_p[4][0], in test_node3_worker()
666 struct rte_graph *graph = rte_graph_lookup("worker0"); in test_graph_walk() local
669 if (!graph) { in test_graph_walk()
675 rte_graph_walk(graph); in test_graph_walk()