Home
last modified time | relevance | path

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

/external/srec/srec/crec/
Dastar.c243 void print_partial_paths(partial_path** parps, int num_parps, srec* rec, const char* msg);
245 void sort_partial_paths(partial_path** parps, int num_parps);
246 void insert_partial_path(partial_path** parps, int *pnum_parps,
883 void sort_partial_paths(partial_path** parps, int num_parps) in sort_partial_paths() argument
890 if (parps[j]->costsofar > parps[j+1]->costsofar) in sort_partial_paths()
892 partial_path* parp = parps[j]; in sort_partial_paths()
893 parps[j] = parps[j+1]; in sort_partial_paths()
894 parps[j+1] = parp; in sort_partial_paths()
900 void insert_partial_path(partial_path** parps, int *pnum_parps, partial_path* insert_parp) in insert_partial_path() argument
910 if (insert_parp->costsofar < parps[i]->costsofar) in insert_partial_path()
[all …]