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

/external/srec/srec/crec/
H A Dpriority_q.c79 wtokenID old_token_index; local
90 old_token_index = *ptoken_index;
92 free_word_token(rec, old_token_index);
H A Dsrec_tokens.c115 void free_fsmarc_token(srec *rec, stokenID old_token_index) argument
118 ASSERT(old_token_index < rec->fsmarc_token_array_size);
119 stoken = &rec->fsmarc_token_array[old_token_index];
121 rec->fsmarc_token_freelist = old_token_index;
253 void free_fsmnode_token(srec *rec, ftokenID old_token_index) argument
256 ASSERT(old_token_index < rec->fsmnode_token_array_size);
257 ftoken = &rec->fsmnode_token_array[old_token_index];
260 rec->fsmnode_token_freelist = old_token_index;
H A Dword_lattice.c588 void free_word_token(srec *rec, wtokenID old_token_index) argument
591 wtoken = &rec->word_token_array[old_token_index];
593 rec->word_token_freelist = old_token_index;
600 void free_word_token_from_lattice(srec *rec, wtokenID old_token_index) argument
620 if (stoken->word_backtrace[i] == old_token_index)
623 old_token_index, stoken_index, i, stoken->cost[i]);
633 if (ftoken->word_backtrace == old_token_index)
636 old_token_index, ftoken_index, ftoken->cost);
641 /* wtoken = &rec->word_token_array[old_token_index];
646 if(wtoken->backtrace == old_token_index) {
[all...]

Completed in 62 milliseconds