HomeSort by: relevance | last modified time | path
    Searched defs:sort (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/external/bsd/drm2/include/linux/
sort.h 1 /* $NetBSD: sort.h,v 1.3 2021/12/19 11:20:41 riastradh Exp $ */
40 sort(void *array, size_t nelem, size_t elemsize, function in typeref:typename:void
  /src/sys/kern/
makesyscalls.sh 1125 function sort(arr, n, i, j, t) { function
1126 # this is going to be bubble sort because I cannot be bothered to
1127 # write a real sort, this whole script is hopefully going to be
1171 sort(funcseenvars, numfuncseenvars)
  /src/games/mille/
move.c 153 sort(pp->hand);
568 sort(CARD *hand) function in typeref:typename:void
  /src/usr.sbin/lpr/pac/
pac.c 71 static int reverse; /* Reverse sort order */
72 static int sort; /* Sort by cost */ variable in typeref:typename:int
135 * Sort by cost.
137 sort++;
245 * Sort the hashed entries by name or footage
392 * or by feet of typesetter film, according to sort.
402 if (sort)
  /src/usr.bin/rdist/
expand.c 68 #define sort() qsort((char *)sortbase, &eargv[eargc] - sortbase, \ macro
203 sort();
242 sort();
250 sort();
406 sort();
  /src/usr.bin/mail/
cmd3.c 68 * Sort the passed string vector into ascending dictionary
72 sort(const char **list) function in typeref:typename:PUBLIC void
701 sort(ap);
790 sort(ap);
827 sort(ap);
  /src/sys/external/isc/atheros_hal/dist/ar5212/
ar5212_reset.c 1243 int16_t sort[AR512_NF_CAL_HIST_MAX]; local in function:ar5212GetNfHistMid
1246 OS_MEMCPY(sort, calData, AR512_NF_CAL_HIST_MAX*sizeof(int16_t));
1249 if (sort[j] > sort[j-1]) {
1250 int16_t nf = sort[j];
1251 sort[j] = sort[j-1];
1252 sort[j-1] = nf;
1256 return sort[(AR512_NF_CAL_HIST_MAX-1)>>1];

Completed in 18 milliseconds