HomeSort by relevance Sort by last modified time
    Searched defs:topo (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/opus/src/src/
mlp_data.c 99 static const int topo[3] = {25, 15, 2}; variable
103 topo,
mlp.h 35 const int *topo; member in struct:__anon19356
mlp_train.h 79 int *topo; member in struct:__anon19357
mlp_train.c 46 MLPTrain * mlp_init(int *topo, int nbLayers, float *inputs, float *outputs, int nbSamples)
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[i]+1)*topo[i+1]*sizeof(net->weights[0][0]))
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/libopus/src/
mlp_data.c 99 static const int topo[3] = {25, 15, 2}; variable
103 topo,
mlp.h 35 const int *topo; member in struct:__anon29180
  /ndk/build/core/
definitions-graph.mk 40 -ndk-topo-debug = $(info $1)
42 -ndk-topo-debug = $(empty)
280 -ndk-mod-topo-zero-incoming = \
284 -ndk-mod-topo-increment-incoming = \
288 -ndk-mod-topo-decrement-incoming = \
292 -ndk-mod-topo-has-incoming = $(_ndk_mod_topo_incoming.$1)
297 -ndk-mod-topo-find-first-zero-incoming = $(firstword $(call -ndk-mod-filter-out,$1,-ndk-mod-topo-has-incoming))
300 -ndk-mod-topo-dump-count = \
318 -ndk-mod-get-topo-list = $(strip
    [all...]
  /external/srec/srec/clib/
srec_arb.c 421 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.low_pel_no, topo.high_pel_no); *
    [all...]
  /external/srec/tools/test_g2g/
test_g2g.c 368 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.high_pel_no)
517 tree_head topo; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 116 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);
2286 pANTLR3_TOPO topo = (pANTLR3_TOPO)ANTLR3_MALLOC(sizeof(ANTLR3_TOPO)); local
    [all...]

Completed in 454 milliseconds