Home
last modified time | relevance | path

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

/external/opencv/cxcore/src/
Dcxmatmul.cpp587 CvBigFuncTable* store_tab ) in icvInitGEMMTable() argument
597 store_tab->fn_2d[CV_32FC1] = (void*)icvGEMMStore_32f_C1R; in icvInitGEMMTable()
598 store_tab->fn_2d[CV_64FC1] = (void*)icvGEMMStore_64f_C1R; in icvInitGEMMTable()
599 store_tab->fn_2d[CV_32FC2] = (void*)icvGEMMStore_32f_C2R; in icvInitGEMMTable()
600 store_tab->fn_2d[CV_64FC2] = (void*)icvGEMMStore_64f_C2R; in icvInitGEMMTable()
611 static CvBigFuncTable single_mul_tab, block_mul_tab, store_tab; in cvGEMM() local
1002 icvInitGEMMTable( &single_mul_tab, &block_mul_tab, &store_tab ); in cvGEMM()
1116 CvGEMMStoreFunc store_func = (CvGEMMStoreFunc)store_tab.fn_2d[type]; in cvGEMM()