HomeSort by relevance Sort by last modified time
    Searched refs:vecB (Results 1 - 2 of 2) sorted by null

  /external/vixl/examples/aarch64/
add2-vectors.cc 38 // void add2_vectors(uint8_t *vec*, const uint8_t *vecB, unsigned size)
41 // vecB (pointer) -> x1
112 uint8_t vecB[] = {16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
119 VIXL_CHECK(ARRAY_SIZE(vecA) == ARRAY_SIZE(vecB));
123 vecC[i] = vecA[i] + vecB[i];
128 uintptr_t vecB_addr = reinterpret_cast<uintptr_t>(vecB);
138 PrintVector(vecB, ARRAY_SIZE(vecB));
  /external/eigen/test/
cholesky.cpp 73 VectorType vecB = VectorType::Random(rows), vecX(rows);
89 vecX = chollo.solve(vecB);
90 VERIFY_IS_APPROX(symm * vecX, vecB);
105 vecX = cholup.solve(vecB);
106 VERIFY_IS_APPROX(symm * vecX, vecB);
159 vecX = ldltlo.solve(vecB);
160 VERIFY_IS_APPROX(symm * vecX, vecB);
176 vecX = ldltup.solve(vecB);
177 VERIFY_IS_APPROX(symm * vecX, vecB);
221 vecB = A * vecX
    [all...]

Completed in 85 milliseconds