Home
last modified time | relevance | path

Searched refs:tp_hash (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dobject.c1101 if (tp->tp_hash != NULL) in PyObject_Hash()
1102 return (*tp->tp_hash)(v); in PyObject_Hash()
1111 if (tp->tp_hash != NULL) in PyObject_Hash()
1112 return (*tp->tp_hash)(v); in PyObject_Hash()
Dtypeobject.c3870 type->tp_hash == NULL)
3874 type->tp_hash = base->tp_hash;
3877 if (base->tp_hash &&
3878 (base->tp_hash != PyObject_HashNotImplemented) &&
5362 h = PyLong_Type.tp_hash(res);
5974 TPSLOT("__hash__", tp_hash, slot_tp_hash, wrap_hashfunc,
6166 ptr == (void**)&type->tp_hash) {
Dclassobject.c991 outcome = res->ob_type->tp_hash(res); in instance_hash()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dobject.c1108 if (tp->tp_hash != NULL) in PyObject_Hash()
1109 return (*tp->tp_hash)(v); in PyObject_Hash()
1118 if (tp->tp_hash != NULL) in PyObject_Hash()
1119 return (*tp->tp_hash)(v); in PyObject_Hash()
Dtypeobject.c3905 type->tp_hash == NULL)
3909 type->tp_hash = base->tp_hash;
3912 if (base->tp_hash &&
3913 (base->tp_hash != PyObject_HashNotImplemented) &&
5414 h = PyLong_Type.tp_hash(res);
5888 TPSLOT("__hash__", tp_hash, slot_tp_hash, wrap_hashfunc,
6217 ptr == (void**)&type->tp_hash) {
Dclassobject.c1015 outcome = res->ob_type->tp_hash(res); in instance_hash()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dobject.h346 hashfunc tp_hash; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dobject.h346 hashfunc tp_hash; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_testcapimodule.c272 if (type->tp_hash != PyType_Type.tp_hash) { in test_lazy_hash_inheritance()