Home
last modified time | relevance | path

Searched refs:nodes (Results 251 - 275 of 383) sorted by relevance

1...<<111213141516

/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dpcy_local.h88 /* This structure represents the relationship between nodes */
95 /* Number of child nodes */
102 /* nodes at this level */
103 STACK_OF(X509_POLICY_NODE) *nodes; member
114 /* The number of nodes in the tree */
116 /* The maximum number of nodes in the tree */
123 * Extra policy data when additional nodes (not from the certificate) are
/third_party/openssl/crypto/x509/
H A Dpcy_local.h88 /* This structure represents the relationship between nodes */
95 /* Number of child nodes */
102 /* nodes at this level */
103 STACK_OF(X509_POLICY_NODE) *nodes; member
114 /* The number of nodes in the tree */
116 /* The maximum number of nodes in the tree */
123 * Extra policy data when additional nodes (not from the certificate) are
/third_party/skia/third_party/externals/jinja2/
H A Dvisitor.py2 """API for traversing the AST nodes. Implemented by the compiler and
5 from .nodes import Node
13 Per default the visitor functions for the nodes are ``'visit_'`` +
42 """Walks the abstract syntax tree and allows modifications of nodes.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DGraphTraits.h54 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
70 // Return total number of nodes in the graph
105 // Provide iterator ranges for the graph traits nodes and children
108 nodes(const GraphType &G) { in nodes() function
/third_party/typescript/tests/baselines/reference/
H A DinferenceDoesNotAddUndefinedOrNull.js5 forEachChild<T>(cbNode: (node: Node) => T | undefined, cbNodeArray?: (nodes: NodeArray<Node>) => T | undefined): T | undefined;
/third_party/libdrm/tests/amdgpu/
H A Damdgpu_stress.c107 fd = open(devices[i]->nodes[DRM_NODE_RENDER], O_RDWR | O_CLOEXEC); in amdgpu_open_device()
117 devices[i]->nodes[DRM_NODE_RENDER], in amdgpu_open_device()
H A Damdgpu_test.c355 devices[i]->nodes[drm_node], in amdgpu_open_devices()
366 devices[i]->nodes[drm_node], in amdgpu_open_devices()
627 * only device nodes in /dev/dri/ */ in amdgpu_node_is_drm()
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dvisitor.rs37 /// nodes.
43 /// `Ast` nodes.
48 /// This method is called between child nodes of an
56 /// before descending into child nodes.
66 /// after descending into child nodes.
76 /// before descending into child nodes.
86 /// after descending into child nodes.
94 /// This method is called between the left hand and right hand child nodes
126 /// A stack of `Ast` nodes. This is roughly analogous to the call stack
149 /// The remaining child nodes t
[all...]
/third_party/ffmpeg/libavcodec/
H A Dtruemotion2.c108 int nodes; ///< total number of nodes in tree member
157 huff.nodes = get_bits(&ctx->gb, 17); in tm2_build_huff_table()
167 if ((huff.nodes <= 0) || (huff.nodes > 0x10000)) { in tm2_build_huff_table()
169 "nodes: %i\n", huff.nodes); in tm2_build_huff_table()
176 /* allocate space for codes - it is exactly ceil(nodes / 2) entries */ in tm2_build_huff_table()
177 huff.max_num = (huff.nodes + 1) >> 1; in tm2_build_huff_table()
/third_party/ninja/src/
H A Dbuild_test.cc283 // Mark all the out* nodes dirty in TEST_F()
994 // added nodes, but not phony edges to the graph. in TEST_F()
997 // Verify that nodes for blah.h and bar.h were added and that they in TEST_F()
2304 EXPECT_EQ("in1", out1_deps->nodes[0]->path()); in TEST_F()
2309 EXPECT_EQ("in1", out2_deps->nodes[0]->path()); in TEST_F()
2333 EXPECT_EQ("in1", out1_deps->nodes[0]->path()); in TEST_F()
2334 EXPECT_EQ("in2", out1_deps->nodes[1]->path()); in TEST_F()
2339 EXPECT_EQ("in1", out2_deps->nodes[0]->path()); in TEST_F()
2340 EXPECT_EQ("in2", out2_deps->nodes[1]->path()); in TEST_F()
2364 EXPECT_EQ("in1", out1_deps->nodes[ in TEST_F()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dcode-assembler.cc1079 // implicit nodes are target and optionally context. in CallStubN()
1200 Node* nodes[] = {target, args...}; in TailCallBytecodeDispatch() local
1201 CHECK_EQ(descriptor.GetParameterCount() + 1, arraysize(nodes)); in TailCallBytecodeDispatch()
1202 raw_assembler()->TailCallN(call_descriptor, arraysize(nodes), nodes); in TailCallBytecodeDispatch()
1221 Node* nodes[] = {code, function, new_target, arg_count, context}; in TailCallJSCode() local
1222 CHECK_EQ(descriptor.GetParameterCount() + 2, arraysize(nodes)); in TailCallJSCode()
1223 raw_assembler()->TailCallN(call_descriptor, arraysize(nodes), nodes); in TailCallJSCode()
1526 // merge and phi nodes hav in MergeVariables()
[all...]
H A Dcommon-node-cache.h22 // Bundles various caches for common nodes.
85 // Return all nodes from the cache.
86 void GetCachedNodes(ZoneVector<Node*>* nodes);
H A Dstate-values-utils.h43 // ValueArray - array of nodes ({node} has to be nullptr).
69 Node* GetValuesNodeFromCache(Node** nodes, size_t count,
100 // Returns the number of empty nodes that were skipped over.
H A Djs-graph.h77 // Adds all the cached nodes to the given list.
78 void GetCachedNodes(NodeVector* nodes);
80 // Cached global nodes.
H A Draw-machine-assembler.cc270 // Create control merge nodes and effect phis for all predecessor blocks. in MakeReschedulable()
332 // Fix-up loop backedges and re-structure control flow so that loop nodes have in MakeReschedulable()
755 base::SmallVector<Node*, kNumCArgs> nodes(args.size() + 1); in CallCFunctionImpl()
756 nodes[0] = function; in CallCFunctionImpl()
758 args.begin(), args.end(), std::next(nodes.begin()), in CallCFunctionImpl()
763 static_cast<int>(nodes.size()), nodes.begin()); in CallCFunctionImpl()
866 // The raw machine assembler nodes do not have effect and control inputs, in MakeNode()
/third_party/python/Lib/lib2to3/
H A Dbtm_matcher.py5 leaves to the root of the AST and returns a set of nodes for further
6 matching. This reduces significantly the number of candidate nodes."""
33 self.nodes = [self.root]
91 recheck the nodes
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dvisitor.rs27 /// nodes.
33 /// `Hir` nodes.
38 /// This method is called between child nodes of an alternation.
66 /// A stack of `Hir` nodes. This is roughly analogous to the call stack
85 /// The remaining child nodes to visit (which may be empty).
93 /// The remaining child nodes to visit (which may be empty).
140 // Otherwise, we've finished visiting all the child nodes for in visit()
148 /// and only if there are child nodes in the HIR). Otherwise, return None.
/third_party/PyYAML/lib/yaml/
H A Dcomposer.py6 from .nodes import *
H A Dserializer.py6 from .nodes import *
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dextdependency.py47 def nodes(self): member in DiGraph
48 """Iterate over the nodes in the graph."""
53 Iterate over the nodes reachable from the given start node, excluding
60 # All nodes seen during traversal.
63 # The stack of nodes that need visiting.
85 # Set of adjacent of nodes.
143 # Walk a list of the leaf nodes (version and extension
/third_party/alsa-utils/topology/nhlt/intel/ssp/
H A Dssp-debug.c214 fprintf(stdout, "aux sync node_id %u\n", sync->nodes[j].node_id); in ssp_print_internal()
215 fprintf(stdout, "aux sync sampling_rate %u\n", sync->nodes[j].sampling_rate); in ssp_print_internal()
/third_party/PyYAML/tests/lib/
H A Dtest_yaml_ext.py53 def new_serialize_all(nodes, stream=None, Dumper=yaml.CDumper, **kwds):
54 return old_serialize_all(nodes, stream, Dumper, **kwds)
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-graph-builder.h43 block->nodes().RevalidateTail(); in Build()
166 // DCHECK(!current_block_->nodes().is_empty()); in VisitSingleBytecode()
178 // Clear new nodes for the next VisitFoo in VisitSingleBytecode()
200 current_block_->nodes().Add(node); in AddNode()
266 // We shouldn't be moving newly created nodes between registers. in MoveNodeBetweenRegisters()
330 // We should only set register values to nodes that were newly created in in StoreRegister()
331 // this Visit. Existing nodes should be moved between registers with in StoreRegister()
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental-compiler.cc59 for (RegExpTree* child : *node->nodes()) {
377 for (RegExpTree* child : *node->nodes()) {
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcShaderLibrary.cpp1159 vector<tcu::TestNode*> nodes = parser.parse(&buf[0]); in loadShaderFile() local
1161 return nodes; in loadShaderFile()

Completed in 20 milliseconds

1...<<111213141516