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

Function _inline_add

numexpr3/complex_functions.hpp:147–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145}
146
147static inline void
148_inline_add( npy_complex64 a, npy_complex64 b, npy_complex64 &r )
149{
150 r.real = a.real + b.real;
151 r.imag = a.imag + b.imag;
152}
153
154static inline void
155_inline_add( npy_complex128 a, npy_complex128 b, npy_complex128 &r )

Callers 7

nc_addFunction · 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…