Searched defs:wtoken_index (Results 1 - 3 of 3) sorted by relevance

/external/srec/srec/crec/
H A Dword_lattice.c88 wtokenID wtoken_index = wl->words_for_frame[ ifr]; local
89 while (wtoken_index != MAXwtokenID)
91 word_token* wtoken = &word_token_array[wtoken_index];
93 wtoken_index = wtoken->next_token_index;
111 void print_word_token_backtrace(srec* rec, wtokenID wtoken_index, char* tail) argument
120 while (wtoken_index != MAXwtokenID)
122 wtoken = &rec->word_token_array[wtoken_index];
141 PLogMessage (" (%d W%d %s cost=%d/%d/%d time=%d%s node=%d)", wtoken_index, wtoken->word, p, wtoken->cost, cost, cost_for_word, wtoken->end_time, iwttime, wtoken->end_node);
143 ASSERT(wtoken->backtrace != wtoken_index);
144 wtoken_index
150 sprint_bword_token_backtrace(char* buf, int buflen, srec* rec, wtokenID wtoken_index) argument
174 sprint_word_token_backtraceByWordID(wordID* wordIDs, size_t* len, srec* rec, wtokenID wtoken_index) argument
230 sprint_word_token_backtrace(char *transcription, int len, srec* rec, wtokenID wtoken_index) argument
308 print_word_token(srec* rec, wtokenID wtoken_index, char* msg) argument
335 print_word_token_list(srec* rec, wtokenID wtoken_index, char* msg) argument
688 wtokenID wtoken_index; local
[all...]
H A Dastar.c1072 int maybe_add_to_active_paths(AstarStack* stack, word_token* word_token_array, bigcostdata cost, wtokenID wtoken_index);
1075 wtokenID wtoken_index; local
1100 wtoken_index = ftoken->word_backtrace;
1101 if (wtoken_index == MAXwtokenID)
1108 rc += (rc1 = maybe_add_to_active_paths(stack, rec->word_token_array, parp_costsofar, wtoken_index));
1119 wtoken_index = stoken->word_backtrace[i];
1120 if (wtoken_index == MAXwtokenID)
1125 rc += (rc1 = maybe_add_to_active_paths(stack, rec->word_token_array, parp_costsofar, wtoken_index));
1142 int maybe_add_to_active_paths(AstarStack* stack, word_token* word_token_array, bigcostdata parp_costsofar, wtokenID wtoken_index) argument
1149 wtoken = &word_token_array[ wtoken_index];
1246 wtokenID wtoken_index; local
[all...]
H A Dsrec.c493 wtokenID wtoken_index = rec->word_token_freelist; local
496 for (; wtoken_index != MAXwtokenID; wtoken_index = wtoken->next_token_index)
498 wtoken = &rec->word_token_array[ wtoken_index];
724 wtokenID wtoken_index; local
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, re
827 wtokenID wtoken_index; local
1788 wtokenID wtoken_index, tmp; local
1921 wtokenID wtoken_index, next_wtoken_index; local
[all...]

Completed in 70 milliseconds