HomeSort by relevance Sort by last modified time
    Searched refs:Py_hash_t (Results 1 - 25 of 45) sorted by null

1 2

  /external/python/cpython3/Include/
pyhash.h 10 PyAPI_FUNC(Py_hash_t) _Py_HashDouble(double);
11 PyAPI_FUNC(Py_hash_t) _Py_HashPointer(void*);
12 PyAPI_FUNC(Py_hash_t) _Py_HashBytes(const void*, Py_ssize_t);
38 * pppppppp ssssssss ........ fnv -- two Py_hash_t
40 * ........ ........ ssssssss djbx33a -- 16 bytes padding + one Py_hash_t
45 * ppppssss ........ ........ fnv -- two Py_hash_t
47 * ........ ........ ssss.... djbx33a -- 16 bytes padding + one Py_hash_t
57 /* two Py_hash_t for FNV */
59 Py_hash_t prefix;
60 Py_hash_t suffix
    [all...]
setobject.h 28 Py_hash_t hash; /* Cached hash code of the key */
60 Py_hash_t hash; /* Only used by frozenset objects */
71 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash);
dictobject.h 73 Py_hash_t hash);
85 PyObject *item, Py_hash_t hash);
90 Py_hash_t hash);
101 PyObject *mp, Py_ssize_t *pos, PyObject **key, PyObject **value, Py_hash_t *hash);
111 PyAPI_FUNC(int) _PyDict_Contains(PyObject *mp, PyObject *key, Py_hash_t hash);
118 PyObject *_PyDict_Pop_KnownHash(PyObject *, PyObject *, Py_hash_t, PyObject *);
memoryobject.h 60 Py_hash_t hash; /* hash value for read-only views */
weakrefobject.h 31 Py_hash_t hash;
bytesobject.h 33 Py_hash_t ob_shash;
datetime.h 37 Py_hash_t hashcode; /* -1 when unknown */
54 Py_hash_t hashcode; \
object.h 333 typedef Py_hash_t (*hashfunc)(PyObject *);
553 PyAPI_FUNC(Py_hash_t) PyObject_Hash(PyObject *);
554 PyAPI_FUNC(Py_hash_t) PyObject_HashNotImplemented(PyObject *);
    [all...]
pyport.h 91 /* Py_hash_t is the same size as a pointer. */
93 typedef Py_ssize_t Py_hash_t;
  /external/python/cpython3/Objects/
dict-common.h 6 Py_hash_t me_hash;
15 (PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject ***value_addr,
odictobject.c 504 Py_hash_t hash;
536 _odict_get_index_raw(PyODictObject *od, PyObject *key, Py_hash_t hash)
589 _odict_get_index(PyODictObject *od, PyObject *key, Py_hash_t hash)
609 _odict_find_node_hash(PyODictObject *od, PyObject *key, Py_hash_t hash)
625 Py_hash_t hash;
666 _odict_add_new_node(PyODictObject *od, PyObject *key, Py_hash_t hash)
744 Py_hash_t hash)
    [all...]
dictobject.c 225 Py_hash_t hash, PyObject ***value_addr,
228 Py_hash_t hash, PyObject ***value_addr,
232 Py_hash_t hash, PyObject ***value_addr,
235 Py_hash_t hash, PyObject ***value_addr,
476 Py_hash_t hash = ((PyASCIIObject *)key)->hash;
631 lookdict_index(PyDictKeysObject *k, Py_hash_t hash, Py_ssize_t index)
688 Py_hash_t hash, PyObject ***value_addr, Py_ssize_t *hashpos)
803 Py_hash_t hash, PyObject ***value_addr, Py_ssize_t *hashpos)
878 Py_hash_t hash, PyObject ***value_addr,
946 Py_hash_t hash, PyObject ***value_addr, Py_ssize_t *hashpos
    [all...]
setobject.c 48 set_lookkey(PySetObject *so, PyObject *key, Py_hash_t hash)
129 set_add_entry(PySetObject *so, PyObject *key, Py_hash_t hash)
260 set_insert_clean(setentry *table, size_t mask, PyObject *key, Py_hash_t hash)
383 set_contains_entry(PySetObject *so, PyObject *key, Py_hash_t hash)
397 set_discard_entry(PySetObject *so, PyObject *key, Py_hash_t hash)
418 Py_hash_t hash;
432 Py_hash_t hash;
446 Py_hash_t hash;
758 static Py_hash_t
983 Py_hash_t hash
    [all...]
classobject.c 277 static Py_hash_t
280 Py_hash_t x, y;
methodobject.c 468 static Py_hash_t
471 Py_hash_t x, y;
codeobject.c 554 Py_hash_t hash;
673 static Py_hash_t
676 Py_hash_t h, h0, h1, h2, h3, h4, h5, h6;
tupleobject.c 347 static Py_hash_t
351 Py_hash_t y;
363 mult += (Py_hash_t)(82520UL + len + len);
complexobject.c 387 static Py_hash_t
406 return (Py_hash_t)combined;
rangeobject.c 505 static Py_hash_t
509 Py_hash_t result = -1;
    [all...]
weakrefobject.c 143 static Py_hash_t
  /external/python/cpython3/Python/
pyhash.c 85 Py_hash_t
128 return (Py_hash_t)x;
131 Py_hash_t
134 Py_hash_t x;
139 x = (Py_hash_t)y;
145 Py_hash_t
148 Py_hash_t x;
182 x = (Py_hash_t)hash;
241 static Py_hash_t
367 static Py_hash_t
    [all...]
  /external/python/cpython3/Modules/_sqlite/
row.c 189 static Py_hash_t pysqlite_row_hash(pysqlite_Row *self)
  /external/python/cpython3/Modules/
_functoolsmodule.c 632 Py_hash_t hash;
781 Py_hash_t hash;
838 Py_hash_t hash;
    [all...]
_randommodule.c 265 Py_hash_t hash = PyObject_Hash(arg);
  /external/tensorflow/tensorflow/python/lib/core/
bfloat16.cc 71 typedef Py_hash_t HashType;

Completed in 345 milliseconds

1 2