Home
last modified time | relevance | path

Searched refs:fast_mul (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/src/core/
DSkVM.h732 F32 fast_mul(F32, F32);
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
DSkVM.cpp799 F32 Builder::fast_mul(F32 x, F32 y) { in fast_mul() function in skvm::Builder
/third_party/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.cpp58 static skvm::F32 operator*(skvm::F32 x, FastF32 y) { return fast_mul(x, y.val); } in operator *()
59 static skvm::F32 operator*(float x, FastF32 y) { return fast_mul(x, y.val); } in operator *()
/third_party/skia/tests/
DSkVMTest.cpp2587 b.storeF(fast, fast_mul(0.0f, x)); in DEF_TEST()