MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / MUL16

Function MUL16

libavcodec/arm/mathops.h:87–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85/* signed 16x16 -> 32 multiply */
86# define MUL16 MUL16
87static 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

Callers 7

AC3_encode_frameFunction · 0.50
idctRowCondDCFunction · 0.50
idctSparseColPutFunction · 0.50
idctSparseColAddFunction · 0.50
idctSparseColFunction · 0.50
pRNGFunction · 0.50
synth_frameFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected