Home | History | Annotate | Download | only in crec

Lines Matching full:wtoken

492   word_token* wtoken;
496 for (; wtoken_index != MAXwtokenID; wtoken_index = wtoken->next_token_index)
498 wtoken = &rec->word_token_array[ wtoken_index];
728 word_token* wtoken;
751 wtoken = &(rec->word_token_array[wtoken_index]);
752 wtoken->word = word;
753 wtoken->_word_end_time = 0; // new
754 wtoken->end_time = rec->current_search_frame;
755 wtoken->end_node = end_node;
756 wtoken->backtrace = word_backtrace;
757 wtoken->cost = cost;
788 /* print_word_token(rec, token_id_to_remove, "srec_process_word_boundary killed wtoken "); */
1797 word_token* wtoken;
1801 tmp = wtoken->next_token_index)
1803 wtoken = &rec->word_token_array[tmp];
1804 wtoken->end_time = frame;
1805 wtoken->word = end_word;
1806 wtoken->end_node = rec->context->end_node;
1922 word_token* wtoken;
1950 wtoken = &rec->word_token_array[wtoken_index];
1951 next_wtoken_index = wtoken->next_token_index;
2372 word_token* wtoken = &rec->word_token_array[token_index];
2375 if (wtoken->word == rec->context->beg_silence_word)
2377 if (*start_frame == 0) *start_frame = wtoken->end_time;
2379 if (wtoken->word == rec->context->hack_silence_word)
2381 if (wtoken->backtrace != MAXwtokenID)
2383 next_wtoken = &rec->word_token_array[wtoken->backtrace];
2385 *start_frame = wtoken->end_time;
2391 *end_frame = wtoken->end_time;
2392 if (wtoken->word == rec->context->hack_silence_word
2393 && wtoken->backtrace != MAXwtokenID)
2395 next_wtoken = &rec->word_token_array[wtoken->backtrace];
2399 if (token_index == wtoken->backtrace)
2406 token_index = wtoken->backtrace;
2407 last_word = wtoken->word;