Home
last modified time | relevance | path

Searched refs:sort_key (Results 1 – 7 of 7) 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
166 static struct sort_key *add_key(void) in add_key()
169 struct sort_key **pkey = (struct sort_key **)stupid_compiler; in add_key()
172 return *pkey = xzalloc(sizeof(struct sort_key)); in add_key()
238 struct sort_key *key; in compare_keys()
241 for (key=(struct sort_key *)TT.key_list; !retval && key; in compare_keys()
313 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/kernel-headers/original/uapi/linux/
Dsom.h111 unsigned int sort_key :8; /* for linker */ member
134 unsigned int sort_key :8; member
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dutil.py277 def sort_key(self): member in AcceptItem
306 return cmp(self.sort_key, other.sort_key)
Dutil_test.py155 self.assertEquals((False, False, -0.2, False, 11), item.sort_key)
158 self.assertEquals((False, True, -1, True, 12), item.sort_key)
161 self.assertEquals((True, True, -1, True, 1), item.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;