Home
last modified time | relevance | path

Searched refs:_Py_hashtable_get (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Modules/
D_testinternalcapi.c185 assert(_Py_hashtable_get(table, TO_PTR('x')) == NULL); in test_hashtable()
209 void *value_ptr = _Py_hashtable_get(table, TO_PTR(key)); in test_hashtable()
230 assert(_Py_hashtable_get(table, TO_PTR('x')) == NULL); in test_hashtable()
D_tracemalloc.c492 return _Py_hashtable_get(tracemalloc_domains, TO_PTR(domain)); in tracemalloc_get_traces_table()
544 trace_t *trace = _Py_hashtable_get(traces, TO_PTR(ptr)); in tracemalloc_add_trace()
1107 frames = _Py_hashtable_get(intern_table, (const void *)traceback); in traceback_to_pyobject()
1426 trace = _Py_hashtable_get(traces, TO_PTR(ptr)); in tracemalloc_get_traceback()
1795 trace_t *trace = _Py_hashtable_get(tracemalloc_traces, TO_PTR(ptr)); in _PyTraceMalloc_NewReference()
D_hashopenssl.c324 py_hashentry_t *entry = (py_hashentry_t *)_Py_hashtable_get( in py_digest_by_name()
/third_party/python/Include/internal/
Dpycore_hashtable.h132 PyAPI_FUNC(void*) _Py_hashtable_get(_Py_hashtable_t *ht, const void *key);
/third_party/python/Python/
Dhashtable.c248 _Py_hashtable_get(_Py_hashtable_t *ht, const void *key) in _Py_hashtable_get() function