Searched refs:matrixToString (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/libs/ui/ |
D | Input.cpp | 723 static String8 matrixToString(const float* a, uint32_t m, uint32_t n, bool rowMajor) { in matrixToString() function 919 LOGD(" - a=%s", matrixToString(&a[0][0], m, n, false /*rowMajor*/).string()); in solveLeastSquares() 954 LOGD(" - q=%s", matrixToString(&q[0][0], m, n, false /*rowMajor*/).string()); in solveLeastSquares() 955 LOGD(" - r=%s", matrixToString(&r[0][0], n, n, true /*rowMajor*/).string()); in solveLeastSquares() 967 LOGD(" - qr=%s", matrixToString(&qr[0][0], m, n, false /*rowMajor*/).string()); in solveLeastSquares()
|