Home
last modified time | relevance | path

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

/external/toybox/toys/posix/
Dsort.c82 struct sort_key struct
84 struct sort_key *next_key; // linked list argument
91 static char *get_key_data(char *str, struct sort_key *key, int flags) in get_key_data() argument
169 static struct sort_key *add_key(void) in add_key()
172 struct sort_key **pkey = (struct sort_key **)stupid_compiler; in add_key()
175 return *pkey = xzalloc(sizeof(struct sort_key)); in add_key()
241 struct sort_key *key; in compare_keys()
244 for (key=(struct sort_key *)TT.key_list; !retval && key; in compare_keys()
316 struct sort_key *key = add_key(); in sort_main()
/external/opencv/cvaux/src/
Dcvbgfg_gaussmix.cpp73 static void icvInsertionSortGaussians( CvGaussBGPoint* g_point, double* sort_key, CvGaussBGStatMode…
110 static void icvGetSortKey( const int nChannels, double* sort_key, const CvGaussBGPoint* g_point,
284 double sort_key[CV_BGFG_MOG_MAX_NGAUSSIANS]; in icvUpdateGaussianBGModel() local
310 icvGetSortKey( nChannels, sort_key, g_point, &bg_model_params ); in icvUpdateGaussianBGModel()
311 … icvInsertionSortGaussians( g_point, sort_key, (CvGaussBGStatModelParams *)&bg_model_params ); in icvUpdateGaussianBGModel()
355 static void icvInsertionSortGaussians( CvGaussBGPoint* g_point, double* sort_key, CvGaussBGStatMode… in icvInsertionSortGaussians() argument
360 double index = sort_key[i]; in icvInsertionSortGaussians()
361 for( j = i; j > 0 && sort_key[j-1] < index; j-- ) //sort decending order in icvInsertionSortGaussians()
363 double temp_sort_key = sort_key[j]; in icvInsertionSortGaussians()
364 sort_key[j] = sort_key[j-1]; in icvInsertionSortGaussians()
[all …]
/external/autotest/client/common_lib/cros/graphite/
Des_utils.py486 sort_key = sort[0].keys()[0]
491 key = lambda hit:(hit['_source'][sort_key] if '_source' in hit else
492 hit['fields'][sort_key][0])
/external/autotest/server/cros/
Dprovision.py203 sort_key = (lambda config:
206 return sorted(split_configurations.items(), key=sort_key)
/external/v8/tools/release/
Dsearch_related_commits.py166 sort_key = lambda x: ( function
172 high_level_commits = sorted(all_related_commits.keys(), key=sort_key)
/external/webrtc/webrtc/system_wrappers/source/
Dsort.cc180 KeyType operator()(const SortKey<KeyType>& sort_key,
182 return sort_key.key_ >> offset;