MCPcopy Create free account
hub / github.com/pydata/numexpr / _inline_mul

Function _inline_mul

numexpr3/complex_functions.hpp:363–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

361}
362
363static inline void
364_inline_mul( npy_complex64 a, npy_complex64 b, npy_complex64 &r)
365{
366 r.real = a.real*b.real - a.imag*b.imag;
367 r.imag = a.real*b.imag + a.imag*b.real;
368}
369
370static inline void
371_inline_mul( npy_complex128 a, npy_complex128 b, npy_complex128 &r)

Callers 8

nc_mulFunction · 0.85
nc_powFunction · 0.85
nc_acosFunction · 0.85
nc_acoshFunction · 0.85
nc_asinFunction · 0.85
nc_asinhFunction · 0.85
nc_atanFunction · 0.85
nc_atanhFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…