Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dfloatobject.c374 int vsign = i == 0.0 ? 0 : i < 0.0 ? -1 : 1; in float_richcompare() local
379 if (vsign != wsign) { in float_richcompare()
383 i = (double)vsign; in float_richcompare()
398 i = (double)vsign; in float_richcompare()
410 assert(vsign != 0); /* if vsign were 0, then since wsign is in float_richcompare()
414 if (vsign < 0) { in float_richcompare()
/external/python/cpython2/Objects/
Dfloatobject.c468 int vsign = i == 0.0 ? 0 : i < 0.0 ? -1 : 1; in float_richcompare() local
473 if (vsign != wsign) { in float_richcompare()
477 i = (double)vsign; in float_richcompare()
492 i = (double)vsign; in float_richcompare()
504 assert(vsign != 0); /* if vsign were 0, then since wsign is in float_richcompare()
508 if (vsign < 0) { in float_richcompare()