Home
last modified time | relevance | path

Searched refs:_nodes (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_parser.h74 } _nodes; member
116 #define dn_ident dn_u._nodes._ident /* VAR,SYM,FUN,AGG,INL,PROBE */
117 #define dn_args dn_u._nodes._links[0] /* DT_NODE_VAR, FUNC */
118 #define dn_child dn_u._nodes._links[0] /* DT_NODE_OP1 */
119 #define dn_left dn_u._nodes._links[0] /* DT_NODE_OP2, OP3 */
120 #define dn_right dn_u._nodes._links[1] /* DT_NODE_OP2, OP3 */
121 #define dn_expr dn_u._nodes._links[2] /* DT_NODE_OP3, DEXPR */
122 #define dn_aggfun dn_u._nodes._links[0] /* DT_NODE_AGG */
123 #define dn_aggtup dn_u._nodes._links[1] /* DT_NODE_AGG */
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
HDLinkingContext.h136 std::vector<std::unique_ptr<Node>> &getNodes() { return _nodes; } in getNodes()
137 const std::vector<std::unique_ptr<Node>> &getNodes() const { return _nodes; } in getNodes()
244 std::vector<std::unique_ptr<Node>> _nodes; variable