Home
last modified time | relevance | path

Searched refs:max_cost_in_q (Results 1 – 2 of 2) sorted by relevance

/external/srec/srec/crec/
Dpriority_q.c46 pq->max_cost_in_q = MAXcostdata; in allocate_priority_q()
62 pq->max_cost_in_q = MAXcostdata; in clear_priority_q()
81 pq->max_cost_in_q = MAXcostdata; in remove_non_end_word_from_q()
93 pq->max_cost_in_q = MAXcostdata; /* fix: sep9 */ in remove_non_end_word_from_q()
98 if ((pq->max_cost_in_q == MAXcostdata) || (token->cost > pq->max_cost_in_q)) in remove_non_end_word_from_q()
100 pq->max_cost_in_q = token->cost; in remove_non_end_word_from_q()
177 ASSERT(pq->max_cost_in_q == token->cost); in sanity_check_priority_q()
213 if (cost_to_add >= pq->max_cost_in_q && pq->num_in_q >= pq->max_in_q) in add_word_token_to_priority_q()
217 cost_to_add, pq->max_cost_in_q, pq->num_in_q); in add_word_token_to_priority_q()
274 pq->max_cost_in_q = cost_to_add; in add_word_token_to_priority_q()
[all …]
/external/srec/srec/include/
Dsrec.h148 costdata max_cost_in_q; member