Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrVx.h168 SK_ALWAYS_INLINE void strided_load2(const T* v, skvx::Vec<1,T>& a, skvx::Vec<1,T>& b) { in strided_load2() function
174 strided_load2(const T* v, skvx::Vec<N,T>& a, skvx::Vec<N,T>& b) {
175 strided_load2(v, a.lo, b.lo);
176 strided_load2(v + 2*(N/2), a.hi, b.hi);
182 SK_ALWAYS_INLINE void strided_load2(const T* v, skvx::Vec<N,T>& a, skvx::Vec<N,T>& b) { \
/external/skia/tests/
DGrVxTest.cpp240 grvx::strided_load2(values, a, b); in check_strided_loads()