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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
complexobject.c 465 long hashreal, hashimag, combined; local
466 hashreal = _Py_HashDouble(v->cval.real);
467 if (hashreal == -1)
473 * so the following returns hashreal unchanged. This is
478 combined = hashreal + 1000003 * hashimag;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
complexobject.c 461 long hashreal, hashimag, combined; local
462 hashreal = _Py_HashDouble(v->cval.real);
463 if (hashreal == -1)
469 * so the following returns hashreal unchanged. This is
474 combined = hashreal + 1000003 * hashimag;
    [all...]
  /external/python/cpython2/Objects/
complexobject.c 465 long hashreal, hashimag, combined; local
466 hashreal = _Py_HashDouble(v->cval.real);
467 if (hashreal == -1)
473 * so the following returns hashreal unchanged. This is
478 combined = hashreal + 1000003 * hashimag;
    [all...]
  /external/python/cpython3/Objects/
complexobject.c 390 Py_uhash_t hashreal, hashimag, combined; local
391 hashreal = (Py_uhash_t)_Py_HashDouble(v->cval.real);
392 if (hashreal == (Py_uhash_t)-1)
398 * so the following returns hashreal unchanged. This is
403 combined = hashreal + _PyHASH_IMAG * hashimag;

Completed in 188 milliseconds