Lines Matching full:wtoken_index
493 wtokenID wtoken_index = rec->word_token_freelist;
496 for (; wtoken_index != MAXwtokenID; wtoken_index = wtoken->next_token_index)
498 wtoken = &rec->word_token_array[ wtoken_index];
724 wtokenID wtoken_index;
740 wtoken_index = create_word_token(rec);
741 //ASSERT(wtoken_index != MAXwtokenID);
742 if (wtoken_index == MAXwtokenID)
751 wtoken = &(rec->word_token_array[wtoken_index]);
759 token_id_to_remove = add_word_token_to_priority_q(rec->word_priority_q, wtoken_index, rec->word_token_array);
761 if (token_id_to_remove == wtoken_index)
768 return_wtoken_index = wtoken_index;
827 wtokenID wtoken_index;
860 /* Jean: see below too, let's remember the wtoken_index we create in
864 wtoken_index = MAXwtokenID;
934 wtoken_index = srec_process_word_boundary_nbest(rec,
941 if (wtoken_index != MAXwtokenID) {
942 WORD_TOKEN_SET_WD_ETIME( (rec->word_token_array+wtoken_index),
943 rec->word_token_array[wtoken_index].end_time - current_ftoken->silence_duration);
945 if( fsm_arc->olabel!=WORD_EPSILON_LABEL && wtoken_index != MAXwtokenID) {
948 WORD_TOKEN_SET_HOMONYM( (rec->word_token_array+wtoken_index), 1);
971 for that in wtoken_index above.
981 if( wtoken_index != MAXwtokenID) {
990 new_ftoken->word_backtrace = wtoken_index;
1003 new_ftoken->word_backtrace = wtoken_index;
1788 wtokenID wtoken_index, tmp;
1790 wtoken_index = wl->words_for_frame[end_frame];
1791 if (wtoken_index == MAXwtokenID)
1921 wtokenID wtoken_index, next_wtoken_index;
1947 for (wtoken_index = rec->word_lattice->words_for_frame[ifr];
1948 wtoken_index != MAXwtokenID; wtoken_index = next_wtoken_index)
1950 wtoken = &rec->word_token_array[wtoken_index];
1952 free_word_token(rec, wtoken_index);