Lines Matching refs:numElement
98 static void MtxFxToD_(const fx32 *mf, double *md, int numElement);
106 static void GetDifferenceMtx_(const double *a, const double *b, double *diff, int numElement);
117 static void PrintMtxD_(const double *mtxArray, int numElement);
132 static void PrintMtxD_(const double *mtxArray, int numElement) in PrintMtxD_() argument
135 SDK_ASSERTMSG((numElement == NUM_MTX43_ELEMENT) in PrintMtxD_()
136 || (numElement == NUM_MTX44_ELEMENT), "Wrong Mtx Format"); in PrintMtxD_()
138 for (i = 0; i < numElement; i++) in PrintMtxD_()
148 static void MtxFxToD_(const fx32 *mf, double *md, int numElement) in MtxFxToD_() argument
153 SDK_ASSERTMSG((numElement == NUM_MTX43_ELEMENT) in MtxFxToD_()
154 || (numElement == NUM_MTX44_ELEMENT), "Wrong Mtx Format"); in MtxFxToD_()
156 for (i = 0; i < numElement; i++) in MtxFxToD_()
391 static void GetDifferenceMtx_(const double *a, const double *b, double *diff, int numElement) in GetDifferenceMtx_() argument
398 SDK_ASSERTMSG((numElement == 12) || (numElement == 16), "Wrong Mtx Format"); in GetDifferenceMtx_()
400 for (i = 0; i < numElement; i++) in GetDifferenceMtx_()