Home
last modified time | relevance | path

Searched refs:cmp_func (Results 1 – 12 of 12) sorted by relevance

/third_party/openssl/crypto/objects/
Do_names.c34 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/
Du_qsort_test.cpp31 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/
Dmotion_est.c109 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/
Dir3_cse.c134 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/
Dvf_palettegen.c109 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()
Dvf_paletteuse.c593 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/
Dtest_callbacks.py189 def cmp_func(a, b): function
194 libc.qsort(array, len(array), sizeof(c_int), cmp_func)
/third_party/openssl/ohos_lite/include/openssl/
Dobjects.h46 int (*cmp_func) (const char *, const char *),
/third_party/openssl/include/openssl/
Dobjects.h54 int (*cmp_func) (const char *, const char *),
/third_party/libexif/libexif/
Dexif-data.c541 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/
Dnir_instr_set.c791 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/
Dctypes.rst986 >>> cmp_func = CMPFUNC(py_cmp_func)
991 >>> qsort(ia, len(ia), sizeof(c_int), cmp_func) # doctest: +LINUX