| 1226 | float operator()(float a, float b) const { return a / b; } |
| 1227 | }; |
| 1228 | struct OpDivS8x8 { |
| 1229 | fl::s8x8 operator()(fl::s8x8 a, fl::s8x8 b) const { return a / b; } |
| 1230 | }; |
| 1231 | struct OpDivS16x16 { |
| 1232 | fl::s16x16 operator()(fl::s16x16 a, fl::s16x16 b) const { return a / b; } |
| 1233 | }; |
no outgoing calls
no test coverage detected