Home | History | Annotate | Download | only in collperf

Lines Matching refs:Func

88     typedef	void (CmdKeyGen::* Func)(int32_t);
94 Func fn;
102 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t)
140 typedef void (CmdIter::* Func)(UErrorCode* , int32_t );
143 Func fn;
147 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t)
189 typedef void (CmdIterAll::* Func)(UErrorCode* status);
192 Func fn;
330 #define QFUNC(name, func, data) \
333 return func(da->data, db->data); \
348 typedef int (* Func)(const void *, const void *);
350 Func fn;
357 CmdQsort(UErrorCode & status,void *theBase, int32_t num, int32_t width, Func fn, int32_t,int32_t)
400 typedef int (CmdBinSearch::* Func)(int, int);
407 Func fn;
410 CmdBinSearch(UErrorCode, UCollator * col,DWORD win_langid,int32_t count,DataIndex * rnd,DataIndex * ord,Func fn)
480 #define BFUNC(name, func, data) \
482 return func(rnd[i].data, ord[j].data); \
690 #define TEST_KEYGEN(testname, func)\
691 TEST(testname, CmdKeyGen, col, win_langid, count, rnd_index, &CmdKeyGen::func, 0)
700 #define TEST_ITER(testname, func)\
701 TEST(testname, CmdIter, col, count, icu_data, &CmdIter::func,0,0)
707 #define TEST_ITER_ALL(testname, func)\
708 TEST(testname, CmdIterAll, col, icu_data_all_len, icu_data_all, CmdIterAll::func,0,0)
714 #define TEST_QSORT(testname, func)\
715 TEST(testname, CmdQsort, rnd_index, count, sizeof(DataIndex), CmdQsort::func,0,0)
727 #define TEST_BIN(testname, func)\
728 TEST(testname, CmdBinSearch, col, win_langid, count, rnd_index, ord_icu_key, &CmdBinSearch::func)
869 #define SORT(data, func) \
872 qsort(data, count, sizeof(DataIndex), CmdQsort::func)