Searched defs:topo (Results 1 - 5 of 5) sorted by relevance

/external/libopus/src/
H A Dmlp_data.c103 static const int topo[3] = {25, 15, 2}; variable
107 topo,
H A Dmlp.h35 const int *topo; member in struct:__anon11328
H A Dmlp_train.h79 int *topo; member in struct:__anon11329
H A Dmlp_train.c46 MLPTrain * mlp_init(int *topo, int nbLayers, float *inputs, float *outputs, int nbSamples) argument
52 net->topo = malloc(nbLayers*sizeof(net->topo[0]));
54 net->topo[i] = topo[i];
55 inDim = topo[0];
56 outDim = topo[nbLayers-1];
62 net->weights[i] = malloc((topo[i]+1)*topo[i+1]*sizeof(net->weights[0][0]));
63 net->best_weights[i] = malloc((topo[
116 int *topo; local
206 int *topo = arg->net->topo; local
231 int *topo; local
471 int topo[3] = {nbInputs, nbHidden, nbOutputs}; local
[all...]
/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...]

Completed in 243 milliseconds