HomeSort by relevance Sort by last modified time
    Searched refs:imag_negzero (Results 1 - 4 of 4) sorted by null

  /external/python/cpython2/Objects/
codeobject.c 450 int real_negzero, imag_negzero; local
457 imag_negzero = z.imag == 0.0 && copysign(1.0, z.imag) < 0.0;
460 if (real_negzero && imag_negzero) {
463 else if (imag_negzero) {
  /external/python/cpython3/Objects/
codeobject.c 503 int real_negzero, imag_negzero; local
510 imag_negzero = z.imag == 0.0 && copysign(1.0, z.imag) < 0.0;
513 if (real_negzero && imag_negzero) {
516 else if (imag_negzero) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 964 int real_negzero, imag_negzero; local
971 imag_negzero = z.imag == 0.0 && copysign(1.0, z.imag) < 0.0;
972 if (real_negzero && imag_negzero) {
976 else if (imag_negzero) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c 941 int real_negzero, imag_negzero; local
948 imag_negzero = z.imag == 0.0 && copysign(1.0, z.imag) < 0.0;
949 if (real_negzero && imag_negzero) {
953 else if (imag_negzero) {
    [all...]

Completed in 815 milliseconds