Home
last modified time | relevance | path

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

/third_party/skia/src/core/
H A 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 in skvm::Builder
734 F32 fast_mul(float x, F32 y) { return fast_mul(splat(x), y); } in fast_mul() function in skvm::Builder
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(floa in fast_mul() function
[all...]
H A DSkVM.cpp799 F32 Builder::fast_mul(F32 x, F32 y) { in fast_mul() function in skvm::Builder
/third_party/skia/src/sksl/codegen/
H A DSkSLVMCodeGenerator.cpp54 // sksl allows the optimizations of fast_mul(), so we want to use that most of the time.
58 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/
H A DSkVMTest.cpp2587 b.storeF(fast, fast_mul(0.0f, x));

Completed in 20 milliseconds