Home
last modified time | relevance | path

Searched refs:POOL_SIZE (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Objects/
Dobmalloc.c227 #define POOL_SIZE SYSTEM_PAGE_SIZE /* must be 2^N */ macro
345 #define NUMBLOCKS(I) ((uint)(POOL_SIZE - POOL_OVERHEAD) / INDEX2SIZE(I))
643 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE; in new_arena()
644 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE); in new_arena()
648 arenaobj->pool_address += POOL_SIZE - excess; in new_arena()
913 ARENA_SIZE - POOL_SIZE); in PyObject_Malloc()
942 pool->maxnextoffset = POOL_SIZE - size; in PyObject_Malloc()
954 ARENA_SIZE - POOL_SIZE); in PyObject_Malloc()
958 usable_arenas->pool_address += POOL_SIZE; in PyObject_Malloc()
1845 arena_alignment += POOL_SIZE; in _PyObject_DebugMallocStats()
[all …]
/external/python/cpython3/Objects/
Dobmalloc.c860 #define POOL_SIZE SYSTEM_PAGE_SIZE /* must be 2^N */ macro
957 #define POOL_ADDR(P) ((poolp)_Py_ALIGN_DOWN((P), POOL_SIZE))
960 #define NUMBLOCKS(I) ((uint)(POOL_SIZE - POOL_OVERHEAD) / INDEX2SIZE(I))
1259 arenaobj->nfreepools = ARENA_SIZE / POOL_SIZE; in new_arena()
1260 assert(POOL_SIZE * arenaobj->nfreepools == ARENA_SIZE); in new_arena()
1264 arenaobj->pool_address += POOL_SIZE - excess; in new_arena()
1496 ARENA_SIZE - POOL_SIZE); in pymalloc_alloc()
1526 pool->maxnextoffset = POOL_SIZE - size; in pymalloc_alloc()
1537 ARENA_SIZE - POOL_SIZE); in pymalloc_alloc()
1541 usable_arenas->pool_address += POOL_SIZE; in pymalloc_alloc()
[all …]
/external/clang/lib/Sema/
DIdentifierResolver.cpp32 static const unsigned int POOL_SIZE = 512; member in IdentifierResolver::IdDeclInfoMap
41 IdDeclInfo Pool[POOL_SIZE];
48 IdDeclInfoMap() : CurPool(nullptr), CurIndex(POOL_SIZE) {} in IdDeclInfoMap()
399 if (CurIndex == POOL_SIZE) { in operator []()
/external/autotest/site_utils/
Ddeploy_server.py17 POOL_SIZE = 124 variable
128 pool = ThreadPool(POOL_SIZE)
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/beta/
D_beta_features_test.py162 thread_pool_size=test_constants.POOL_SIZE)
180 thread_pool_size=test_constants.POOL_SIZE)
293 thread_pool_size=test_constants.POOL_SIZE)
303 thread_pool_size=test_constants.POOL_SIZE)
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/framework/common/
Dtest_constants.py45 POOL_SIZE = 10 variable