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