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

  /external/python/cpython2/Objects/
typeobject.c 41 static size_t method_cache_misses = 0; variable
52 size_t total = method_cache_hits + method_cache_collisions + method_cache_misses;
56 method_cache_misses, (int) (100.0 * method_cache_misses / total));
    [all...]
  /external/python/cpython3/Objects/
typeobject.c 43 static size_t method_cache_misses = 0; variable
180 size_t total = method_cache_hits + method_cache_collisions + method_cache_misses;
184 method_cache_misses, (int) (100.0 * method_cache_misses / total));
    [all...]

Completed in 63 milliseconds