MCPcopy Create free account
hub / github.com/numpy/numpy / neg_128

Function neg_128

numpy/core/src/common/npy_extint128.h:173–179  ·  view source on GitHub ↗

Long integer negation */

Source from the content-addressed store, hash-verified

171
172/* Long integer negation */
173static inline npy_extint128_t
174neg_128(npy_extint128_t x)
175{
176 npy_extint128_t z = x;
177 z.sign *= -1;
178 return z;
179}
180
181
182static inline npy_extint128_t

Callers 2

diophantine_dfsFunction · 0.85
sub_128Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected