Searched refs:topo (Results 1 - 4 of 4) sorted by relevance

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c116 static void addEdge (pANTLR3_TOPO topo, ANTLR3_UINT32 edge, ANTLR3_UINT32 dependency);
117 static pANTLR3_UINT32 sortToArray (pANTLR3_TOPO topo);
118 static void sortVector (pANTLR3_TOPO topo, pANTLR3_VECTOR v);
119 static void freeTopo (pANTLR3_TOPO topo);
2272 pANTLR3_TOPO topo;
2273 topo = antlr3NewTopo();
2275 if (topo == NULL) { out of memory }
2277 topo->addEdge(topo, 3, 0); // Node 3 depends on node 0
2278 topo
2286 pANTLR3_TOPO topo = (pANTLR3_TOPO)ANTLR3_MALLOC(sizeof(ANTLR3_TOPO)); local
2316 addEdge(pANTLR3_TOPO topo, ANTLR3_UINT32 edge, ANTLR3_UINT32 dependency) argument
2415 DFS(pANTLR3_TOPO topo, ANTLR3_UINT32 node) argument
2523 sortToArray(pANTLR3_TOPO topo) argument
2591 sortVector(pANTLR3_TOPO topo, pANTLR3_VECTOR v) argument
2692 freeTopo(pANTLR3_TOPO topo) argument
[all...]
/external/srec/tools/test_g2g/
H A Dtest_g2g.c368 tree_head topo; local
370 topo.nnodes = 0;
371 traverse_tree(node, &topo, num_terminal_nodes);
372 return topo.nnodes;
379 tree_head topo; local
386 topo.low_pel_no = 32567;
387 topo.high_pel_no = 0;
388 traverse_tree(a->pdata[i].model_nodes, &topo, &num_hmms_in_phoneme);
390 topo.low_pel_no, topo
517 tree_head topo; local
[all...]
/external/srec/srec/clib/
H A Dsrec_arb.c421 tree_head topo;
423 topo.nnodes = 0;
424 traverse_tree(node, &topo, num_terminal_nodes);
425 return topo.nnodes;
441 tree_head topo; local
448 topo.low_pel_no = 32567;
449 topo.high_pel_no = 0;
450 topo.nnodes = 0;
451 traverse_tree(a->pdata[i].model_nodes, &topo, &num_hmms_in_phoneme);
453 topo
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h475 void (*addEdge) (struct ANTLR3_TOPO_struct * topo, ANTLR3_UINT32 edge, ANTLR3_UINT32 dependency);
489 * make a long term copy of this array if you do not want to keep the topo
492 pANTLR3_UINT32 (*sortToArray) (struct ANTLR3_TOPO_struct * topo);
498 void (*sortVector) (struct ANTLR3_TOPO_struct * topo, pANTLR3_VECTOR v);
503 void (*free) (struct ANTLR3_TOPO_struct * topo);

Completed in 100 milliseconds