/third_party/openssl/crypto/objects/ |
D | o_names.c | 34 int (*cmp_func) (const char *a, const char *b); member 69 int (*cmp_func) (const char *, const char *), in OBJ_NAME_new_index() 97 name_funcs->cmp_func = OPENSSL_strcasecmp; in OBJ_NAME_new_index() 110 if (cmp_func != NULL) in OBJ_NAME_new_index() 111 name_funcs->cmp_func = cmp_func; in OBJ_NAME_new_index() 129 a->type)->cmp_func(a->name, b->name); in obj_name_cmp()
|
/third_party/mesa3d/src/util/tests/ |
D | u_qsort_test.cpp | 31 cmp_func(const void *a, const void *b, void *ctx) in cmp_func() function 47 sizeof(data[0]), cmp_func, in TEST()
|
/third_party/ffmpeg/libavcodec/ |
D | motion_est.c | 109 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, int qpel){ in cmp_direct_inline() argument 173 d = cmp_func(s, c->temp, src[0], stride, 16); in cmp_direct_inline() 181 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, int qpel, int chroma){ in cmp_inline() argument 215 d = cmp_func(s, c->temp, src[0], stride, h); in cmp_inline() 217 d = cmp_func(s, src[0], ref[0] + x + y*stride, stride, h); in cmp_inline() 233 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func){ in cmp_simple() argument 234 return cmp_inline(s,x,y,0,0,0,16,ref_index,src_index, cmp_func, chroma_cmp_func, 0, 0); in cmp_simple() 239 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){ in cmp_fpel_internal() argument 241 …return cmp_direct_inline(s,x,y,0,0,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags&FL… in cmp_fpel_internal() 243 …return cmp_inline(s,x,y,0,0,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 0, flags&FLAG_C… in cmp_fpel_internal() [all …]
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_cse.c | 134 cmp_func(const void *data1, const void *data2) in cmp_func() function 142 struct set *instr_set = _mesa_set_create(NULL, hash_instr, cmp_func); in ir3_cse()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_palettegen.c | 109 typedef int (*cmp_func)(const void *, const void *); typedef 124 static const cmp_func cmp_funcs[] = {cmp_r, cmp_g, cmp_b}; 359 cmp_func cmpf = cmp_funcs[longest]; in get_palette_frame()
|
D | vf_paletteuse.c | 593 typedef int (*cmp_func)(const void *, const void *); typedef 609 static const cmp_func cmp_funcs[] = {cmp_a, cmp_r, cmp_g, cmp_b}; 620 cmp_func cmpf; in get_next_color()
|
/third_party/python/Lib/ctypes/test/ |
D | test_callbacks.py | 189 def cmp_func(a, b): function 194 libc.qsort(array, len(array), sizeof(c_int), cmp_func)
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | objects.h | 46 int (*cmp_func) (const char *, const char *),
|
/third_party/openssl/include/openssl/ |
D | objects.h | 54 int (*cmp_func) (const char *, const char *),
|
/third_party/libexif/libexif/ |
D | exif-data.c | 541 cmp_func (const unsigned char *p1, const unsigned char *p2, ExifByteOrder o) in cmp_func() function 552 return cmp_func ((const unsigned char *) elem1, in cmp_func_intel() 559 return cmp_func ((const unsigned char *) elem1, in cmp_func_motorola()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_instr_set.c | 791 cmp_func(const void *data1, const void *data2) in cmp_func() function 799 return _mesa_set_create(mem_ctx, hash_instr, cmp_func); in nir_instr_set_create()
|
/third_party/python/Doc/library/ |
D | ctypes.rst | 986 >>> cmp_func = CMPFUNC(py_cmp_func) 991 >>> qsort(ia, len(ia), sizeof(c_int), cmp_func) # doctest: +LINUX
|