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

  /external/python/cpython2/Objects/
typeobject.c 34 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP]; variable in typeref:struct:method_cache_entry
60 sizeof(method_cache) / 1024);
64 method_cache[i].version = 0;
65 Py_CLEAR(method_cache[i].name);
66 method_cache[i].value = NULL;
189 method_cache[i].value = NULL;
191 Py_XSETREF(method_cache[i].name, Py_None);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 33 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP]; variable in typeref:struct:method_cache_entry
43 method_cache[i].version = 0;
44 Py_CLEAR(method_cache[i].name);
45 method_cache[i].value = NULL;
168 method_cache[i].value = NULL;
169 Py_XDECREF(method_cache[i].name);
170 method_cache[i].name = Py_None;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 33 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP]; variable in typeref:struct:method_cache_entry
43 method_cache[i].version = 0;
44 Py_CLEAR(method_cache[i].name);
45 method_cache[i].value = NULL;
168 method_cache[i].value = NULL;
169 Py_XDECREF(method_cache[i].name);
170 method_cache[i].name = Py_None;
    [all...]

Completed in 400 milliseconds