/external/opencv/cxcore/include/ |
D | cxmisc.h | 825 #define CV_DEF_INIT_FUNC_TAB_2D( FUNCNAME, FLAG ) \ argument 826 static void icvInit##FUNCNAME##FLAG##Table( CvFuncTable* tab ) \ 830 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_##FLAG; \ 831 tab->fn_2d[CV_8S] = (void*)icv##FUNCNAME##_8s_##FLAG; \ 832 tab->fn_2d[CV_16U] = (void*)icv##FUNCNAME##_16u_##FLAG; \ 833 tab->fn_2d[CV_16S] = (void*)icv##FUNCNAME##_16s_##FLAG; \ 834 tab->fn_2d[CV_32S] = (void*)icv##FUNCNAME##_32s_##FLAG; \ 835 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_##FLAG; \ 836 tab->fn_2d[CV_64F] = (void*)icv##FUNCNAME##_64f_##FLAG; \ 840 #define CV_DEF_INIT_BIG_FUNC_TAB_2D( FUNCNAME, FLAG ) \ argument [all …]
|
/external/opencv/cxcore/src/ |
D | cxcopy.cpp | 247 #define CV_DEF_INIT_COPYSET_TAB_2D( FUNCNAME, FLAG ) \ argument 248 static void icvInit##FUNCNAME##FLAG##Table( CvBtFuncTable* table ) \ 250 table->fn_2d[1] = (void*)icv##FUNCNAME##_8u_C1##FLAG; \ 251 table->fn_2d[2] = (void*)icv##FUNCNAME##_16s_C1##FLAG; \ 252 table->fn_2d[3] = (void*)icv##FUNCNAME##_8u_C3##FLAG; \ 253 table->fn_2d[4] = (void*)icv##FUNCNAME##_8u_C4##FLAG; \ 254 table->fn_2d[6] = (void*)icv##FUNCNAME##_16s_C3##FLAG; \ 255 table->fn_2d[8] = (void*)icv##FUNCNAME##_16s_C4##FLAG; \ 256 table->fn_2d[12] = (void*)icv##FUNCNAME##_32f_C3##FLAG; \ 257 table->fn_2d[16] = (void*)icv##FUNCNAME##_32f_C4##FLAG; \ [all …]
|
D | cxnorm.cpp | 891 #define ICV_DEF_INIT_NORM_TAB_2D( FUNCNAME, FLAG ) \ argument 892 static void icvInit##FUNCNAME##FLAG##Table( CvFuncTable* tab ) \ 894 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_##FLAG; \ 896 tab->fn_2d[CV_16U] = (void*)icv##FUNCNAME##_16u_##FLAG; \ 897 tab->fn_2d[CV_16S] = (void*)icv##FUNCNAME##_16s_##FLAG; \ 898 tab->fn_2d[CV_32S] = (void*)icv##FUNCNAME##_32s_##FLAG; \ 899 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_##FLAG; \ 900 tab->fn_2d[CV_64F] = (void*)icv##FUNCNAME##_64f_##FLAG; \
|
D | cxcmp.cpp | 1398 #define ICV_INIT_MINI_FUNC_TAB_2D( FUNCNAME, suffix ) \ in ICV_DEF_BIN_ABS_DIFF_2D() argument 1399 static void icvInit##FUNCNAME##Table( CvFuncTable* tab ) \ in ICV_DEF_BIN_ABS_DIFF_2D() 1401 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_##suffix; \ in ICV_DEF_BIN_ABS_DIFF_2D() 1402 tab->fn_2d[CV_16U] = (void*)icv##FUNCNAME##_16u_##suffix; \ in ICV_DEF_BIN_ABS_DIFF_2D() 1403 tab->fn_2d[CV_16S] = (void*)icv##FUNCNAME##_16s_##suffix; \ in ICV_DEF_BIN_ABS_DIFF_2D() 1404 tab->fn_2d[CV_32S] = (void*)icv##FUNCNAME##_32s_##suffix; \ in ICV_DEF_BIN_ABS_DIFF_2D() 1405 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_##suffix; \ in ICV_DEF_BIN_ABS_DIFF_2D() 1406 tab->fn_2d[CV_64F] = (void*)icv##FUNCNAME##_64f_##suffix; \ in ICV_DEF_BIN_ABS_DIFF_2D()
|
D | cxarithm.cpp | 247 #define ICV_DEF_INIT_ARITHM_FUNC_TAB( FUNCNAME, FLAG ) \ in ICV_DEF_BIN_ARI_ALL() argument 248 static void icvInit##FUNCNAME##FLAG##Table( CvFuncTable* tab )\ in ICV_DEF_BIN_ARI_ALL() 250 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_##FLAG; \ in ICV_DEF_BIN_ARI_ALL() 252 tab->fn_2d[CV_16U] = (void*)icv##FUNCNAME##_16u_##FLAG; \ in ICV_DEF_BIN_ARI_ALL() 253 tab->fn_2d[CV_16S] = (void*)icv##FUNCNAME##_16s_##FLAG; \ in ICV_DEF_BIN_ARI_ALL() 254 tab->fn_2d[CV_32S] = (void*)icv##FUNCNAME##_32s_##FLAG; \ in ICV_DEF_BIN_ARI_ALL() 255 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_##FLAG; \ in ICV_DEF_BIN_ARI_ALL() 256 tab->fn_2d[CV_64F] = (void*)icv##FUNCNAME##_64f_##FLAG; \ in ICV_DEF_BIN_ARI_ALL()
|
/external/opencv/cv/src/ |
D | cvpyramids.cpp | 878 #define ICV_DEF_INIT_PYR_TABLE( FUNCNAME ) \ argument 879 static void icvInit##FUNCNAME##Table( CvFuncTable* tab ) \ 881 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_CnR; \ 883 tab->fn_2d[CV_16S] = (void*)icv##FUNCNAME##_16s_CnR; \ 884 tab->fn_2d[CV_16U] = (void*)icv##FUNCNAME##_16u_CnR; \ 885 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_CnR; \ 886 tab->fn_2d[CV_64F] = (void*)icv##FUNCNAME##_64f_CnR; \ 1271 #define ICV_DEF_INIT_PYR_BORDER_TABLE( FUNCNAME ) \ argument 1272 static void icvInit##FUNCNAME##Table( CvFuncTable* tab ) \ 1274 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_CnR; \ [all …]
|
D | cvaccum.cpp | 361 #define ICV_DEF_INIT_ACC_TAB( FUNCNAME ) \ argument 362 static void icvInit##FUNCNAME##Table( CvFuncTable* tab, CvBigFuncTable* masktab ) \ 364 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u32f_C1IR; \ 365 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_C1IR; \ 367 masktab->fn_2d[CV_8UC1] = (void*)icv##FUNCNAME##_8u32f_C1IMR; \ 368 masktab->fn_2d[CV_32FC1] = (void*)icv##FUNCNAME##_32f_C1IMR; \ 370 masktab->fn_2d[CV_8UC3] = (void*)icv##FUNCNAME##_8u32f_C3IMR; \ 371 masktab->fn_2d[CV_32FC3] = (void*)icv##FUNCNAME##_32f_C3IMR; \
|
D | cvsamplers.cpp | 517 #define ICV_DEF_INIT_SUBPIX_TAB( FUNCNAME, FLAG ) \ argument 518 static void icvInit##FUNCNAME##FLAG##Table( CvFuncTable* tab ) \ 520 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_##FLAG; \ 521 tab->fn_2d[CV_32F] = (void*)icv##FUNCNAME##_32f_##FLAG; \ 523 tab->fn_2d[1] = (void*)icv##FUNCNAME##_8u32f_##FLAG; \
|
/external/libexif/auto-m4/ |
D | libtool.m4 | 7699 # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) 7701 # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and 7702 # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
|
/external/libcap-ng/libcap-ng-0.7/m4/ |
D | libtool.m4 | 7828 # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) 7830 # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and 7831 # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
|
/external/openfst/m4/ |
D | libtool.m4 | 7843 # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) 7845 # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and 7846 # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
|
/external/chromium_org/third_party/opus/src/ |
D | aclocal.m4 | 7828 # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) 7830 # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and 7831 # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
|
/external/pixman/ |
D | aclocal.m4 | 7828 # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) 7830 # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and 7831 # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
|
/external/protobuf/gtest/ |
D | aclocal.m4 | 7843 # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) 7845 # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and 7846 # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
|