Home | History | Annotate | Download | only in Objects

Lines Matching refs:pool_header

280 struct pool_header {
284 struct pool_header *nextpool; /* next pool of this size class */
285 struct pool_header *prevpool; /* previous pool "" */
292 typedef struct pool_header *poolp;
315 struct pool_header* freepools;
337 #define POOL_OVERHEAD ROUNDUP(sizeof(struct pool_header))
378 same size class via the pool_header's nextpool and prevpool members.
417 blocks. The offset from the pool_header to the start of "the next" virgin
418 block is stored in the pool_header nextoffset member, and the largest value
426 poolp entry, the nextpool and prevpool members of a pool_header. The
433 compensating for that a pool_header's nextpool and prevpool members
434 immediately follow a pool_header's first two members:
447 (which only *needs* the two interpool pointer members of a pool_header). OTOH,
450 on that C doesn't insert any padding anywhere in a pool_header at or before