Home
last modified time | relevance | path

Searched refs:c_neg (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dcomplexobject.h18 #define c_neg _Py_c_neg macro
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
/external/boringssl/src/crypto/fipsmodule/bn/
Dmul.c409 BN_ULONG c_neg = c - bn_sub_words(&t[n2 * 2], t, &t[n2], n2); in bn_mul_recursive() local
414 c = constant_time_select_w(neg, c_neg, c_pos); in bn_mul_recursive()
523 BN_ULONG c_neg = c - bn_sub_words(&t[n2 * 2], t, &t[n2], n2); in bn_mul_part_recursive() local
528 c = constant_time_select_w(neg, c_neg, c_pos); in bn_mul_part_recursive()
/external/python/cpython2/Modules/
Dcmathmodule.c316 return c_neg(c_atanh(c_neg(z))); in c_atanh()
/external/python/cpython2/Objects/
Dcomplexobject.c52 c_neg(Py_complex a) in c_neg() function