Home
last modified time | relevance | path

Searched refs:b_node (Results 1 – 17 of 17) sorted by relevance

/external/u-boot/fs/jffs2/
Djffs2_private.h7 struct b_node { struct
9 struct b_node *next; argument
14 struct b_node *listTail; argument
15 struct b_node *listHead;
17 struct b_node *listLast;
18 int (*listCompare)(struct b_node *new, struct b_node *node);
Djffs2_nand_1pass.c62 static struct b_node *
67 struct b_node *b; in add_node()
84 b = (struct b_node *)&memBase->nodes[size * index]; in add_node()
93 static struct b_node *
94 insert_node(struct b_list *list, struct b_node *new) in insert_node()
97 struct b_node *b, *prev; in insert_node()
123 new->next = (struct b_node *) NULL; in insert_node()
135 static struct b_node *
150 return insert_node(list, (struct b_node *)new); in insert_inode()
153 static struct b_node *
[all …]
Djffs2_nand_private.h6 struct b_node { struct
7 struct b_node *next; argument
31 struct b_node *listTail;
32 struct b_node *listHead;
Djffs2_1pass.c497 struct b_node nodes[NODE_CHUNK];
511 static struct b_node *
516 struct b_node *b; in add_node()
550 static struct b_node *
553 struct b_node *new; in insert_node()
575 static int compare_inodes(struct b_node *new, struct b_node *old) in compare_inodes()
596 static int compare_dirents(struct b_node *new, struct b_node *old) in compare_dirents()
677 struct b_node *b; in jffs2_1pass_read_inode()
821 struct b_node *b; in jffs2_1pass_find_inode()
951 struct b_node *b; in jffs2_1pass_list_inodes()
[all …]
Dmergesort.c15 struct b_node *p, *q, *e, **tail; in sort_list()
/external/tensorflow/tensorflow/tools/graph_transforms/
Dstrip_unused_nodes_test.cc51 NodeDef* b_node = graph_def.add_node(); in TestSimpleAdd() local
52 b_node->set_name("b_node"); in TestSimpleAdd()
53 b_node->set_op("Const"); in TestSimpleAdd()
148 NodeDef* b_node = graph_def.add_node(); in TestSimplePlaceholder() local
149 b_node->set_name("b_node"); in TestSimplePlaceholder()
150 b_node->set_op("Const"); in TestSimplePlaceholder()
191 NodeDef* b_node = graph_def.add_node(); in TestPlaceholderDefaultArgs() local
192 b_node->set_name("b_node"); in TestPlaceholderDefaultArgs()
193 b_node->set_op("Const"); in TestPlaceholderDefaultArgs()
237 NodeDef* b_node = graph_def.add_node(); in TestPlaceholderNamedArgs() local
[all …]
Dsort_by_execution_order_test.cc48 NodeDef* b_node = graph_def.add_node(); in TestSimpleAdd() local
49 b_node->set_name("b_node"); in TestSimpleAdd()
50 b_node->set_op("Const"); in TestSimpleAdd()
/external/antlr/tool/src/main/java/org/antlr/misc/
DGraph.java59 Node<T> b_node = getNode(b); in addEdge() local
60 a_node.addEdge(b_node); in addEdge()
/external/deqp-deps/SPIRV-Tools/source/opt/
Ddominator_tree.cpp236 const DominatorTreeNode* b_node = GetTreeNode(b); in Dominates() local
237 if (!a_node || !b_node) return false; in Dominates()
239 return Dominates(a_node, b_node); in Dominates()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Ddominator_tree.cpp236 const DominatorTreeNode* b_node = GetTreeNode(b); in Dominates() local
237 if (!a_node || !b_node) return false; in Dominates()
239 return Dominates(a_node, b_node); in Dominates()
/external/tensorflow/tensorflow/compiler/xla/service/
Dcall_graph.cc150 const CallGraphNode& b_node = GetNode(b); in DominatesHelper() local
151 if (b_node.callers().empty()) { in DominatesHelper()
158 for (const HloComputation* b_caller : b_node.callers()) { in DominatesHelper()
Dflatten_call_graph_test.cc223 const CallGraphNode& b_node = call_graph->GetNode(b_computation); in TEST_F() local
224 EXPECT_EQ(1, b_node.caller_callsites().size()); in TEST_F()
Dcall_graph_test.cc347 const CallGraphNode& b_node = call_graph->GetNode(b_computation); in TEST_F() local
354 EXPECT_EQ(b_node.depth(), 2); in TEST_F()
/external/mesa3d/src/compiler/nir/
Dnir_from_ssa.c157 merge_node *b_node = exec_node_data(merge_node, bn, node); in merge_merge_sets() local
160 a_node->def->live_index > b_node->def->live_index) { in merge_merge_sets()
203 merge_node *b_node = exec_node_data(merge_node, bn, node); in merge_sets_interfere() local
205 if (a_node->def->live_index <= b_node->def->live_index) { in merge_sets_interfere()
209 current = b_node; in merge_sets_interfere()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dtf2xla_util_test.cc227 Node* b_node = nullptr; in TEST() local
231 if (n->name() == "B") b_node = n; in TEST()
249 b_node->set_assigned_device_name("/device:TPU_REPLICATED_CORE:1"); in TEST()
/external/tensorflow/tensorflow/core/grappler/
Dgraph_view_test.cc277 const NodeDef* b_node = graph.GetNode("b"); in TEST_F() local
278 EXPECT_NE(b_node, nullptr); in TEST_F()
285 EXPECT_EQ(d_output_0, GraphView::OutputPort(b_node, 0)); in TEST_F()
/external/mesa3d/src/compiler/glsl/
Dir.cpp1830 foreach_two_lists(a_node, &this->parameters, b_node, params) { in qualifiers_match()
1832 ir_variable *b = (ir_variable *) b_node; in qualifiers_match()