Home
last modified time | relevance | path

Searched refs:accumulated_cost_offset (Results 1 – 7 of 7) sorted by relevance

/external/srec/srec/crec/
Dsrec_initialize.c188 …rec->accumulated_cost_offset = (bigcostdata*)CALLOC_CLR(max_frames, sizeof(bigcostdata), "search.s… in allocate_recognition()
191 rec->accumulated_cost_offset[i] = 0; in allocate_recognition()
203 rec->rec[i].accumulated_cost_offset = rec->accumulated_cost_offset; in allocate_recognition()
230 FREE(rec->accumulated_cost_offset); in free_recognition()
Dword_lattice.c128 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0); in print_word_token_backtrace()
129 cost = wtoken->cost + rec->accumulated_cost_offset[ wtoken->end_time]; in print_word_token_backtrace()
134 … cost_for_word = cost - next_wtoken->cost - rec->accumulated_cost_offset[ next_wtoken->end_time]; in print_word_token_backtrace()
317 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0); in print_word_token()
318 cost = wtoken->cost + rec->accumulated_cost_offset[wtoken->end_time]; in print_word_token()
322 cost_for_word = cost - next_wtoken->cost - rec->accumulated_cost_offset[next_wtoken->end_time]; in print_word_token()
508 *cost += rec->accumulated_cost_offset[ wtoken->end_time];
Dsrec_results.c380 start_cost = wtoken->cost + rec->accumulated_cost_offset[ start_frame]; in srec_nbest_get_choice_info()
388 end_cost = wtoken->cost + rec->accumulated_cost_offset[ end_frame]; in srec_nbest_get_choice_info()
Dsrec_debug.c102 bigcostdata cost_offset = rec->accumulated_cost_offset[rec->current_search_frame-1]; in print_fsmarc_token()
Dastar.c503 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0); in make_partial_path()
504 parp->costsofar = rec->accumulated_cost_offset[ wtoken->end_time]; in make_partial_path()
1106 parp_costsofar += rec->accumulated_cost_offset[ prune_frame]; in astar_stack_prepare_from_active_search()
1123 parp_costsofar += rec->accumulated_cost_offset[ prune_frame]; in astar_stack_prepare_from_active_search()
Dsrec.c659 rec->accumulated_cost_offset[current_frame] = current_best_cost; in reset_cost_offsets()
661 …rec->accumulated_cost_offset[current_frame] = rec->accumulated_cost_offset[current_frame-1] + curr… in reset_cost_offsets()
1855 rec->accumulated_cost_offset[ rec->current_search_frame] = in srec_no_more_frames()
1856 rec->accumulated_cost_offset[ rec->current_search_frame-1]; in srec_no_more_frames()
/external/srec/srec/include/
Dsrec.h266 bigcostdata* accumulated_cost_offset; /* see multi_srec, below */ member
302 bigcostdata *accumulated_cost_offset; /* same as above but cumulative */ member
334 bigcostdata accumulated_cost_offset(costdata *cost_offsets, frameID frame);