Lines Matching defs:uint
15 #undef uint
16 #define uint unsigned int /* assuming >= 16 bits */
886 /* Return the number of bytes in size class I, as a uint. */
887 #define INDEX2SIZE(I) (((uint)(I) + 1) << ALIGNMENT_SHIFT)
1003 uint count; } ref; /* number of allocated blocks */
1007 uint arenaindex; /* index into arenas of base adr */
1008 uint szidx; /* block size class index */
1009 uint nextoffset; /* bytes to virgin block */
1010 uint maxnextoffset; /* largest valid nextoffset */
1030 uint nfreepools;
1033 uint ntotalpools;
1063 /* Return total number of blocks in pool of size index I, as a uint. */
1064 #define NUMBLOCKS(I) ((uint)(POOL_SIZE - POOL_OVERHEAD) / INDEX2SIZE(I))
1147 uint count; } ref;
1245 static uint maxarenas = 0;
1281 for (uint i = 0; i < maxarenas; ++i) {
1582 uint excess; /* number of bytes above pool alignment */
1595 uint i;
1596 uint numarenas;
1670 excess = (uint)(arenaobj->address & POOL_SIZE_MASK);
1777 uint arenaindex = *((volatile uint *)&pool->arenaindex);
1790 pymalloc_pool_extend(poolp pool, uint size)
1812 allocate_from_new_pool(uint size)
1887 pool->arenaindex = (uint)(usable_arenas - arenas);
1966 uint size = (uint)(nbytes - 1) >> ALIGNMENT_SHIFT;
2036 uint size = pool->szidx;
2061 uint nf = ao->nfreepools;
2964 uint i;
2965 const uint numclasses = SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIFT;
2975 uint numfreepools = 0;
3022 const uint sz = p->szidx;
3023 uint freeblocks;
3053 uint size = INDEX2SIZE(i);