Home
last modified time | relevance | path

Searched refs:method_cache_collisions (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dtypeobject.c52 static size_t method_cache_collisions = 0; variable
203 size_t total = method_cache_hits + method_cache_collisions + method_cache_misses; in PyType_ClearCache()
209 method_cache_collisions, (int) (100.0 * method_cache_collisions / total)); in PyType_ClearCache()
3121 method_cache_collisions++; in _PyType_Lookup()
/external/python/cpython2/Objects/
Dtypeobject.c42 static size_t method_cache_collisions = 0; variable
52 size_t total = method_cache_hits + method_cache_collisions + method_cache_misses; in PyType_ClearCache()
58 method_cache_collisions, (int) (100.0 * method_cache_collisions / total)); in PyType_ClearCache()
2596 method_cache_collisions++; in _PyType_Lookup()