/external/harfbuzz_ng/src/ |
D | hb-dsalgs.hh | 36 int (*compar)(const void *_key, const void *_item, void *_arg), in hb_bsearch_r() 44 int c = compar (key, p, arg); in hb_bsearch_r() 81 int (*compar)(const void *_a, const void *_b, in sort_r_cmpswap() 86 if(compar(a, b, arg) > 0) { in sort_r_cmpswap() 95 int (*compar)(const void *_a, const void *_b, in sort_r_simple() 104 for(pj = pi; pj > b && sort_r_cmpswap(pj-w,pj,w,compar,arg); pj -= w) {} in sort_r_simple() 120 if(compar(l[0],l[1],arg) > 0) { tmp=l[0]; l[0]=l[1]; l[1]=tmp; } in sort_r_simple() 121 if(compar(l[1],l[2],arg) > 0) { in sort_r_simple() 123 if(compar(l[0],l[1],arg) > 0) { tmp=l[0]; l[0]=l[1]; l[1]=tmp; } in sort_r_simple() 136 if(sort_r_cmpswap(pl, pr, w, compar, arg)) { in sort_r_simple() [all …]
|
D | hb-private.hh | 725 hb_stable_sort (T *array, unsigned int len, int(*compar)(const T *, const T *), T2 *array2) in hb_stable_sort() 730 while (j && compar (&array[j - 1], &array[i]) > 0) in hb_stable_sort() 750 hb_stable_sort (T *array, unsigned int len, int(*compar)(const T *, const T *)) in hb_stable_sort() 752 hb_stable_sort (array, len, compar, (int *) nullptr); in hb_stable_sort()
|
D | hb-buffer-private.hh | 293 …HB_INTERNAL void sort (unsigned int start, unsigned int end, int(*compar)(const hb_glyph_info_t *,…
|
D | hb-buffer.cc | 1858 hb_buffer_t::sort (unsigned int start, unsigned int end, int(*compar)(const hb_glyph_info_t *, cons… in sort() 1864 while (j > start && compar (&info[j - 1], &info[i]) > 0) in sort()
|
/external/libmicrohttpd/src/microhttpd/ |
D | tsearch.c | 23 tsearch(vkey, vrootp, compar) in tsearch() argument 26 int (*compar)(const void *, const void *); 37 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ 57 tfind(vkey, vrootp, compar) in tfind() argument 60 int (*compar)(const void *, const void *); 70 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ 88 int (*compar)(const void *, const void *)) in tdelete() 97 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) { in tdelete()
|
/external/syslinux/com32/lib/ |
D | qsort.c | 24 int (*compar) (const void *, const void *)) in qsort() 40 if (compar(p1, p2 = (char *)base + j * size) > 0) { in qsort()
|
/external/toybox/toys/posix/ |
D | cut.c | 169 static int compar(unsigned *a, unsigned *b) in compar() function 237 qsort(toybuf, TT.pairs, 8, (void *)compar); in cut_main()
|
/external/valgrind/coregrind/ |
D | m_xarray.c | 120 void VG_(setCmpFnXA) ( XArray* xa, XACmpFn_t compar ) in VG_() 123 vg_assert(compar); in VG_() 124 xa->cmpFn = compar; in VG_()
|
D | m_libcbase.c | 972 Int (*compar)(const void*, const void*) ) in VG_() 974 bm_qsort(base,nmemb,size,compar); in VG_()
|
/external/clang/test/Sema/ |
D | function.c | 13 void g(int (*compar)()) { in g() argument
|
/external/libcxx/include/ |
D | cstdlib | 59 int (*compar)(const void *, const void *)); 61 int (*compar)(const void *, const void *));
|
/external/valgrind/include/ |
D | pub_tool_libcbase.h | 213 Int (*compar)(const void*, const void*) );
|
/external/pdfium/third_party/libtiff/ |
D | tif_dirinfo.c | 294 int(*compar)(const void *, const void *)) in td_lfind() 300 if (!compar(key, element)) /* key found */ in td_lfind()
|
/external/valgrind/drd/tests/ |
D | unit_bitmap.c | 68 Int (*compar)(const void*, const void*) ) in VG_()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | scan.c | 2236 int (*compar)(const void *, const void *) = wpa_scan_result_compar; in wpa_supplicant_get_scan_results() local 2263 compar = wpa_scan_result_wps_compar; in wpa_supplicant_get_scan_results() 2269 sizeof(struct wpa_scan_res *), compar); in wpa_supplicant_get_scan_results()
|
/external/selinux/libsepol/cil/src/ |
D | cil_post.c | 2266 static int __cil_post_process_context_rules(struct cil_sort *sort, int (*compar)(const void *, cons… in __cil_post_process_context_rules() 2276 qsort(sort->array, sort->count, sizeof(sort->array), compar); in __cil_post_process_context_rules() 2279 if (compar(&sort->array[i], &sort->array[j]) != 0) { in __cil_post_process_context_rules()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 3207 scandir_filter_f filter, scandir_compar_f compar) { 3209 COMMON_INTERCEPTOR_ENTER(ctx, scandir, dirp, namelist, filter, compar); 3212 scandir_compar = compar; 3218 compar ? wrapped_scandir_compar : nullptr); 3260 scandir64_filter_f filter, scandir64_compar_f compar) { 3262 COMMON_INTERCEPTOR_ENTER(ctx, scandir64, dirp, namelist, filter, compar); 3265 scandir64_compar = compar; 3272 compar ? wrapped_scandir64_compar : nullptr); 4992 int (*compar)(const void *, const void *)) { 4994 COMMON_INTERCEPTOR_ENTER(ctx, tsearch, key, rootp, compar); [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 826 /// int (*compar)(const void *, const void *));
|