Searched defs:fast_mul (Results 1 – 2 of 2) sorted by relevance
/third_party/skia/src/core/ |
D | SkVM.h | 733 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
|
D | SkVM.cpp | 799 F32 Builder::fast_mul(F32 x, F32 y) { in fast_mul() function in skvm::Builder
|