Lines Matching defs:_graph
57 graph_header_popluate(struct graph *_graph)
59 struct rte_graph *graph = _graph->graph;
62 graph->head = (int32_t)-_graph->src_node_count;
63 graph->cir_mask = _graph->cir_mask;
64 graph->nb_nodes = _graph->node_count;
65 graph->cir_start = RTE_PTR_ADD(graph, _graph->cir_start);
66 graph->nodes_start = _graph->nodes_start;
67 graph->socket = _graph->socket;
68 graph->id = _graph->id;
69 memcpy(graph->name, _graph->name, RTE_GRAPH_NAMESIZE);
74 graph_nodes_populate(struct graph *_graph)
76 rte_graph_off_t xstat_off = _graph->xstats_start;
77 rte_graph_off_t off = _graph->nodes_start;
78 struct rte_graph *graph = _graph->graph;
84 STAILQ_FOREACH(graph_node, &_graph->node_list, next) {
154 graph_node_nexts_populate(struct graph *_graph)
159 const struct rte_graph *graph = _graph->graph;
177 graph_src_nodes_offset_populate(struct graph *_graph)
179 struct rte_graph *graph = _graph->graph;
185 STAILQ_FOREACH(graph_node, &_graph->node_list, next) {