Home
last modified time | relevance | path

Searched refs:wtokenID (Results 1 – 13 of 13) sorted by relevance

/external/srec/srec/include/
Dsrec.h51 wtokenID word_backtrace; /* alternative backtrace, diff from path b.p.*/
69 wtokenID word_backtrace[MAX_HMM]; /* index into word tokens*/
89 wtokenID word_backtrace; /* index into word tokens*/
107 wtokenID backtrace; /* for backtrace */
109 wtokenID next_token_index; /* for maintaining linked lists of these tokens
133 wtokenID *words_for_frame;
146 wtokenID word_token_list; /* index of head token in queue - keep worst at end
254 wtokenID word_token_array_size; /* total number of tokens allocated in
256 wtokenID word_token_freelist; /* index to head of word token freelist*/
259 wtokenID altword_token_array_size;
[all …]
Dword_lattice.h32 void print_word_token(srec* rec, wtokenID wtoken_index, char* msg);
33 void print_word_token_backtrace(srec* rec, wtokenID wtoken_index, char* tail);
34 void print_word_token_list(srec* rec, wtokenID wtoken_index, char* msg);
35 int sprint_bword_token_backtrace(char *buf, int len, srec* rec, wtokenID wtoken_index);
46 int sprint_word_token_backtrace(char *transcription, int len, srec* rec, wtokenID wtoken_index);
53 wtokenID word_token_list_head);
Dsrec_sizes.h36 typedef asr_uint16_t wtokenID; /*for word token storage*/ typedef
Dastar.h74 wtokenID token_index;
/external/srec/srec/crec/
Dpriority_q.c70 wtokenID get_word_token_list(priority_q *pq, word_token *word_token_array) in get_word_token_list()
78 wtokenID *ptoken_index; in remove_non_end_word_from_q()
79 wtokenID old_token_index; in remove_non_end_word_from_q()
163 wtokenID token_index; in sanity_check_priority_q()
187 wtokenID add_word_token_to_priority_q(priority_q *pq, wtokenID token_index_to_add, word_token *word… in add_word_token_to_priority_q()
191 wtokenID token_index, return_token_index; in add_word_token_to_priority_q()
194 wtokenID *ptoken_index; in add_word_token_to_priority_q()
195 wtokenID *pplace_to_add; in add_word_token_to_priority_q()
196 wtokenID *pdelete_index; in add_word_token_to_priority_q()
Dword_lattice.c60 …wl->words_for_frame = (wtokenID*) CALLOC_CLR(max_frames, sizeof(wtokenID), "search.word_lattice.wo… in allocate_word_lattice()
88 wtokenID wtoken_index = wl->words_for_frame[ ifr]; in lattice_best_cost_to_frame()
101 wtokenID word_token_list_head) in lattice_add_word_tokens()
111 void print_word_token_backtrace(srec* rec, wtokenID wtoken_index, char* tail) in print_word_token_backtrace()
150 int sprint_bword_token_backtrace(char* buf, int buflen, srec* rec, wtokenID wtoken_index) in sprint_bword_token_backtrace()
174 …sprint_word_token_backtraceByWordID(wordID* wordIDs, size_t* len, srec* rec, wtokenID wtoken_index) in sprint_word_token_backtraceByWordID()
230 int sprint_word_token_backtrace(char *transcription, int len, srec* rec, wtokenID wtoken_index) in sprint_word_token_backtrace()
308 void print_word_token(srec* rec, wtokenID wtoken_index, char* msg) in print_word_token()
335 void print_word_token_list(srec* rec, wtokenID wtoken_index, char* msg) in print_word_token_list()
356 wtokenID token_index;
[all …]
Dastar.c291 wtokenID extend_token_index, in extend_path()
301 wtokenID best_extend_token; in extend_path()
340 wtokenID alt_token_index = alt_extension->token_index; in extend_path()
341 wtokenID alt_bt_token_index; in extend_path()
342 wtokenID bt_token_index; in extend_path()
486 wtokenID token_index, srec* rec, in make_partial_path()
571 wtokenID token_index; in astar_stack_prepare()
660 wtokenID token_index, btoken_index; in astar_stack_do_backwards_search()
1072 …ve_paths(AstarStack* stack, word_token* word_token_array, bigcostdata cost, wtokenID wtoken_index);
1075 wtokenID wtoken_index; in astar_stack_prepare_from_active_search()
[all …]
Dsrec_tokens.c138 wtokenID i; in initialize_free_word_tokens()
151 wtokenID get_free_word_token(srec *rec, miscdata what_to_do_if_fails) in get_free_word_token()
153 wtokenID token_to_return; in get_free_word_token()
271 wtokenID i; in initialize_free_altword_tokens()
Dsrec.c493 wtokenID wtoken_index = rec->word_token_freelist; in reprune_word_tokens_if_necessary()
494 wtokenID num_free_wtokens = 0; in reprune_word_tokens_if_necessary()
673 static wtokenID create_word_token(srec *rec) in create_word_token()
675 wtokenID word_token_index; in create_word_token()
695 static int block_fsmnodes_per_backtrace(srec *rec, wtokenID wtoken_id) in block_fsmnodes_per_backtrace()
716 static wtokenID srec_process_word_boundary_nbest(srec* rec, in srec_process_word_boundary_nbest()
719 wtokenID word_backtrace, in srec_process_word_boundary_nbest()
724 wtokenID wtoken_index; in srec_process_word_boundary_nbest()
725 wtokenID return_wtoken_index; in srec_process_word_boundary_nbest()
726 wtokenID token_id_to_remove; in srec_process_word_boundary_nbest()
[all …]
Dsrec_initialize.c100 rec->word_token_array_size = (wtokenID)max_word_tokens; in allocate_recognition1()
108 rec->altword_token_array_size = (wtokenID)max_altword_tokens; in allocate_recognition1()
Dsrec_tokens.h45 wtokenID get_free_word_token(srec *rec, miscdata what_to_do_if_fails);
Dsrec_stats.c91 wtokenID wt_index; in srec_stats_update()
Dsrec_debug.c101 wtokenID* word_backtrace = &stoken->word_backtrace[0]; in print_fsmarc_token()