Home
last modified time | relevance | path

Searched refs:doubleprod (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dintobject.c527 double doubleprod; /* (double)a * (double)b */ in int_mul() local
533 doubleprod = (double)a * (double)b; in int_mul()
538 if (doubled_longprod == doubleprod) in int_mul()
547 const double diff = doubled_longprod - doubleprod; in int_mul()
549 const double absprod = doubleprod >= 0.0 ? doubleprod : in int_mul()
550 -doubleprod; in int_mul()
/external/python/cpython3/Modules/
Dmathmodule.c2924 double doubleprod = (double)a * (double)b; in _check_long_mult_overflow() local
2927 if (doubled_longprod == doubleprod) { in _check_long_mult_overflow()
2931 const double diff = doubled_longprod - doubleprod; in _check_long_mult_overflow()
2933 const double absprod = doubleprod >= 0.0 ? doubleprod : -doubleprod; in _check_long_mult_overflow()