Home
last modified time | relevance | path

Searched refs:graph (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-kernel/pm-graph/pm-graph/
H A D0001-Makefile-fix-multilib-build-failure.patch30 - install -d $(DESTDIR)$(PREFIX)/lib/pm-graph
31 - install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
32 - install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
33 - install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config
34 - install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config
35 - install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
36 - install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
37 - install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
38 - install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
39 - install -m 644 config/standby.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
[all …]
/OK3568_Linux_fs/kernel/tools/power/pm-graph/
H A DMakefile9 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph
10 install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
11 install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
12 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config
13 install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config
14 install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
15 install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
16 install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
17 install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
18 install -m 644 config/standby.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dgraphds.h47 struct graph struct
54 struct graph *new_graph (int); argument
55 void dump_graph (FILE *, struct graph *);
56 struct graph_edge *add_edge (struct graph *, int, int);
57 void identify_vertices (struct graph *, int, int);
59 int graphds_dfs (struct graph *, int *, int,
61 int graphds_scc (struct graph *, bitmap, skip_edge_callback = NULL);
62 void graphds_domtree (struct graph *, int, int *, int *, int *);
63 typedef void (*graphds_edge_callback) (struct graph *,
65 void for_each_edge (struct graph *, graphds_edge_callback, void *);
[all …]
H A Dshortest-paths.h40 shortest_paths (const graph_t &graph, const node_t *origin);
64 shortest_paths<GraphTraits, Path_t>::shortest_paths (const graph_t &graph, in shortest_paths() argument
66 : m_graph (graph), in shortest_paths()
67 m_dist (graph.m_nodes.length ()), in shortest_paths()
68 m_prev (graph.m_nodes.length ()) in shortest_paths()
72 auto_vec<int> queue (graph.m_nodes.length ()); in shortest_paths()
74 for (unsigned i = 0; i < graph.m_nodes.length (); i++) in shortest_paths()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dgraphds.h47 struct graph struct
54 struct graph *new_graph (int); argument
55 void dump_graph (FILE *, struct graph *);
56 struct graph_edge *add_edge (struct graph *, int, int);
57 void identify_vertices (struct graph *, int, int);
59 int graphds_dfs (struct graph *, int *, int,
61 int graphds_scc (struct graph *, bitmap, skip_edge_callback = NULL);
62 void graphds_domtree (struct graph *, int, int *, int *, int *);
63 typedef void (*graphds_edge_callback) (struct graph *,
65 void for_each_edge (struct graph *, graphds_edge_callback, void *);
[all …]
H A Dshortest-paths.h40 shortest_paths (const graph_t &graph, const node_t *origin);
64 shortest_paths<GraphTraits, Path_t>::shortest_paths (const graph_t &graph, in shortest_paths() argument
66 : m_graph (graph), in shortest_paths()
67 m_dist (graph.m_nodes.length ()), in shortest_paths()
68 m_prev (graph.m_nodes.length ()) in shortest_paths()
72 auto_vec<int> queue (graph.m_nodes.length ()); in shortest_paths()
74 for (unsigned i = 0; i < graph.m_nodes.length (); i++) in shortest_paths()
/OK3568_Linux_fs/kernel/drivers/media/mc/
H A Dmc-entity.c241 static void stack_push(struct media_graph *graph, in stack_push() argument
244 if (graph->top == MEDIA_ENTITY_ENUM_MAX_DEPTH - 1) { in stack_push()
248 graph->top++; in stack_push()
249 graph->stack[graph->top].link = entity->links.next; in stack_push()
250 graph->stack[graph->top].entity = entity; in stack_push()
253 static struct media_entity *stack_pop(struct media_graph *graph) in stack_pop() argument
257 entity = graph->stack[graph->top].entity; in stack_pop()
258 graph->top--; in stack_pop()
278 struct media_graph *graph, struct media_device *mdev) in media_graph_walk_init() argument
280 return media_entity_enum_init(&graph->ent_enum, mdev); in media_graph_walk_init()
[all …]
/OK3568_Linux_fs/kernel/lib/
H A Dobjagg.c710 static int objagg_tmp_graph_edge_index(struct objagg_tmp_graph *graph, in objagg_tmp_graph_edge_index() argument
713 return index * graph->nodes_count + parent_index; in objagg_tmp_graph_edge_index()
716 static void objagg_tmp_graph_edge_set(struct objagg_tmp_graph *graph, in objagg_tmp_graph_edge_set() argument
719 int edge_index = objagg_tmp_graph_edge_index(graph, index, in objagg_tmp_graph_edge_set()
722 __set_bit(edge_index, graph->edges); in objagg_tmp_graph_edge_set()
725 static bool objagg_tmp_graph_is_edge(struct objagg_tmp_graph *graph, in objagg_tmp_graph_is_edge() argument
728 int edge_index = objagg_tmp_graph_edge_index(graph, index, in objagg_tmp_graph_is_edge()
731 return test_bit(edge_index, graph->edges); in objagg_tmp_graph_is_edge()
734 static unsigned int objagg_tmp_graph_node_weight(struct objagg_tmp_graph *graph, in objagg_tmp_graph_node_weight() argument
737 struct objagg_tmp_node *node = &graph->nodes[index]; in objagg_tmp_graph_node_weight()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/is_valid/
H A Ddebug_complement_graph.hpp28 complement_graph<TurnPoint> const& graph) in debug_print_complement_graph() argument
32 os << "num rings: " << graph.m_num_rings << std::endl; in debug_print_complement_graph()
34 for (vertex_handle it = graph.m_vertices.begin(); in debug_print_complement_graph()
35 it != graph.m_vertices.end(); ++it) in debug_print_complement_graph()
41 for (vertex_handle it = graph.m_vertices.begin(); in debug_print_complement_graph()
42 it != graph.m_vertices.end(); ++it) in debug_print_complement_graph()
49 nit = graph.m_neighbors[it->id()].begin(); in debug_print_complement_graph()
50 nit != graph.m_neighbors[it->id()].end(); ++nit) in debug_print_complement_graph()
/OK3568_Linux_fs/kernel/drivers/media/v4l2-core/
H A Dv4l2-mc.c435 struct media_graph *graph) in pipeline_pm_use_count() argument
439 media_graph_walk_start(graph, entity); in pipeline_pm_use_count()
441 while ((entity = media_graph_walk_next(graph))) { in pipeline_pm_use_count()
494 struct media_graph *graph) in pipeline_pm_power() argument
502 media_graph_walk_start(graph, entity); in pipeline_pm_power()
504 while (!ret && (entity = media_graph_walk_next(graph))) in pipeline_pm_power()
511 media_graph_walk_start(graph, first); in pipeline_pm_power()
513 while ((first = media_graph_walk_next(graph)) in pipeline_pm_power()
559 struct media_graph *graph = &link->graph_obj.mdev->pm_count_walk; in v4l2_pipeline_link_notify() local
566 source_use = pipeline_pm_use_count(source, graph); in v4l2_pipeline_link_notify()
[all …]
/OK3568_Linux_fs/buildroot/docs/manual/
H A Dcommon-usage.txt101 * +BR2_GRAPH_DEPS_OPTS+ to pass extra options to the dependency graph; see
102 xref:graph-depends[] for the accepted options
104 draw the dependency graph.
105 * +BR2_GRAPH_SIZE_OPTS+ to pass extra options to the size graph; see
106 xref:graph-size[] for the acepted options
185 [[graph-depends]]
198 To generate a dependency graph of the full system you have compiled,
202 make graph-depends
205 You will find the generated graph in
206 +output/graphs/graph-depends.pdf+.
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/
H A Daudio-graph-card.txt5 see ${LINUX}/Documentation/devicetree/bindings/graph.txt
29 - compatible : "audio-graph-card";
40 compatible = "audio-graph-card";
71 compatible = "audio-graph-card";
143 compatible = "audio-graph-card";
180 compatible = "audio-graph-card";
193 audio-graph-card,prefix = "codec";
194 audio-graph-card,convert-rate = <48000>;
237 compatible = "audio-graph-card";
264 audio-graph-card,prefix = "pcm3168a";
[all …]
/OK3568_Linux_fs/buildroot/package/bandwidthd/
H A D0001-src-bandwidthd.h-fix-build-with-gcc-10.patch10 …EFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -o bandwidthd bandwidthd.o graph.o extensions.o sql…
11 …-linux-gnueabihf/10.2.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: graph.o:(.bss+0x4b0): mu…
12 …-linux-gnueabihf/10.2.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: graph.o:(.bss+0x18c): mu…
21 src/graph.c | 1 +
46 diff --git a/src/graph.c b/src/graph.c
48 --- a/src/graph.c
49 +++ b/src/graph.c
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/lcov/files/
H A D0001-geninfo-Add-intermediate-text-format-support.patch131 $type = "graph";
160 - $base_dir = find_base_from_graph($base_dir, $instr, $graph);
162 + [ keys(%{$instr}), keys(%{$graph}) ]);
165 - ($instr, $graph) = adjust_graph_filenames($base_dir, $instr, $graph);
167 + adjust_source_filenames($graph, $base_dir);
170 # from $da_dir if the graph file is just a link to the "real" object
348 +# Create output for a single file (either a data file or a graph file) using
373 + # Process graph file - copy to temp directory to prevent
407 + # Remove graph file copy
642 my ($instr, $graph) = @_;
[all …]
/OK3568_Linux_fs/kernel/drivers/hwtracing/coresight/
H A Dcoresight-platform.c475 static inline bool acpi_validate_dsd_graph(const union acpi_object *graph) in acpi_validate_dsd_graph() argument
481 if (graph->package.count < 2) in acpi_validate_dsd_graph()
484 rev = &graph->package.elements[0]; in acpi_validate_dsd_graph()
485 nr_graphs = &graph->package.elements[1]; in acpi_validate_dsd_graph()
501 if (graph->package.count != (n + 2)) in acpi_validate_dsd_graph()
509 const union acpi_object *obj = &graph->package.elements[i]; in acpi_validate_dsd_graph()
586 const union acpi_object *graph_list, *graph; in acpi_get_coresight_graph() local
596 graph = &graph_list->package.elements[i]; in acpi_get_coresight_graph()
597 if (!is_acpi_coresight_graph(graph)) in acpi_get_coresight_graph()
599 if (acpi_validate_coresight_graph(graph)) in acpi_get_coresight_graph()
[all …]
/OK3568_Linux_fs/kernel/arch/sh/kernel/
H A Ddumpstack.c57 struct thread_info *tinfo, int *graph) in print_ftrace_graph_addr() argument
69 ret_stack = ftrace_graph_get_ret_stack(task, *graph); in print_ftrace_graph_addr()
77 (*graph)++; in print_ftrace_graph_addr()
83 struct thread_info *tinfo, int *graph) in print_ftrace_graph_addr() argument
93 int graph = 0; in stack_reader_dump() local
105 context, &graph); in stack_reader_dump()
/OK3568_Linux_fs/kernel/drivers/iio/adc/
H A Dsc27xx_adc.c125 struct sc27xx_adc_linear_graph *graph; in sc27xx_adc_scale_calibration() local
134 graph = &big_scale_graph; in sc27xx_adc_scale_calibration()
138 graph = &small_scale_graph; in sc27xx_adc_scale_calibration()
155 graph->adc0 = sc27xx_adc_get_calib_data(calib_data, calib_graph->adc0); in sc27xx_adc_scale_calibration()
156 graph->adc1 = sc27xx_adc_get_calib_data(calib_data >> 8, in sc27xx_adc_scale_calibration()
271 static int sc27xx_adc_to_volt(struct sc27xx_adc_linear_graph *graph, in sc27xx_adc_to_volt() argument
276 tmp = (graph->volt0 - graph->volt1) * (raw_adc - graph->adc1); in sc27xx_adc_to_volt()
277 tmp /= (graph->adc0 - graph->adc1); in sc27xx_adc_to_volt()
278 tmp += graph->volt1; in sc27xx_adc_to_volt()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/rockchip/
H A Drockchip,rk618.txt18 The connections to the video ports are modeled using the OF graph
19 bindings specified in Documentation/devicetree/bindings/graph.txt.
69 The connections to the video ports are modeled using the OF graph
70 bindings specified in Documentation/devicetree/bindings/graph.txt.
123 The connections to the video ports are modeled using the OF graph
124 bindings specified in Documentation/devicetree/bindings/graph.txt.
174 The connections to the video ports are modeled using the OF graph
175 bindings specified in Documentation/devicetree/bindings/graph.txt.
230 The connections to the video ports are modeled using the OF graph
231 bindings specified in Documentation/devicetree/bindings/graph.txt.
[all …]
/OK3568_Linux_fs/kernel/kernel/trace/
H A Dtrace_irqsoff.c40 static void stop_irqsoff_tracer(struct trace_array *tr, int graph);
41 static int start_irqsoff_tracer(struct trace_array *tr, int graph);
462 static int register_irqsoff_function(struct trace_array *tr, int graph, int set) in register_irqsoff_function() argument
470 if (graph) in register_irqsoff_function()
481 static void unregister_irqsoff_function(struct trace_array *tr, int graph) in unregister_irqsoff_function() argument
486 if (graph) in unregister_irqsoff_function()
506 static int register_irqsoff_function(struct trace_array *tr, int graph, int set) in register_irqsoff_function() argument
510 static void unregister_irqsoff_function(struct trace_array *tr, int graph) { } in unregister_irqsoff_function() argument
532 static int start_irqsoff_tracer(struct trace_array *tr, int graph) in start_irqsoff_tracer() argument
536 ret = register_irqsoff_function(tr, graph, 0); in start_irqsoff_tracer()
[all …]
H A Dtrace_sched_wakeup.c38 static int start_func_tracer(struct trace_array *tr, int graph);
39 static void stop_func_tracer(struct trace_array *tr, int graph);
233 static int register_wakeup_function(struct trace_array *tr, int graph, int set) in register_wakeup_function() argument
241 if (graph) in register_wakeup_function()
252 static void unregister_wakeup_function(struct trace_array *tr, int graph) in unregister_wakeup_function() argument
257 if (graph) in unregister_wakeup_function()
277 static int register_wakeup_function(struct trace_array *tr, int graph, int set) in register_wakeup_function() argument
281 static void unregister_wakeup_function(struct trace_array *tr, int graph) { } in unregister_wakeup_function() argument
329 static int start_func_tracer(struct trace_array *tr, int graph) in start_func_tracer() argument
333 ret = register_wakeup_function(tr, graph, 0); in start_func_tracer()
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/contrib/
H A Dgraph-tool29 graph = networkx.DiGraph(networkx.nx_pydot.read_dot(dotfile))
32 close_matches = difflib.get_close_matches(node, graph.nodes(), cutoff=0.7)
37 if not fromnode in graph:
39 if not tonode in graph:
41 return networkx.all_simple_paths(graph, source=fromnode, target=tonode)
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/mediactl/
H A Dmedia-controller-model.rst10 hardware devices and Linux Kernel interfaces are modelled as graph
11 objects on an oriented graph. The object types that constitute the graph
20 - An **interface** is a graph representation of a Linux Kernel
22 controls one or more entities in the graph.
H A Dmedia-ioc-g-topology.rst13 MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties
42 the graph elements that are desired, putting the pointers to them at the
47 desired arrays with the media graph elements.
60 - Version of the media graph topology. When the graph is created,
61 this field starts with zero. Every time a graph element is added
66 - Number of entities in the graph
81 - Number of interfaces in the graph
96 - Total number of pads in the graph
110 - Total number of data and interface links in the graph
290 smaller than the actual number of elements inside the graph. This
/OK3568_Linux_fs/buildroot/
H A DMakefile167 clean distclean help show-targets graph-depends \
168 %-graph-depends %-show-depends %-show-version \
169 graph-build graph-size list-defconfigs \
911 .PHONY: graph-build
912 graph-build: $(O)/build/build-time.log
914 $(foreach o,name build duration,./support/scripts/graph-build-time \
918 $(foreach t,packages steps,./support/scripts/graph-build-time \
923 .PHONY: graph-depends-requirements
924 graph-depends-requirements:
928 .PHONY: graph-depends
[all …]
/OK3568_Linux_fs/kernel/sound/soc/generic/
H A DMakefile4 snd-soc-audio-graph-card-objs := audio-graph-card.o
8 obj-$(CONFIG_SND_AUDIO_GRAPH_CARD) += snd-soc-audio-graph-card.o

12345678910>>...12