HomeSort by relevance Sort by last modified time
    Searched refs:lexres (Results 1 - 3 of 3) sorted by null

  /external/svox/pico/lib/
picoklex.c 388 picoklex_lexl_result_t *lexres) {
394 lexres->posind[0] = lexentry[lexentry[0] + 1];
396 lexres->phonfound = FALSE;
397 lexres->posindlen = 1;
398 lexres->nrres = 1;
399 PICODBG_DEBUG(("result %d :G2P", lexres->nrres));
401 i = lexres->nrres * (PICOKLEX_POSIND_SIZE);
402 lexres->posindlen += PICOKLEX_POSIND_SIZE;
403 lexres->phonfound = TRUE;
405 lexres->posind[i++] = lexentry[lexentry[0] + 1]
    [all...]
picoklex.h 102 /** lookup lex by graph; result(s) are in lexres, ie. the phones are
104 saved using indices first), lexres contains an index (or several)
112 picoklex_lexl_result_t *lexres);
picowa.c 258 picoklex_lexl_result_t lexres; local
281 found = picoklex_lexLookup(wa->ulex[i], content, head->len, &lexres);
290 if (!found && !picoklex_lexLookup(wa->lex, content, head->len, &lexres)) {
306 if (lexres.phonfound) { /* incl. ind-phone and possibly multi-ent. */
307 if (lexres.nrres > PICOKLEX_MAX_NRRES) {
313 lexres.nrres = PICOKLEX_MAX_NRRES;
316 if (lexres.nrres == 1) {
317 head->info1 = lexres.posind[0];
321 for (i = 0; i < lexres.nrres; i++) {
322 posbuf[i] = lexres.posind[i * PICOKLEX_POSIND_SIZE]
    [all...]

Completed in 206 milliseconds