HomeSort by relevance Sort by last modified time
    Searched refs:accumulated_cost_offset (Results 1 - 7 of 7) sorted by null

  /external/srec/srec/crec/
srec_initialize.c 188 rec->accumulated_cost_offset = (bigcostdata*)CALLOC_CLR(max_frames, sizeof(bigcostdata), "search.srec.accumulated_cost_offset");
191 rec->accumulated_cost_offset[i] = 0;
203 rec->rec[i].accumulated_cost_offset = rec->accumulated_cost_offset;
230 FREE(rec->accumulated_cost_offset);
word_lattice.c 128 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0);
129 cost = wtoken->cost + rec->accumulated_cost_offset[ wtoken->end_time];
134 cost_for_word = cost - next_wtoken->cost - rec->accumulated_cost_offset[ next_wtoken->end_time];
317 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0);
318 cost = wtoken->cost + rec->accumulated_cost_offset[wtoken->end_time];
322 cost_for_word = cost - next_wtoken->cost - rec->accumulated_cost_offset[next_wtoken->end_time];
508 *cost += rec->accumulated_cost_offset[ wtoken->end_time];
srec_debug.c 102 bigcostdata cost_offset = rec->accumulated_cost_offset[rec->current_search_frame-1];
srec_results.c 380 start_cost = wtoken->cost + rec->accumulated_cost_offset[ start_frame];
388 end_cost = wtoken->cost + rec->accumulated_cost_offset[ end_frame];
astar.c 503 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0);
504 parp->costsofar = rec->accumulated_cost_offset[ wtoken->end_time];
    [all...]
srec.c 659 rec->accumulated_cost_offset[current_frame] = current_best_cost;
661 rec->accumulated_cost_offset[current_frame] = rec->accumulated_cost_offset[current_frame-1] + current_best_cost;
    [all...]
  /external/srec/srec/include/
srec.h 266 bigcostdata* accumulated_cost_offset; /* see multi_srec, below */ member in struct:srec_t
302 bigcostdata *accumulated_cost_offset; /* same as above but cumulative */ member in struct:__anon15476
334 bigcostdata accumulated_cost_offset(costdata *cost_offsets, frameID frame);

Completed in 85 milliseconds