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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 16 #define MCACHE_SIZE_EXP 10
19 >> (8*sizeof(unsigned int) - MCACHE_SIZE_EXP))
33 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP];
42 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
167 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 16 #define MCACHE_SIZE_EXP 10
19 >> (8*sizeof(unsigned int) - MCACHE_SIZE_EXP))
33 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP];
42 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
167 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 16 #define MCACHE_SIZE_EXP 12
19 & ((1 << MCACHE_SIZE_EXP) - 1))
34 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP];
63 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
188 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
    [all...]
  /external/python/cpython3/Objects/
typeobject.c 17 #define MCACHE_SIZE_EXP 12
20 & ((1 << MCACHE_SIZE_EXP) - 1))
36 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP];
191 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
318 for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
    [all...]

Completed in 773 milliseconds