Home
last modified time | relevance | path

Searched refs:max_words (Results 1 – 3 of 3) sorted by relevance

/external/srec/srec/crec/
Dsrec_context.c338 Interface->max_words = (wordID)(num_words + num_words_to_add); in wordmap_create()
341 …Interface->words = (char**) CALLOC_CLR(Interface->max_words, sizeof(char*), "srec.graph.wordmap.wo… in wordmap_create()
554 wmap->max_words = wmap->num_words; in wordmap_ceiling()
645 wmap->max_words = wmap->num_base_words; in wordmap_reset()
721 if (wmap->num_words == wmap->max_words) in wordmap_add_word()
726 int itmp_max_words = wmap->max_words * FST_GROW_FACTOR; in wordmap_add_word()
728 if(itmp_max_words - wmap->max_words < FST_GROW_MINWORDS) in wordmap_add_word()
732 … PLogError("error: word ptr overflow in wmap %d max %d\n", (int)wmap->num_words, wmap->max_words); in wordmap_add_word()
744 wmap->max_words = tmp_max_words; in wordmap_add_word()
746 … PLogError("error: word ptr overflow in wmap %d max %d\n", (int)wmap->num_words, wmap->max_words); in wordmap_add_word()
[all …]
/external/srec/srec/include/
Dsrec_context.h51 wordID max_words; member
/external/srec/tools/test_g2g/
Dtest_g2g.c227 fst->olabels->num_words, fst->olabels->max_words, in CheckG2G()