| 85 | /* signed 16x16 -> 32 multiply */ |
| 86 | # define MUL16 MUL16 |
| 87 | static inline av_const int MUL16(int ra, int rb) |
| 88 | { |
| 89 | int rt; |
| 90 | __asm__ ("smulbb %0, %1, %2" : "=r"(rt) : "r"(ra), "r"(rb)); |
| 91 | return rt; |
| 92 | } |
| 93 | |
| 94 | #endif |
| 95 |
no outgoing calls
no test coverage detected