| /freebsd/sys/arm64/coresight/ |
| H A D | coresight_acpi.c | 63 cs_acpi_validate_dsd_graph(const union acpi_object *graph) in cs_acpi_validate_dsd_graph() argument 69 if (graph->Package.Count < 2) in cs_acpi_validate_dsd_graph() 72 rev = &graph->Package.Elements[0]; in cs_acpi_validate_dsd_graph() 73 nr_graphs = &graph->Package.Elements[1]; in cs_acpi_validate_dsd_graph() 89 if (graph->Package.Count != (n + 2)) in cs_acpi_validate_dsd_graph() 93 obj = &graph->Package.Elements[i]; in cs_acpi_validate_dsd_graph() 225 const union acpi_object *graph_list, *graph; in cs_get_coresight_graph() local 236 graph = &graph_list->Package.Elements[i]; in cs_get_coresight_graph() 237 if (!cs_is_acpi_coresight_graph(graph)) in cs_get_coresight_graph() 239 if (cs_acpi_validate_coresight_graph(graph)) in cs_get_coresight_graph() [all …]
|
| /freebsd/usr.bin/tsort/ |
| H A D | tsort.c | 89 static NODE *graph, **cycle_buf, **longest_cycle; variable 261 if ((n->n_next = graph) != NULL) in get_node() 262 graph->n_prevp = &n->n_next; in get_node() 263 n->n_prevp = &graph; in get_node() 264 graph = n; in get_node() 283 for (n = graph; n != NULL; n = n->n_next) in clear_cycle() 294 while (graph != NULL) { in tsort() 301 for (cnt = 0, n = graph; n != NULL; n = next) { in tsort() 308 } while (graph != NULL && cnt); in tsort() 310 if (graph == NULL) in tsort() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/sound/ |
| H A D | audio-graph-card.txt | 5 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 …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | graphviz | 7 # line matches a LaTeX file containing the word "graph" (with a { 9 #0 regex/100l [\r\n\t\ ]*graph[\r\n\t\ ]+.*\\{ graphviz graph text
|
| H A D | visx | 29 >2 byte 130 (graph) 30 >2 byte 131 (adjacency graph) 31 >2 byte 132 (adjacency graph library)
|
| /freebsd/contrib/pkgconf/doc/ |
| H A D | libpkgconf-pkg.rst | 105 :param pkgconf_dependency_t* pkgdep: The dependency graph node to solve. 112 Verify the graph dependency nodes are satisfiable by walking the tree using 116 …:param pkgconf_pkg_t* root: The root entry in the package dependency graph which should contain th… 123 Walk and resolve the dependency graph up to `maxdepth` levels. 126 :param pkgconf_pkg_t* root: The root of the dependency graph. 127 …_traverse_func_t func: A traversal function to call for each resolved node in the dependency graph. 129 …:param int maxdepth: The maximum depth to walk the dependency graph for. -1 means infinite recurs… 136 Walks a dependency graph and extracts relevant ``CFLAGS`` fragments. 139 :param pkgconf_pkg_t* root: The root of the dependency graph. 147 Walks a dependency graph and extracts relevant ``LIBS`` fragments. [all …]
|
| H A D | libpkgconf-queue.rst | 5 The `queue` module provides an interface that allows easily building a dependency graph from an 7 dependency graph prior to working with it. 24 :param pkgconf_pkg_t* world: The designated root of the dependency graph. 41 …:param pkgconf_pkg_t* world: The root for the generated dependency graph. Should have PKGCONF_PKG… 46 Solves and flattens the dependency graph for the supplied dependency list. 50 …:param pkgconf_pkg_t* world: The root for the generated dependency graph, provided by the caller. … 58 feed the solution to a callback function if a complete dependency graph is found.
|
| /freebsd/contrib/byacc/ |
| H A D | descrip.mms | 8 error.obj,graph.obj, \ 42 graph.obj : graph.c
|
| /freebsd/sys/contrib/device-tree/Bindings/connector/ |
| H A D | samsung,usb-connector-11pin.txt | 15 - any data bus to the connector should be modeled using the OF graph bindings 16 specified in bindings/graph.txt, unless the bus is between parent node and 18 has assigned OF graph port number as follows:
|
| /freebsd/usr.bin/gprof/ |
| H A D | gprof.callg | 4 call graph profile: 10 index the index of the function in the call graph 33 index the index of the function in the call graph 60 index the index of this parent in the call graph 86 index the index of this child in the call graph listing,
|
| /freebsd/usr.bin/clang/llvm-xray/ |
| H A D | Makefile | 11 SRCS+= xray-graph-diff.cpp 12 SRCS+= xray-graph.cpp
|
| /freebsd/sys/contrib/device-tree/src/arm64/renesas/ |
| H A D | ulcb-audio-graph-card2.dtsi | 17 #include "ulcb-audio-graph-card.dtsi" 20 compatible = "audio-graph-card2";
|
| /freebsd/sys/contrib/device-tree/Bindings/display/connector/ |
| H A D | vga-connector.txt | 15 The VGA connector internal connections are modeled using the OF graph bindings 16 specified in Documentation/devicetree/bindings/graph.txt.
|
| /freebsd/contrib/googletest/googlemock/test/ |
| H A D | gmock-matchers-misc_test.cc | 502 MatchMatrix graph(nodes, nodes); in TEST_P() local 504 ElementMatcherPairs matches = internal::FindMaxBipartiteMatching(graph); in TEST_P() 505 EXPECT_EQ(FindBacktrackingMaxBPM(graph).size(), matches.size()) in TEST_P() 506 << "graph: " << graph.DebugString(); in TEST_P() 509 std::vector<bool> seen_element(graph.LhsSize()); in TEST_P() 510 std::vector<bool> seen_matcher(graph.RhsSize()); in TEST_P() 515 EXPECT_TRUE(graph.HasEdge(ilhs, irhs)); in TEST_P() 521 } while (graph.NextGraph()); in TEST_P() 554 MatchMatrix graph(nlhs, nrhs); in TEST_P() local 556 EXPECT_EQ(FindBacktrackingMaxBPM(graph).size(), in TEST_P() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/display/bridge/ |
| H A D | sii902x.txt | 39 simple-card or audio-graph-card binding. See their binding 43 Documentation/devicetree/bindings/sound/audio-graph-card.yaml 44 Note: In case of the audio-graph-card binding the used port
|
| H A D | dw_hdmi.txt | 31 expressed in using ports as specified in the device graph bindings defined 32 in Documentation/devicetree/bindings/graph.txt. The numbering of the ports
|
| /freebsd/sys/contrib/device-tree/src/arm64/zte/ |
| H A D | zx296718-pcbox.dts | 38 compatible = "audio-graph-card"; 43 compatible = "audio-graph-card";
|
| /freebsd/sys/contrib/device-tree/Bindings/display/hisilicon/ |
| H A D | dw-dsi.txt | 15 See Documentation/devicetree/bindings/graph.txt for more device graph info.
|
| /freebsd/contrib/pkgconf/ |
| H A D | NEWS | 76 * Disable graph recursion in `--variable` queries as it was generating 139 rendered dependency graph. 142 * Do not reference the graph root by name when presenting error messages about 154 * Reintroduce an optimization to the dependency graph walker which avoids 215 pkg-config behavior, but still operates on a solved dependency graph. 231 * When flattening the dependency graph, retain the latest seen edges 289 * New API: pkgconf_solution_free(), which frees a compiled solution graph. 297 the solved graph to sometimes miss required dependency nodes because the 306 * Skip graph flattening and traversal for query types which only make sense 310 these cases, but this is no longer helpful because the graph is flattened [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/display/ |
| H A D | truly,nt35597.txt | 21 are modeled using the OF graph bindings specified in 22 Documentation/devicetree/bindings/graph.txt.
|
| H A D | mipi-dsi-bus.txt | 70 using the graph bindings [1], [2]. 78 The graph bindings should be used to represent the multiple DSI busses that are 82 [1] Documentation/devicetree/bindings/graph.txt 90 DSI host using of-graph bindings.
|
| H A D | arm,hdlcd.txt | 21 using the OF graph bindings specified in 22 Documentation/devicetree/bindings/graph.txt.
|
| /freebsd/sys/contrib/device-tree/Bindings/display/atmel/ |
| H A D | hlcdc-dc.txt | 15 to external devices using the OF graph representation (see ../graph.txt).
|
| /freebsd/sys/contrib/device-tree/Bindings/display/rockchip/ |
| H A D | rockchip-lvds.txt | 33 Their connections are modeled using the OF graph bindings specified in 34 Documentation/devicetree/bindings/graph.txt.
|
| /freebsd/sys/contrib/device-tree/Bindings/display/imx/ |
| H A D | ldb.txt | 47 Each LVDS Channel has to contain either an of graph link to a panel device node 54 Documentation/devicetree/bindings/graph.txt. 93 /* Using an of-graph endpoint link to connect the panel */
|