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

  /external/python/cpython2/Objects/
typeobject.c 40 static size_t method_cache_hits = 0; variable
52 size_t total = method_cache_hits + method_cache_collisions + method_cache_misses;
54 method_cache_hits, (int) (100.0 * method_cache_hits / total));
    [all...]
  /external/python/cpython3/Objects/
typeobject.c 50 static size_t method_cache_hits = 0; variable
203 size_t total = method_cache_hits + method_cache_collisions + method_cache_misses;
205 method_cache_hits, (int) (100.0 * method_cache_hits / total));
    [all...]

Completed in 81 milliseconds