HomeSort by relevance Sort by last modified time
    Searched defs:qsort (Results 1 - 8 of 8) sorted by null

  /external/syslinux/com32/lib/
qsort.c 2 * qsort.c
23 void qsort(void *base, size_t nmemb, size_t size, function
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Qsort.c 56 ("$FreeBSD: src/lib/libc/stdlib/qsort.c,v 1.15.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
68 * Qsort routine from Bentley & McIlroy's "Engineering a Sort Function".
111 /* The qsort function sorts an array of nmemb objects, the initial element of
125 qsort(void *a, size_t n, size_t es, cmp_t *cmp) function
197 qsort(a, r / es, es, cmp);
204 /* qsort(pn - r, r / es, es, cmp);*/
  /external/python/cpython3/Lib/turtledemo/
sorting_animate.py 114 def qsort(shelf, left, right): function
118 qsort(shelf, left, pivot_new_index - 1)
119 qsort(shelf, pivot_new_index + 1, right)
163 qsort(s, 0, len(s) - 1)
  /system/libufdt/sysdeps/
libufdt_sysdeps_vendor.c 20 * https://android.googlesource.com/platform/bionic.git/+/eclair-release/libc/stdlib/qsort.c
24 /* $OpenBSD: qsort.c,v 1.10 2005/08/08 08:05:37 espie Exp $ */
60 * Qsort routine from Bentley & McIlroy's "Engineering a Sort Function".
98 void qsort(void *aa, size_t n, size_t es, function
162 if ((r = pb - pa) > (int)es) qsort(a, r / es, es, cmp);
169 /* qsort(pn - r, r / es, es, cmp); */
172 /* End of the copied qsort. */
176 qsort(base, nmemb, size, compar);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 32 // Duplicated from EDKII BaseSortLib for qsort() wrapper
240 void qsort (void *base, size_t num, size_t width, int (*compare)(const void *, const void *)) function
  /external/harfbuzz_ng/src/
hb-private.hh 473 inline void qsort (void) function in struct:hb_prealloced_array_t
475 ::qsort (array, len, sizeof (Type), Type::cmp);
478 inline void qsort (unsigned int start, unsigned int end) function in struct:hb_prealloced_array_t
480 ::qsort (array + start, end - start, sizeof (Type), Type::cmp);
  /external/valgrind/callgrind/
dump.c 887 * qsort -- qsort interface implemented by faster quicksort.
910 static void CLG_(qsort)(BBCC **a, int n, int (*cmp)(BBCC**,BBCC**)) function
916 CLG_DEBUG(8, " qsort(%ld,%ld)\n", a-qsort_start + 0L, n + 0L);
1008 if ((s = pb+1-pa) > 1) CLG_(qsort)(a, s, cmp);
1009 if ((s = pd+1-pc) > 1) CLG_(qsort)(a+n-s, s, cmp);
1134 CLG_(qsort)(array, prepare_count, my_cmp);
    [all...]
  /external/guice/extensions/persist/lib/
db4o-6.4.14.8131-java5.jar 

Completed in 441 milliseconds