Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/Core/products/
DTriangularMatrixVector_MKL.h101 VectorRhs x_tmp; \
102 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
103 x = x_tmp.data(); \
133 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
134 x = x_tmp.data(); \
186 VectorRhs x_tmp; \
187 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
188 x = x_tmp.data(); \
218 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
219 x = x_tmp.data(); \
DSelfadjointMatrixVector_MKL.h94 SYMVVector x_tmp; \
97 x_tmp=map_x.conjugate(); \
98 x_ptr=x_tmp.data(); \
DGeneralMatrixVector_MKL.h111 GEMVVector x_tmp; \
114 x_tmp=map_x.conjugate(); \
115 x_ptr=x_tmp.data(); \
/external/llvm/lib/Support/
DAPInt.cpp268 uint64_t x_tmp = borrow ? x[i] - 1 : x[i]; in sub() local
269 borrow = y[i] > x_tmp || (borrow && x[i] == 0); in sub()
270 dest[i] = x_tmp - y[i]; in sub()