Home
last modified time | relevance | path

Searched defs:fast_mul (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/core/
DSkVM.h745 F32 fast_mul(F32 x, float y) { return fast_mul(x, splat(y)); } in fast_mul() function
746 F32 fast_mul(float x, F32 y) { return fast_mul(splat(x), y); } in fast_mul() function
1159 SI F32 fast_mul(F32 x, F32 y) { return x->fast_mul(x,y); } in fast_mul() function
1160 SI F32 fast_mul(F32 x, float y) { return x->fast_mul(x,y); } in fast_mul() function
1161 SI F32 fast_mul(float x, F32 y) { return y->fast_mul(x,y); } in fast_mul() function
DSkVM.cpp791 F32 Builder::fast_mul(F32 x, F32 y) { in fast_mul() function in skvm::Builder