Home
last modified time | relevance | path

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

/third_party/skia/src/core/
DSkVM.h733 F32 fast_mul(F32 x, float y) { return fast_mul(x, splat(y)); } in fast_mul() function
734 F32 fast_mul(float x, F32 y) { return fast_mul(splat(x), y); } in fast_mul() function
1129 SI F32 fast_mul(F32 x, F32 y) { return x->fast_mul(x,y); } in fast_mul() function
1130 SI F32 fast_mul(F32 x, float y) { return x->fast_mul(x,y); } in fast_mul() function
1131 SI F32 fast_mul(float x, F32 y) { return y->fast_mul(x,y); } in fast_mul() function
DSkVM.cpp799 F32 Builder::fast_mul(F32 x, F32 y) { in fast_mul() function in skvm::Builder